File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
"""
2
- Principal Component Analysis (PCA) is a dimensionality reduction technique
3
- commonly used in machine learning. It transforms high-dimensional data into
2
+ Principal Component Analysis (PCA) is a dimensionality reduction technique
3
+ commonly used in machine learning. It transforms high-dimensional data into
4
4
lower dimensions while retaining most of the information.
5
5
6
- Here,we use a dataset (Iris dataset) and apply PCA to reduce the
7
- dimensionality. We compute the principal components and transform the dataset
6
+ Here,we use a dataset (Iris dataset) and apply PCA to reduce the
7
+ dimensionality. We compute the principal components and transform the dataset
8
8
into a lower-dimensional space.
9
9
10
- We reduce the number of columns form 4 to 2
10
+ We reduce the number of columns form 4 to 2
11
11
12
12
"""
13
13
You can’t perform that action at this time.
0 commit comments