An open API service indexing awesome lists of open source software.

https://github.com/baschin1103/principal_component_analysis

In this repository you find a python program and the prints and 3D-visualization of it. After the KNN-Classification I wanted to know which variables have the most relevance for the results. One approach for this is the Principal-Component-Analysis (PCA). More details in the python program as comments.
https://github.com/baschin1103/principal_component_analysis

3d-printing labelencoder matplotlib numpy pandas principal-component-analysis sklearn-library sqlalchemy standardization variable-importance

Last synced: 12 months ago
JSON representation

In this repository you find a python program and the prints and 3D-visualization of it. After the KNN-Classification I wanted to know which variables have the most relevance for the results. One approach for this is the Principal-Component-Analysis (PCA). More details in the python program as comments.

Awesome Lists containing this project

README

          

After the KNN-Classification I wanted to know which variables have the most relevance for the results. One approach for this is the Principal-Component-Analysis (PCA). It tries to create principal components (PC's) out of the variables so that less information gets lost. It is done here with the help of the sklearn-library.