pragmastat 3.2.0__tar.gz → 3.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. {pragmastat-3.2.0/pragmastat.egg-info → pragmastat-3.2.1}/PKG-INFO +5 -5
  2. {pragmastat-3.2.0 → pragmastat-3.2.1}/README.md +4 -4
  3. pragmastat-3.2.1/pragmastat/__init__.py +21 -0
  4. {pragmastat-3.2.0 → pragmastat-3.2.1/pragmastat.egg-info}/PKG-INFO +5 -5
  5. {pragmastat-3.2.0 → pragmastat-3.2.1}/pyproject.toml +1 -1
  6. pragmastat-3.2.0/pragmastat/__init__.py +0 -13
  7. {pragmastat-3.2.0 → pragmastat-3.2.1}/LICENSE +0 -0
  8. {pragmastat-3.2.0 → pragmastat-3.2.1}/MANIFEST.in +0 -0
  9. {pragmastat-3.2.0 → pragmastat-3.2.1}/examples/demo.py +0 -0
  10. {pragmastat-3.2.0 → pragmastat-3.2.1}/pragmastat/estimators.py +0 -0
  11. {pragmastat-3.2.0 → pragmastat-3.2.1}/pragmastat/fast_center.py +0 -0
  12. {pragmastat-3.2.0 → pragmastat-3.2.1}/pragmastat/fast_shift.py +0 -0
  13. {pragmastat-3.2.0 → pragmastat-3.2.1}/pragmastat/fast_spread.py +0 -0
  14. {pragmastat-3.2.0 → pragmastat-3.2.1}/pragmastat.egg-info/SOURCES.txt +0 -0
  15. {pragmastat-3.2.0 → pragmastat-3.2.1}/pragmastat.egg-info/dependency_links.txt +0 -0
  16. {pragmastat-3.2.0 → pragmastat-3.2.1}/pragmastat.egg-info/requires.txt +0 -0
  17. {pragmastat-3.2.0 → pragmastat-3.2.1}/pragmastat.egg-info/top_level.txt +0 -0
  18. {pragmastat-3.2.0 → pragmastat-3.2.1}/setup.cfg +0 -0
  19. {pragmastat-3.2.0 → pragmastat-3.2.1}/setup.py +0 -0
  20. {pragmastat-3.2.0 → pragmastat-3.2.1}/src/fast_center_c.c +0 -0
  21. {pragmastat-3.2.0 → pragmastat-3.2.1}/src/fast_shift_c.c +0 -0
  22. {pragmastat-3.2.0 → pragmastat-3.2.1}/src/fast_spread_c.c +0 -0
  23. {pragmastat-3.2.0 → pragmastat-3.2.1}/tests/test_invariance.py +0 -0
  24. {pragmastat-3.2.0 → pragmastat-3.2.1}/tests/test_performance.py +0 -0
  25. {pragmastat-3.2.0 → pragmastat-3.2.1}/tests/test_reference.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pragmastat
3
- Version: 3.2.0
3
+ Version: 3.2.1
4
4
  Summary: Pragmastat: Pragmatic Statistical Toolkit
5
5
  Author: Andrey Akinshin
6
6
  License-Expression: MIT
@@ -18,9 +18,9 @@ Dynamic: license-file
18
18
 
19
19
  This is a Python implementation of 'Pragmastat: Pragmatic Statistical Toolkit', which presents a toolkit of statistical procedures that provide reliable results across diverse real-world distributions, with ready-to-use implementations and detailed explanations.
20
20
 
21
- - PDF manual for this version: [pragmastat-v3.2.0.pdf](https://github.com/AndreyAkinshin/pragmastat/releases/download/v3.2.0/pragmastat-v3.2.0.pdf)
22
- - Markdown manual for this version: [pragmastat-v3.2.0.md](https://github.com/AndreyAkinshin/pragmastat/releases/download/v3.2.0/pragmastat-v3.2.0.md)
23
- - Source code for this version: [pragmastat/py/v3.2.0](https://github.com/AndreyAkinshin/pragmastat/tree/v3.2.0/py)
21
+ - PDF manual for this version: [pragmastat-v3.2.1.pdf](https://github.com/AndreyAkinshin/pragmastat/releases/download/v3.2.1/pragmastat-v3.2.1.pdf)
22
+ - Markdown manual for this version: [pragmastat-v3.2.1.md](https://github.com/AndreyAkinshin/pragmastat/releases/download/v3.2.1/pragmastat-v3.2.1.md)
23
+ - Source code for this version: [pragmastat/py/v3.2.1](https://github.com/AndreyAkinshin/pragmastat/tree/v3.2.1/py)
24
24
  - Latest online manual: https://pragmastat.dev
25
25
  - Manual DOI: [10.5281/zenodo.17236778](https://doi.org/10.5281/zenodo.17236778)
26
26
 
@@ -29,7 +29,7 @@ This is a Python implementation of 'Pragmastat: Pragmatic Statistical Toolkit',
29
29
  Install from PyPI:
30
30
 
31
31
  ```bash
32
- pip install pragmastat==3.2.0
32
+ pip install pragmastat==3.2.1
33
33
  ```
34
34
 
35
35
  ## Demo
@@ -2,9 +2,9 @@
2
2
 
3
3
  This is a Python implementation of 'Pragmastat: Pragmatic Statistical Toolkit', which presents a toolkit of statistical procedures that provide reliable results across diverse real-world distributions, with ready-to-use implementations and detailed explanations.
4
4
 
5
- - PDF manual for this version: [pragmastat-v3.2.0.pdf](https://github.com/AndreyAkinshin/pragmastat/releases/download/v3.2.0/pragmastat-v3.2.0.pdf)
6
- - Markdown manual for this version: [pragmastat-v3.2.0.md](https://github.com/AndreyAkinshin/pragmastat/releases/download/v3.2.0/pragmastat-v3.2.0.md)
7
- - Source code for this version: [pragmastat/py/v3.2.0](https://github.com/AndreyAkinshin/pragmastat/tree/v3.2.0/py)
5
+ - PDF manual for this version: [pragmastat-v3.2.1.pdf](https://github.com/AndreyAkinshin/pragmastat/releases/download/v3.2.1/pragmastat-v3.2.1.pdf)
6
+ - Markdown manual for this version: [pragmastat-v3.2.1.md](https://github.com/AndreyAkinshin/pragmastat/releases/download/v3.2.1/pragmastat-v3.2.1.md)
7
+ - Source code for this version: [pragmastat/py/v3.2.1](https://github.com/AndreyAkinshin/pragmastat/tree/v3.2.1/py)
8
8
  - Latest online manual: https://pragmastat.dev
9
9
  - Manual DOI: [10.5281/zenodo.17236778](https://doi.org/10.5281/zenodo.17236778)
10
10
 
@@ -13,7 +13,7 @@ This is a Python implementation of 'Pragmastat: Pragmatic Statistical Toolkit',
13
13
  Install from PyPI:
14
14
 
15
15
  ```bash
16
- pip install pragmastat==3.2.0
16
+ pip install pragmastat==3.2.1
17
17
  ```
18
18
 
19
19
  ## Demo
@@ -0,0 +1,21 @@
1
+ from .estimators import (
2
+ center,
3
+ spread,
4
+ rel_spread,
5
+ shift,
6
+ ratio,
7
+ avg_spread,
8
+ disparity,
9
+ )
10
+
11
+ __all__ = [
12
+ "center",
13
+ "spread",
14
+ "rel_spread",
15
+ "shift",
16
+ "ratio",
17
+ "avg_spread",
18
+ "disparity",
19
+ ]
20
+
21
+ __version__ = "3.2.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pragmastat
3
- Version: 3.2.0
3
+ Version: 3.2.1
4
4
  Summary: Pragmastat: Pragmatic Statistical Toolkit
5
5
  Author: Andrey Akinshin
6
6
  License-Expression: MIT
@@ -18,9 +18,9 @@ Dynamic: license-file
18
18
 
19
19
  This is a Python implementation of 'Pragmastat: Pragmatic Statistical Toolkit', which presents a toolkit of statistical procedures that provide reliable results across diverse real-world distributions, with ready-to-use implementations and detailed explanations.
20
20
 
21
- - PDF manual for this version: [pragmastat-v3.2.0.pdf](https://github.com/AndreyAkinshin/pragmastat/releases/download/v3.2.0/pragmastat-v3.2.0.pdf)
22
- - Markdown manual for this version: [pragmastat-v3.2.0.md](https://github.com/AndreyAkinshin/pragmastat/releases/download/v3.2.0/pragmastat-v3.2.0.md)
23
- - Source code for this version: [pragmastat/py/v3.2.0](https://github.com/AndreyAkinshin/pragmastat/tree/v3.2.0/py)
21
+ - PDF manual for this version: [pragmastat-v3.2.1.pdf](https://github.com/AndreyAkinshin/pragmastat/releases/download/v3.2.1/pragmastat-v3.2.1.pdf)
22
+ - Markdown manual for this version: [pragmastat-v3.2.1.md](https://github.com/AndreyAkinshin/pragmastat/releases/download/v3.2.1/pragmastat-v3.2.1.md)
23
+ - Source code for this version: [pragmastat/py/v3.2.1](https://github.com/AndreyAkinshin/pragmastat/tree/v3.2.1/py)
24
24
  - Latest online manual: https://pragmastat.dev
25
25
  - Manual DOI: [10.5281/zenodo.17236778](https://doi.org/10.5281/zenodo.17236778)
26
26
 
@@ -29,7 +29,7 @@ This is a Python implementation of 'Pragmastat: Pragmatic Statistical Toolkit',
29
29
  Install from PyPI:
30
30
 
31
31
  ```bash
32
- pip install pragmastat==3.2.0
32
+ pip install pragmastat==3.2.1
33
33
  ```
34
34
 
35
35
  ## Demo
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pragmastat"
3
- version = "3.2.0"
3
+ version = "3.2.1"
4
4
  description = "Pragmastat: Pragmatic Statistical Toolkit"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.8"
@@ -1,13 +0,0 @@
1
- from .estimators import center, spread, rel_spread, shift, ratio, avg_spread, disparity
2
-
3
- __all__ = [
4
- "center",
5
- "spread",
6
- "rel_spread",
7
- "shift",
8
- "ratio",
9
- "avg_spread",
10
- "disparity",
11
- ]
12
-
13
- __version__ = "3.2.0"
File without changes
File without changes
File without changes
File without changes
File without changes