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.
- {autostatlib-0.4.0/src/AutoStatLib.egg-info → autostatlib-0.4.1}/PKG-INFO +1 -1
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/AutoStatLib.py +1 -1
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/StatPlots.py +1 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/_version.py +1 -1
- {autostatlib-0.4.0 → autostatlib-0.4.1/src/AutoStatLib.egg-info}/PKG-INFO +1 -1
- {autostatlib-0.4.0 → autostatlib-0.4.1}/LICENSE +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/MANIFEST.in +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/README.md +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/pyproject.toml +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/requirements.txt +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/setup.cfg +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/__init__.py +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/__main__.py +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/_protocol.py +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/helpers.py +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/normality_tests.py +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/statistical_tests.py +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib/text_formatting.py +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib.egg-info/SOURCES.txt +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib.egg-info/dependency_links.txt +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib.egg-info/requires.txt +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/src/AutoStatLib.egg-info/top_level.txt +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/tests/test_autostatlib.py +0 -0
- {autostatlib-0.4.0 → autostatlib-0.4.1}/tests/test_statplots.py +0 -0
|
@@ -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
|
|
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.
|
|
2
|
+
__version__ = "0.4.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|