Get startedGet started for free

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.

This exercise is part of the course

Introduction to Data Science in Python

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Display the DataFrame hours using print
print(____)
Edit and Run Code