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

https://github.com/bhattbhavesh91/pca-from-scratch-iris-dataset

Implementing PCA from Scratch for iris dataset
https://github.com/bhattbhavesh91/pca-from-scratch-iris-dataset

iris-dataset pca principal-component-analysis

Last synced: 4 months ago
JSON representation

Implementing PCA from Scratch for iris dataset

Awesome Lists containing this project

README

          

## PCA on IRIS Dataset
The main purposes of a principal component analysis are the analysis of data to identify patterns and finding patterns to reduce the dimensions of the dataset with minimal loss of information.

Here, our desired outcome of the principal component analysis is to project a feature space (our dataset consisting of n-dimensional samples) onto a smaller subspace that represents our data "well". A possible application would be a pattern classification task, where we want to reduce the computational costs and the error of parameter estimation by reducing the number of dimensions of our feature space by extracting a subspace that describes our data "best".

# Principal Component Analysis (PCA) from Scratch in Python
## To view the video
* [Click here](https://youtu.be/uFbDWu0tDrE)
* Click on the image below

[![Principal Component Analysis (PCA) from Scratch in Python](http://img.youtube.com/vi/uFbDWu0tDrE/0.jpg)](http://www.youtube.com/watch?v=uFbDWu0tDrE)

## Follow Me