AutoStatLib 0.4.0__tar.gz → 0.4.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 (24) hide show
  1. {autostatlib-0.4.0/src/AutoStatLib.egg-info → autostatlib-0.4.1}/PKG-INFO +1 -1
  2. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/AutoStatLib.py +1 -1
  3. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/StatPlots.py +1 -0
  4. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/_version.py +1 -1
  5. {autostatlib-0.4.0 → autostatlib-0.4.1/src/AutoStatLib.egg-info}/PKG-INFO +1 -1
  6. {autostatlib-0.4.0 → autostatlib-0.4.1}/LICENSE +0 -0
  7. {autostatlib-0.4.0 → autostatlib-0.4.1}/MANIFEST.in +0 -0
  8. {autostatlib-0.4.0 → autostatlib-0.4.1}/README.md +0 -0
  9. {autostatlib-0.4.0 → autostatlib-0.4.1}/pyproject.toml +0 -0
  10. {autostatlib-0.4.0 → autostatlib-0.4.1}/requirements.txt +0 -0
  11. {autostatlib-0.4.0 → autostatlib-0.4.1}/setup.cfg +0 -0
  12. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/__init__.py +0 -0
  13. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/__main__.py +0 -0
  14. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/_protocol.py +0 -0
  15. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/helpers.py +0 -0
  16. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/normality_tests.py +0 -0
  17. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/statistical_tests.py +0 -0
  18. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/text_formatting.py +0 -0
  19. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib.egg-info/SOURCES.txt +0 -0
  20. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib.egg-info/dependency_links.txt +0 -0
  21. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib.egg-info/requires.txt +0 -0
  22. {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib.egg-info/top_level.txt +0 -0
  23. {autostatlib-0.4.0 → autostatlib-0.4.1}/tests/test_autostatlib.py +0 -0
  24. {autostatlib-0.4.0 → autostatlib-0.4.1}/tests/test_statplots.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AutoStatLib
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: AutoStatLib - a simple statistical analysis tool
5
5
  Author: Stemonitis, SciWare LLC
6
6
  Author-email: konung-yaropolk <yaropolk1995@gmail.com>
@@ -216,7 +216,7 @@ class StatisticalAnalysis(StatisticalTests, NormalityTests, TextFormatting, Help
216
216
  ), "Wrong test id choosen, ensure you called correct function"
217
217
  assert all(
218
218
  len(group) >= 4 for group in self.data
219
- ), "Each group must contain at least four values"
219
+ ), "Each group must be at least n=4 for the valid statistics, so test was skipped"
220
220
  assert not (
221
221
  test in self.test_ids_dependent
222
222
  and not all(len(lst) == len(self.data[0]) for lst in self.data)
@@ -490,6 +490,7 @@ class BaseStatPlot(Helpers):
490
490
  marker=marker,
491
491
  linewidth=linewidth * self.figure_scale_factor * size_scale,
492
492
  zorder=zorder,
493
+ warn_thresh = 1, # threshold for warning about too many points; set to 0 to always warn, or 1 to never warn
493
494
  )
494
495
 
495
496
  if self.dependent:
@@ -1,2 +1,2 @@
1
1
  # AutoStatLib package version:
2
- __version__ = "0.4.0"
2
+ __version__ = "0.4.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AutoStatLib
3
- Version: 0.4.0
3
+ Version: 0.4.1
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