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.
This exercise is part of the course
Introduction to Data Science in Python
Exercise instructions
- Place the annotation
"Missing June data"
at the point (2.5
,80
).
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Create plot
plt.plot(six_months.month, six_months.hours_worked)
# Add annotation "Missing June data" at (2.5, 80)
____.____(____)
# Display graph
plt.show()