How to Do Descriptives Statistics in Python Using Numpy

This post was originally published hereIn this short post we are going to revisit the topic on how to carry out summary/descriptive statistics in Python. In the previous post, I used Pandas (but also SciPy and Numpy, see Descriptive Statistics Using Pytho… Read more

Similar

Pint: Makes Units Easy -Python

Pint is a Python package to define, operate and manipulate physical quantities: the product of a numerical value and a unit of measurement. It allows arithmetic operations between them and conversions from and to different units. (more…)

Read more »

How to Use Python Map()

This post introduces the reader to Python maps, implemented by the built-in map() function of Python.Map is a powerful function that not only gives us new ways to transform data, but also aids us in... (more…)

Read more »