CommencerCommencer gratuitement

Pokémon sightings

There have been reports of sightings of rare, legendary Pokémon. You have been asked to investigate! Plot the coordinates of sightings to find out where the Pokémon might be. The X and Y coordinates of the points are stored in list x and y, respectively.

Cet exercice fait partie du cours

Cluster Analysis in Python

Afficher le cours

Instructions

  • Import the pyplot class from matplotlib library as plt.
  • Create a scatter plot using the pyplot class.
  • Display the scatter plot created in the earlier step.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Import plotting class from matplotlib library
from matplotlib import ____ as plt

# Create a scatter plot
plt.____(x, y)

# Display the scatter plot
plt.____()
Modifier et exécuter le code