We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c91628 commit f704eefCopy full SHA for f704eef
PCA/PCA_sklearn.py
@@ -5,6 +5,7 @@
5
from sklearn.preprocessing import StandardScaler
6
from sklearn.decomposition import PCA
7
8
+# This dataset is provided in this repository.
9
# Update the path below to your local path where the dataset is located
10
dataset = pd.read_csv("/content/drive/MyDrive/Digit Recognizer Dataset/train.csv")
11
@@ -70,4 +71,4 @@ def plot_2D_pca(X_pca, y_train):
70
71
fig.update_traces(marker=dict(size=5))
72
fig.show()
73
-plot_2D_pca(X_pca_2d, y_train)
74
+plot_2D_pca(X_pca_2d, y_train)
0 commit comments