AutoStatLib 0.1.7__py3-none-any.whl → 0.1.8__py3-none-any.whl
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.
Potentially problematic release.
This version of AutoStatLib might be problematic. Click here for more details.
- AutoStatLib/AutoStatLib.py +1 -1
- AutoStatLib/_version.py +1 -1
- {AutoStatLib-0.1.7.dist-info → AutoStatLib-0.1.8.dist-info}/METADATA +1 -1
- AutoStatLib-0.1.8.dist-info/RECORD +9 -0
- AutoStatLib-0.1.7.dist-info/RECORD +0 -9
- {AutoStatLib-0.1.7.dist-info → AutoStatLib-0.1.8.dist-info}/LICENSE +0 -0
- {AutoStatLib-0.1.7.dist-info → AutoStatLib-0.1.8.dist-info}/WHEEL +0 -0
- {AutoStatLib-0.1.7.dist-info → AutoStatLib-0.1.8.dist-info}/top_level.txt +0 -0
AutoStatLib/AutoStatLib.py
CHANGED
|
@@ -425,7 +425,7 @@ class StatisticalAnalysis(__StatisticalTests, __NormalityTests, __TextFormatting
|
|
|
425
425
|
and (test == 't_test_single_sample'
|
|
426
426
|
or test == 'wilcoxon_single_sample')), 'Only one group of data must be given for single-group tests'
|
|
427
427
|
assert all(len(
|
|
428
|
-
group)
|
|
428
|
+
group) >= 4 for group in self.data), 'Each group must contain at least four values'
|
|
429
429
|
assert not (self.paired == True and not all(len(lst) == len(
|
|
430
430
|
self.data[0]) for lst in self.data)), 'Paired groups must be the same length'
|
|
431
431
|
assert not (test == 'friedman' and not all(len(lst) == len(
|
AutoStatLib/_version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# AutoStatLib package version:
|
|
2
|
-
__version__ = "0.1.
|
|
2
|
+
__version__ = "0.1.8"
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
AutoStatLib/AutoStatLib.py,sha256=hti7K6d88kmtHfL_dmJNqq40SDIybP_F76gaTkRKSTo,22275
|
|
2
|
+
AutoStatLib/__init__.py,sha256=m5_lTjJGJzwPqM1D72D90dbvSOY1EWuNE8VfFRagx1s,79
|
|
3
|
+
AutoStatLib/__main__.py,sha256=LaA_aF8KkLy7zF3JyNPPGkK1nrM9hLJEtqGv27xvzmg,192
|
|
4
|
+
AutoStatLib/_version.py,sha256=DPIYeG9qTfcaBAuDvsb9PTigmM1Hw-gti12NscYog1U,53
|
|
5
|
+
AutoStatLib-0.1.8.dist-info/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
|
|
6
|
+
AutoStatLib-0.1.8.dist-info/METADATA,sha256=grZCqLWB0LhfooPHqi04U18ytyrGYXEow9Tdm5vlPuw,35547
|
|
7
|
+
AutoStatLib-0.1.8.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
8
|
+
AutoStatLib-0.1.8.dist-info/top_level.txt,sha256=BuHzVyE2andc7RwD_UPmDjLl9CUAyBH6WHZGjaIReUI,12
|
|
9
|
+
AutoStatLib-0.1.8.dist-info/RECORD,,
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
AutoStatLib/AutoStatLib.py,sha256=2yJ2lgzTHcH9GukBmq4htcE2ZZ4rB7PjsQqoGepzOfM,22275
|
|
2
|
-
AutoStatLib/__init__.py,sha256=m5_lTjJGJzwPqM1D72D90dbvSOY1EWuNE8VfFRagx1s,79
|
|
3
|
-
AutoStatLib/__main__.py,sha256=LaA_aF8KkLy7zF3JyNPPGkK1nrM9hLJEtqGv27xvzmg,192
|
|
4
|
-
AutoStatLib/_version.py,sha256=vt-T6UPFgo5_4i5AEliVI-mg9Ki4a7jH_gjNPD1BfuM,53
|
|
5
|
-
AutoStatLib-0.1.7.dist-info/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
|
|
6
|
-
AutoStatLib-0.1.7.dist-info/METADATA,sha256=RSrFPlYSu1x0iyvt45jQUksIetonXXrEnNIH5fcNxzg,35547
|
|
7
|
-
AutoStatLib-0.1.7.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
8
|
-
AutoStatLib-0.1.7.dist-info/top_level.txt,sha256=BuHzVyE2andc7RwD_UPmDjLl9CUAyBH6WHZGjaIReUI,12
|
|
9
|
-
AutoStatLib-0.1.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|