AutoStatLib 0.2.8__tar.gz → 0.2.10__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.
- {autostatlib-0.2.8/src/AutoStatLib.egg-info → autostatlib-0.2.10}/PKG-INFO +1 -1
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib/StatPlots.py +5 -1
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib/_version.py +1 -1
- {autostatlib-0.2.8 → autostatlib-0.2.10/src/AutoStatLib.egg-info}/PKG-INFO +1 -1
- {autostatlib-0.2.8 → autostatlib-0.2.10}/LICENSE +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/MANIFEST.in +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/README.md +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/pyproject.toml +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/requirements.txt +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/setup.cfg +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib/AutoStatLib.py +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib/__init__.py +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib/__main__.py +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib/helpers.py +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib/normality_tests.py +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib/statistical_tests.py +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib/text_formatting.py +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib.egg-info/SOURCES.txt +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib.egg-info/dependency_links.txt +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib.egg-info/requires.txt +0 -0
- {autostatlib-0.2.8 → autostatlib-0.2.10}/src/AutoStatLib.egg-info/top_level.txt +0 -0
|
@@ -85,7 +85,8 @@ class BaseStatPlot(Helpers):
|
|
|
85
85
|
posthoc_matrix=[],
|
|
86
86
|
colormap=None,
|
|
87
87
|
**kwargs):
|
|
88
|
-
self.data_groups =
|
|
88
|
+
self.data_groups = [group if group else [0, 0, 0, 0]
|
|
89
|
+
for group in data_groups]
|
|
89
90
|
self.n_groups = len(self.data_groups)
|
|
90
91
|
self.p = p
|
|
91
92
|
self.testname = testname
|
|
@@ -533,6 +534,9 @@ class BaseStatPlot(Helpers):
|
|
|
533
534
|
def save(self, path):
|
|
534
535
|
plt.savefig(path)
|
|
535
536
|
|
|
537
|
+
def close(self):
|
|
538
|
+
plt.close()
|
|
539
|
+
|
|
536
540
|
def plot(self):
|
|
537
541
|
# Abstract method—each subclass must implement its own plot method
|
|
538
542
|
raise NotImplementedError(
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# AutoStatLib package version:
|
|
2
|
-
__version__ = "0.2.
|
|
2
|
+
__version__ = "0.2.10"
|
|
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
|