Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/turkunov/pem-test
Goodness-Of-Fit test for normality based on elimination of parameters
https://github.com/turkunov/pem-test
normality-test python statistics
Last synced: 1 day ago
JSON representation
Goodness-Of-Fit test for normality based on elimination of parameters
- Host: GitHub
- URL: https://github.com/turkunov/pem-test
- Owner: turkunov
- License: mit
- Created: 2022-05-21T10:36:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-29T08:56:11.000Z (over 2 years ago)
- Last Synced: 2025-01-02T21:47:49.645Z (7 days ago)
- Topics: normality-test, python, statistics
- Language: Jupyter Notebook
- Homepage:
- Size: 34.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PEM test library
### Installation
```py
pip install pemtest
```### What is PEM test?
> When performing data analysis, sometimes people come across a problem of checking null hypothesis for normality without knowing parameters of the distribution.
In this case we should use tests like "Parameters Elimination Method". PEM test allows us to get rid of `mu` and `sigma` and move from performing a test for normality to
performing a test for uniform distribution with parameters 0, 1.### Looks hard. Will there be any further explanation?
> Yes. You can read full documentation on the algorithm based on PEM test **[here](https://github.com/turkunov/pem-test/blob/main/algorithm_documentation.ipynb)**.### Are there any examples?
> Yes, here's an interactive notebook with examples: https://colab.research.google.com/drive/15SR2hJpejqQ8G-I0SXk-WZMZUpsbUdAC?usp=sharing### Who is the author of this algorithm?
> [turkunov @ Github](https://github.com/turkunov) (me). The algorithm is based on the research done by Sarkadi K. in "On testing for normality" (1960) [p. 269-275].