Adding floating text
Officer Deshaun is examining the number of hours that he worked over the past six months. The number for June is low because he only had data for the first week. Help Deshaun add an annotation to the graph to explain this.
Cette activité fait partie du cours
Introduction to Data Science in Python
Instructions de l’exercice
- Place the annotation
"Missing June data"at the point (2.5,80).
Exercice interactif pratique
Essayez cet exercice en complétant ce code d’exemple.
# Create plot
plt.plot(six_months.month, six_months.hours_worked)
# Add annotation "Missing June data" at (2.5, 80)
____.____(____)
# Display graph
plt.show()