Common statistical testing procedures and plotting functions used for STATS 101. The code is intentionally simple to make it easy to read for beginners.
- Free software: MIT license
- Documentation: https://ministats.readthedocs.io
This library contains helper functions for statistical analysis procedures implemented "from scratch." Many of these procedures can be performed more quickly by simply calling an appropriate function defined in one of the existing libraries for statistical analysis, but we deliberately show the step by step procedures, so you'll know what's going on under the hood.
- Simple, concise code.
- Uses standard prob. libraries
scipy.stats
. - Tested against other statistical software.
- import plot helpers from https://github.com/minireference/noBSstatsnotebooks/ repo
- import stats helpers from https://github.com/minireference/noBSstatsnotebooks/ repo
- add GitHub actions CI
- add some tests
- Move
plots.py
intoplots/__init__.py
: - Distribute functions
plots/__init__.py
into submodules:-
plots/probability.py
: functions for visualizing probability distributions -
plots/regression.py
: linear model visualization functions -
plots/figures.py
: special code used for figures in the book (not included in the main namespace) - remove
plots/figures
plotting functions fromministats
namespace
-
- add more tests
- one-sample equivalence test
- two-sample equivalence test