A Python package to for performing Factor analysis on any given data.
This library is available on Pypi
pip install fa_py
pip3 install fa_py
All the dependencies are maintained by the project library itself
There are 2 base classes in this library.
- FA_Tests()
- FA()
To use the library
import fa_py
...
fa = fa_py.FA_Tests() ## Class initializer
fa.kmo(X) ## Pass the dataframe to calculate the KMO test scores
...