/C-module

C module for Python extension

Primary LanguageCMIT LicenseMIT

1. What is it?

ProbStat package is the main helper for students in Probability & Statistics. ProbStat methods allow users to deal with complicated tasks and calculations in statistics and probability theory.

2. Main features

Here are just a few of the things that ProbStat does well:

3. Where to get it?

The source code is currently hosted on GitHub, click here

4. How to use it?

import probstat

probstat.probability(1,5)
>>> 0.2

probstat.bernoulli_simple(0.7, 17, 11)
>>> 0.18

probstat.expected_value([0, 1, 2, 4], [0.2, 0.3, 0.4, 0.1])
>>> 1.5

probstat.variance([0, 1, 2, 4], [0.2, 0.3, 0.4, 0.1])
>>> 1.25

probstat.standard_deviation([0, 1, 2, 4], [0.2, 0.3, 0.4, 0.1])
>>> 1.12

5. Authors