AI Features

Exercise: Dimensionality Reduction in Plotly

Practice with some lab exercises.

We'll cover the following...

Exercise 1

Take the matrix XX, scale the data, apply principal component analysis and plot the first two principal components using Plotly Express.

Solution

This code snippet creates a PCA (principal component analysis) pipeline, transforms the input data using this pipeline, ...

Ask