Metadata-Version: 2.1
Name: ministats
Version: 0.3.14
Summary: Common statistical testing procedures used for STATS 101 topics. The code is intentionally simple to make it easy to forllow for beginners.
Home-page: https://github.com/minireference/ministats
Author: Ivan Savov
Author-email: ivan@minireference.com
License: MIT license
Keywords: ministats
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: matplotlib>=3.7
Requires-Dist: numpy>=1.24
Requires-Dist: scipy>=1.6
Requires-Dist: pandas>=2
Requires-Dist: seaborn>=0.13.2
Requires-Dist: statsmodels>=0.14.1
Requires-Dist: bambi
Requires-Dist: arviz

# Ministats

[![image](https://img.shields.io/pypi/v/ministats.svg)](https://pypi.python.org/pypi/ministats)
[![Documentation Status](https://readthedocs.org/projects/ministats/badge/?version=latest)](https://ministats.readthedocs.io/en/latest/?version=latest)

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


## About

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.



## Features

- Simple, concise code.
- Uses standard prob. libraries `scipy.stats`.
- Tested against other statistical software.



## Roadmap

- [x] import plot helpers from https://github.com/minireference/noBSstatsnotebooks/ repo 
- [x] import stats helpers from https://github.com/minireference/noBSstatsnotebooks/ repo
- [x] add GitHub actions CI
- [x] add some tests
- [x] Move `plots.py` into `plots/__init__.py`:
- [ ] Distribute functions `plots/__init__.py` into submodules:
   - [x] `plots/probability.py`: functions for visualizing probability distributions
   - [x] `plots/regression.py`: linear model visualization functions
   - [x] `plots/figures.py`: special code used for figures in the book (not included in the main namespace)
   - [ ] remove `plots/figures` plotting functions from `ministats` namespace
- [ ] add more tests
  - [ ] one-sample equivalence test
  - [ ] two-sample equivalence test


# History

## 0.2.0 (20243-03-28)

- Imported plotting functions from `plot_helpers.py` (in main namespace for now)

## 0.1.0 (2023-06-29)

- First release on PyPI.
