Build a simple bar chart
Officer Deshaun wants to plot the average number of hours worked per week for him and his coworkers. He has stored the hours worked in a DataFrame called hours, which has columns officer and avg_hours_worked. Recall that the function plt.bar() takes two arguments: the labels for each bar, and the height of each bar. Both of these can be found in our DataFrame.
Questo esercizio fa parte del corso
Introduction to Data Science in Python
Esercizio pratico interattivo
Prova a risolvere questo esercizio completando il codice di esempio.
# Display the DataFrame hours using print
print(____)