LoslegenKostenlos loslegen

Visualize normalized data

After normalizing your data, you can compare the scaled data to the original data to see the difference. The variables from the last exercise, goals_for and scaled_data are already available to you.

Diese Übung ist Teil des Kurses

Cluster Analysis in Python

Kurs anzeigen

Anleitung zur Übung

  • Use the matplotlib library to plot the original and scaled data.
  • Show the legend in the plot.
  • Display the plot.

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Plot original data
plt.____(____, label='original')

# Plot scaled data
plt.____(____, label='scaled')

# Show the legend in the plot
plt.____()

# Display the plot
plt.____()
Code bearbeiten und ausführen