Skip to content
This repository was archived by the owner on Feb 9, 2025. It is now read-only.

Commit aa23817

Browse files
authored
Fixed typo in code example (missing comments)
1 parent f30e63e commit aa23817

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Lab 9 - Scalable PCA for dimensionality reduction and Spark data types.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -303,11 +303,11 @@ Check the **PC** obtained this time (it is the same as the above PCA methods now
303303

304304
```python
305305
print(V)
306-
DenseMatrix([[-0.44859172, -0.28423808],
307-
[ 0.13301986, -0.05621156],
308-
[-0.12523156, 0.76362648],
309-
[ 0.21650757, -0.56529588],
310-
[-0.84765129, -0.11560341]])
306+
# DenseMatrix([[-0.44859172, -0.28423808],
307+
# [ 0.13301986, -0.05621156],
308+
# [-0.12523156, 0.76362648],
309+
# [ 0.21650757, -0.56529588],
310+
# [-0.84765129, -0.11560341]])
311311
```
312312

313313
Let us examine the relationships between the singular values and the eigenvalues.
@@ -378,4 +378,4 @@ Start from a small dataset to test your work, and then checking **whether** your
378378

379379
### Large image datasets
380380

381-
Find some large-scale image datasets to examine the principal components and explore low-dimensional representations.
381+
Find some large-scale image datasets to examine the principal components and explore low-dimensional representations.

0 commit comments

Comments
 (0)