ck090 / FactorApy

Factor analysis library for Python. Includes Principal Component Analysis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FactorApy PyPI

A Python package to for performing Factor analysis on any given data.

Installation

This library is available on Pypi

pip install fa_py
pip3 install fa_py

All the dependencies are maintained by the project library itself

Usage

There are 2 base classes in this library.

  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
...

About

Factor analysis library for Python. Includes Principal Component Analysis

License:MIT License


Languages

Language:Python 100.0%