AutoStatLib 0.1.7__tar.gz → 0.1.8__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.

Potentially problematic release.


This version of AutoStatLib might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: AutoStatLib
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: AutoStatLib - a simple statistical analysis tool
5
5
  Author: Stemonitis, SciWare LLC
6
6
  Author-email: konung-yaropolk <yaropolk1995@gmail.com>
@@ -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) > 2 for group in self.data), 'Each group must contain at least three values'
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(
@@ -1,2 +1,2 @@
1
1
  # AutoStatLib package version:
2
- __version__ = "0.1.7"
2
+ __version__ = "0.1.8"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: AutoStatLib
3
- Version: 0.1.7
3
+ Version: 0.1.8
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