1. Learn
  2. /
  3. Courses
  4. /
  5. Introduction to Data Science in Python

Exercise

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.

Instructions 1/3

undefined XP
    1
    2
    3
  • Display the DataFrame hours using a print command.