Get startedGet started for free

Examining traffic violations

Before comparing the violations being committed by each gender, you should examine the violations committed by all drivers to get a baseline understanding of the data.

In this exercise, you'll count the unique values in the violation column, and then separately express those counts as proportions.

This exercise is part of the course

Analyzing Police Activity with pandas

View Course

Exercise instructions

  • Count the unique values in the violation column of the ri DataFrame, to see what violations are being committed by all drivers.
  • Express the violation counts as proportions of the total.

Hands-on interactive exercise

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

# Count the unique values in 'violation'
print(____)

# Express the counts as proportions
print(____)
Edit and Run Code