Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 979 Bytes

README.md

File metadata and controls

33 lines (20 loc) · 979 Bytes

PyStatix

Opensource Python library for statistics, data-analysis and data science with own interpreter.

pystatlogo

image

Installation

Use the package manager pip to install foobar.

pip install pystatix

Usage

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.

License

MIT