Skip to content

Commit ac605b5

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 44cb411 commit ac605b5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

machine_learning/principle_component_analysis.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
"""
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
44
lower dimensions while retaining most of the information.
55
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
88
into a lower-dimensional space.
99
10-
We reduce the number of columns form 4 to 2
10+
We reduce the number of columns form 4 to 2
1111
1212
"""
1313

0 commit comments

Comments
 (0)