Opensource Python library for statistics, data-analysis and data science with own interpreter.
Use the package manager pip to install foobar.
pip install pystatix
Here is an example of pystatix usage Script to count median of array.
import pystatix
dataset = [6,7,5,3,1,2] #Here we creating dataset and it is unordered
print(median(dataset)) #here we giving command to print the median of our dataset.
Median is default function in pystatix library which is used to find median in any array and dataset. In case if it is unordered, pystatix will automatically put in order and return result.