LoslegenKostenlos loslegen

Colors, linestyles, and legends

The City of Seattle has meters installed along the Fremont Bridge that log bicycle traffic on both the East and West side of the bridge, which runs North and South.

You're going to use matplotlib to explore how the traffic on the two sides of the bridge change during the day. Understanding how the two sides of the bridge get used during the morning and evening commute is important for any future development into cycling infrastructure that connects to this high traffic route.

Diese Übung ist Teil des Kurses

Python for MATLAB Users

Kurs anzeigen

Anleitung zur Übung

  • Plot northbound_traffic in orange and label it "Northbound".
  • Plot southbound_traffic in purple and label it "Southbound".
  • Label the x-axis "Hour of day" and the y-axis "Average number of crossings".
  • Create a legend and show the plot.

Interaktive Übung

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

# Plot the northbound traffic in orange and southbound in purple
plt.plot(____, ____='Northbound', ____='orange')
plt.____

# Label your axes
____('Hour of day')
____('Average number of crossings')

# Create a legend and show the plot
plt.____()
plt.show()
Code bearbeiten und ausführen