MCPcopy Create free account

hub / github.com/MaxHalford/prince / types & classes

Types & classes30 in github.com/MaxHalford/prince

↓ 2 callersClassSO3
The SO(3) manifold of 3D rotations. Uses unit quaternions as the representation. Internally converts to/from scipy Rotation objects for Log/E
prince/manifolds.py:76
↓ 1 callersClassSVD
prince/svd.py:19
ClassCA
prince/ca.py:38
ClassEigenvaluesMixin
prince/utils.py:48
ClassFAMD
prince/famd.py:14
ClassGPA
Generalized Procrustes Analysis (GPA). Algorithm outline: 1. Choose a reference shape. 2. Apply Procrustes Analysis to superimpose all s
prince/gpa.py:15
ClassGroupType
Type of variables in an MFA group. A group must be homogeneous: every column in it is either numerical (PCA-style) or categorical (MCA-style)
prince/mfa.py:17
ClassMCA
Multiple Correspondence Analysis (MCA). MCA extends correspondence analysis to more than two categorical variables. It works by one-hot encod
prince/mca.py:18
ClassMFA
prince/mfa.py:34
ClassManifold
Abstract base class for Riemannian manifolds.
prince/manifolds.py:12
ClassPCA
Principal Component Analysis (PCA). Parameters ---------- rescale_with_mean Whether or not to subtract each column's mean before
prince/pca.py:32
ClassPGA
Principal Geodesic Analysis (PGA). PGA generalizes PCA to Riemannian manifolds. Data is mapped to the tangent space at the Fréchet mean, PCA
prince/pga.py:15
ClassTestCA
tests/test_ca.py:33
ClassTestFAMD
tests/test_famd.py:29
ClassTestFrechetMean
tests/test_pga.py:144
ClassTestGPA
tests/test_gpa.py:11
ClassTestGeomstatsComparison
Compare PGA results against geomstats TangentPCA as a reference.
tests/test_pga.py:164
ClassTestMCA
tests/test_mca.py:15
ClassTestMFA
tests/test_mfa.py:26
ClassTestMFACategorical
MFA on the FactoMineR ``poison`` dataset with one numerical and three categorical groups. Exercises mixed numeric/categorical MFA (FactoMineR's `
tests/test_mfa.py:259
ClassTestPCA
tests/test_pca.py:36
ClassTestPGAFit
tests/test_pga.py:46
ClassTestPGAKnownStructure
tests/test_pga.py:122
ClassTestPGAPlot
tests/test_pga.py:132
ClassTestPGAProperties
tests/test_pga.py:103
ClassTestPGARoundTrip
tests/test_pga.py:85
ClassTestPGATransform
tests/test_pga.py:72
ClassTestRandomState
random_state must produce reproducible SVDs regardless of the global numpy random state, for every engine that exposes a random_state knob.
tests/test_svd.py:85
ClassTestSVD
tests/test_svd.py:26
ClassTestWikipediaExample
Reproduce the example from the Wikipedia FAMD article. https://en.wikipedia.org/wiki/Factor_analysis_of_mixed_data Reference values computed
tests/test_famd.py:100