เริ่มต้นใช้งานเริ่มต้นใช้งานได้ฟรี

Calculating the search rate

During a traffic stop, the police officer sometimes conducts a search of the vehicle. In this exercise, you'll calculate the percentage of all stops in the ri DataFrame that result in a vehicle search, also known as the search rate.

แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร

Analyzing Police Activity with pandas

ดูคอร์ส

คำแนะนำการฝึกหัด

  • Check the data type of search_conducted to confirm that it's a Boolean Series.
  • Calculate the search rate by counting the Series values and expressing them as proportions.
  • Calculate the search rate by taking the mean of the Series. (It should match the proportion of True values calculated above.)

แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ

ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์

# Check the data type of 'search_conducted'
print(____)

# Calculate the search rate by counting the values
print(____)

# Calculate the search rate by taking the mean
print(____)
แก้ไขและรันโค้ด