Posts

Showing posts from March, 2026
  Principal Component Analysis (PCA) Full Worked Example: 3D to 2D Dimensionality Reduction   Step 1 – Compute the Mean Vector Given dataset:                                               X = [[2, 0, 0],                                     [0, 2, 0],                                    [0, 0, 1],                               [2, 2, 1]] The mean vector is computed as:                                     ...