pycodamath 1.1.3__tar.gz → 1.1.4__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.
- {pycodamath-1.1.3/src/pycodamath.egg-info → pycodamath-1.1.4}/PKG-INFO +1 -1
- {pycodamath-1.1.3 → pycodamath-1.1.4}/pyproject.toml +1 -1
- {pycodamath-1.1.3 → pycodamath-1.1.4}/src/pycodamath/pca.py +1 -1
- {pycodamath-1.1.3 → pycodamath-1.1.4/src/pycodamath.egg-info}/PKG-INFO +1 -1
- {pycodamath-1.1.3 → pycodamath-1.1.4}/LICENSE +0 -0
- {pycodamath-1.1.3 → pycodamath-1.1.4}/README.md +0 -0
- {pycodamath-1.1.3 → pycodamath-1.1.4}/setup.cfg +0 -0
- {pycodamath-1.1.3 → pycodamath-1.1.4}/src/pycodamath/__init__.py +0 -0
- {pycodamath-1.1.3 → pycodamath-1.1.4}/src/pycodamath/entropy.py +0 -0
- {pycodamath-1.1.3 → pycodamath-1.1.4}/src/pycodamath/extra.py +0 -0
- {pycodamath-1.1.3 → pycodamath-1.1.4}/src/pycodamath/plot.py +0 -0
- {pycodamath-1.1.3 → pycodamath-1.1.4}/src/pycodamath/pycoda.py +0 -0
- {pycodamath-1.1.3 → pycodamath-1.1.4}/src/pycodamath.egg-info/SOURCES.txt +0 -0
- {pycodamath-1.1.3 → pycodamath-1.1.4}/src/pycodamath.egg-info/dependency_links.txt +0 -0
- {pycodamath-1.1.3 → pycodamath-1.1.4}/src/pycodamath.egg-info/requires.txt +0 -0
- {pycodamath-1.1.3 → pycodamath-1.1.4}/src/pycodamath.egg-info/top_level.txt +0 -0
|
@@ -333,7 +333,7 @@ class Biplot:
|
|
|
333
333
|
self.geomobj = {}
|
|
334
334
|
for item in set(group):
|
|
335
335
|
idx = group.loc[group == item].index
|
|
336
|
-
if len(idx)
|
|
336
|
+
if len(idx) >= 3:
|
|
337
337
|
# My secret hull construction algorithm
|
|
338
338
|
idxmin = self.scores.loc["pc1", idx].idxmin()
|
|
339
339
|
j = self.scores[idx].columns.get_loc(idxmin)
|
|
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
|