Tracking crime statistics
Sergeant Laura wants to do some background research to help her better understand the cultural context for Bayes' kidnapping. She has plotted Burglary rates in three U.S. cities using data from the Uniform Crime Reporting Statistics.
She wants to present this data to her officers, and she wants the image to be as beautiful as possible to effectively tell her data story.
Recall:
- You can change
linestyleto dotted (':'), dashed('--'), or no line (''). - You can change the
markerto circle ('o'), diamond('d'), or square ('s').
Questo esercizio fa parte del corso
Introduction to Data Science in Python
Istruzioni dell'esercizio
- Change the color of Phoenix to
"DarkCyan". - Make the Los Angeles line dotted.
- Add square markers to Philadelphia.
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
# Change the color of Phoenix to `"DarkCyan"`
plt.plot(data["Year"], data["Phoenix Police Dept"], label="Phoenix", ____)
# Make the Los Angeles line dotted
plt.plot(data["Year"], data["Los Angeles Police Dept"], label="Los Angeles", ____)
# Add square markers to Philedelphia
plt.plot(data["Year"], data["Philadelphia Police Dept"], label="Philadelphia", ____)
# Add a legend
plt.legend()
# Display the plot
plt.show()