Metadata-Version: 1.1
Name: fa-py
Version: 0.2
Summary: A Python package to for performing Factor analysis on any given data.
Home-page: https://github.com/ck090/FactorApy
Author: Chandra Kanth N
Author-email: canfindck@gmail.com
License: MIT
Description: # FactorApy
        A Python package to for performing Factor analysis on any given data.
        
        ## Usage
        
        There are 2 base classes in this library. <br>
        1. FA_Tests()
        2. 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
        ...
        ```
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
