├── PCA.ipynb ├── README.md └── requirements.txt /README.md: -------------------------------------------------------------------------------- 1 | # requirement 2 | - numpy 3 | - scipy 4 | - scikit-learn 5 | - ipython 6 | - matplotlib 7 | 8 | # install 9 | 10 | ``` 11 | pip install "ipython[notebook]" 12 | pip install -r requirements.txt 13 | ``` -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | scikit-learn 4 | matplotlib 5 | ipython 6 | --------------------------------------------------------------------------------