AutoStatLib 0.4.2__tar.gz → 0.4.3__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 (24) hide show
  1. {autostatlib-0.4.2/src/AutoStatLib.egg-info → autostatlib-0.4.3}/PKG-INFO +1 -1
  2. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib/_version.py +1 -1
  3. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib/helpers.py +1 -1
  4. {autostatlib-0.4.2 → autostatlib-0.4.3/src/AutoStatLib.egg-info}/PKG-INFO +1 -1
  5. {autostatlib-0.4.2 → autostatlib-0.4.3}/LICENSE +0 -0
  6. {autostatlib-0.4.2 → autostatlib-0.4.3}/MANIFEST.in +0 -0
  7. {autostatlib-0.4.2 → autostatlib-0.4.3}/README.md +0 -0
  8. {autostatlib-0.4.2 → autostatlib-0.4.3}/pyproject.toml +0 -0
  9. {autostatlib-0.4.2 → autostatlib-0.4.3}/requirements.txt +0 -0
  10. {autostatlib-0.4.2 → autostatlib-0.4.3}/setup.cfg +0 -0
  11. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib/AutoStatLib.py +0 -0
  12. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib/StatPlots.py +0 -0
  13. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib/__init__.py +0 -0
  14. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib/__main__.py +0 -0
  15. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib/_protocol.py +0 -0
  16. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib/normality_tests.py +0 -0
  17. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib/statistical_tests.py +0 -0
  18. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib/text_formatting.py +0 -0
  19. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib.egg-info/SOURCES.txt +0 -0
  20. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib.egg-info/dependency_links.txt +0 -0
  21. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib.egg-info/requires.txt +0 -0
  22. {autostatlib-0.4.2 → autostatlib-0.4.3}/src/AutoStatLib.egg-info/top_level.txt +0 -0
  23. {autostatlib-0.4.2 → autostatlib-0.4.3}/tests/test_autostatlib.py +0 -0
  24. {autostatlib-0.4.2 → autostatlib-0.4.3}/tests/test_statplots.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AutoStatLib
3
- Version: 0.4.2
3
+ Version: 0.4.3
4
4
  Summary: AutoStatLib - a simple statistical analysis tool
5
5
  Author: Stemonitis, SciWare LLC
6
6
  Author-email: konung-yaropolk <yaropolk1995@gmail.com>
@@ -1,2 +1,2 @@
1
1
  # AutoStatLib package version:
2
- __version__ = "0.4.2"
2
+ __version__ = "0.4.3"
@@ -74,7 +74,7 @@ class Helpers(StatAnalysisProtocol):
74
74
  groups_mean = [float(a.mean()) for a in groups_arr]
75
75
  groups_median = [float(np.median(a)) for a in groups_arr]
76
76
  groups_sd = [float(a.std(ddof=1)) for a in groups_arr]
77
- groups_se = [sd / np.sqrt(n) for sd, n in zip(groups_sd, groups_n)]
77
+ groups_se = [sd / np.sqrt(n).item() for sd, n in zip(groups_sd, groups_n)]
78
78
 
79
79
  # --- Posthoc matrix representations — one pass over the matrix -----
80
80
  # Previously built as three separate nested list comprehensions;
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AutoStatLib
3
- Version: 0.4.2
3
+ Version: 0.4.3
4
4
  Summary: AutoStatLib - a simple statistical analysis tool
5
5
  Author: Stemonitis, SciWare LLC
6
6
  Author-email: konung-yaropolk <yaropolk1995@gmail.com>
File without changes
File without changes
File without changes
File without changes
File without changes