AutoStatLib 0.2.23__tar.gz → 0.2.25__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.2.23/src/AutoStatLib.egg-info → autostatlib-0.2.25}/PKG-INFO +1 -1
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib/StatPlots.py +1 -1
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib/_version.py +1 -1
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib/helpers.py +1 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25/src/AutoStatLib.egg-info}/PKG-INFO +1 -1
- {autostatlib-0.2.23 → autostatlib-0.2.25}/LICENSE +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/MANIFEST.in +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/README.md +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/pyproject.toml +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/requirements.txt +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/setup.cfg +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib/AutoStatLib.py +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib/__init__.py +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib/__main__.py +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib/normality_tests.py +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib/statistical_tests.py +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib/text_formatting.py +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib.egg-info/SOURCES.txt +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib.egg-info/dependency_links.txt +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib.egg-info/requires.txt +0 -0
- {autostatlib-0.2.23 → autostatlib-0.2.25}/src/AutoStatLib.egg-info/top_level.txt +0 -0
|
@@ -113,7 +113,7 @@ class BaseStatPlot(Helpers):
|
|
|
113
113
|
figure_w=0, # 0 means auto
|
|
114
114
|
**kwargs):
|
|
115
115
|
self.data_groups = [group if group else None
|
|
116
|
-
for group in data_groups] if any(
|
|
116
|
+
for group in data_groups] if any(data_groups) else [[0],[0]] # bad construction; write an assertion later
|
|
117
117
|
self.n_groups = len(self.data_groups)
|
|
118
118
|
self.p = p_value_exact
|
|
119
119
|
self.testname = Test_Name
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# AutoStatLib package version:
|
|
2
|
-
__version__ = "0.2.
|
|
2
|
+
__version__ = "0.2.25"
|
|
@@ -67,6 +67,7 @@ class Helpers():
|
|
|
67
67
|
'Stars': self.stars_int,
|
|
68
68
|
# 'Stat_Value': self.test_stat.item(),
|
|
69
69
|
'Warnings': self.warnings,
|
|
70
|
+
'Successfull_Test': True if self.p_value else False,
|
|
70
71
|
'Groups_Name': self.groups_name,
|
|
71
72
|
'Groups_N': [len(self.data[i]) for i in range(len(self.data))],
|
|
72
73
|
'Groups_Median': [np.median(self.data[i]).item() for i in range(len(self.data))],
|
|
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
|