├── .gitignore ├── LICENSE ├── README.md ├── README.rst ├── examples ├── Tutorial_Episode0.ipynb ├── Tutorial_Episode1.ipynb └── Tutorial_Episode2.ipynb ├── fa_kit ├── __init__.py ├── broken_stick.py ├── extraction.py ├── factor_analysis.py ├── plotting.py ├── retention.py ├── rotation.py └── rotation_tf.py └── tests ├── test_BrokenStick.py ├── test_FactorAnalysis.py ├── test_extraction.py ├── test_retention.py └── test_rotation.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/README.rst -------------------------------------------------------------------------------- /examples/Tutorial_Episode0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/examples/Tutorial_Episode0.ipynb -------------------------------------------------------------------------------- /examples/Tutorial_Episode1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/examples/Tutorial_Episode1.ipynb -------------------------------------------------------------------------------- /examples/Tutorial_Episode2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/examples/Tutorial_Episode2.ipynb -------------------------------------------------------------------------------- /fa_kit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/fa_kit/__init__.py -------------------------------------------------------------------------------- /fa_kit/broken_stick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/fa_kit/broken_stick.py -------------------------------------------------------------------------------- /fa_kit/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/fa_kit/extraction.py -------------------------------------------------------------------------------- /fa_kit/factor_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/fa_kit/factor_analysis.py -------------------------------------------------------------------------------- /fa_kit/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/fa_kit/plotting.py -------------------------------------------------------------------------------- /fa_kit/retention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/fa_kit/retention.py -------------------------------------------------------------------------------- /fa_kit/rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/fa_kit/rotation.py -------------------------------------------------------------------------------- /fa_kit/rotation_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/fa_kit/rotation_tf.py -------------------------------------------------------------------------------- /tests/test_BrokenStick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/tests/test_BrokenStick.py -------------------------------------------------------------------------------- /tests/test_FactorAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/tests/test_FactorAnalysis.py -------------------------------------------------------------------------------- /tests/test_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/tests/test_extraction.py -------------------------------------------------------------------------------- /tests/test_retention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/tests/test_retention.py -------------------------------------------------------------------------------- /tests/test_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmcmenamin/fa_kit/HEAD/tests/test_rotation.py --------------------------------------------------------------------------------