Baselight

Pandas Practices

this dataset for practices with pandas

@kaggle.melihkanbay_police

Police
@kaggle.melihkanbay_police.police

  • 555.86 KB
  • 91741 rows
  • 15 columns
stop_date

Stop Date

stop_time

Stop Time

county_name

County Name

driver_gender

Driver Gender

driver_age_raw

Driver Age Raw

driver_age

Driver Age

driver_race

Driver Race

violation_raw

Violation Raw

violation

Violation

search_conducted

Search Conducted

search_type

Search Type

stop_outcome

Stop Outcome

is_arrested

Is Arrested

stop_duration

Stop Duration

drugs_related_stop

Drugs Related Stop

Sun Jan 02 2005 00:00:00 GMT+0000 (Coordinated Universal Time)01:55M198520WhiteSpeedingSpeedingnanCitationFalse0-15 Min
Tue Jan 18 2005 00:00:00 GMT+0000 (Coordinated Universal Time)08:15M196540WhiteSpeedingSpeedingnanCitationFalse0-15 Min
Sun Jan 23 2005 00:00:00 GMT+0000 (Coordinated Universal Time)23:15M197233WhiteSpeedingSpeedingnanCitationFalse0-15 Min
Sun Feb 20 2005 00:00:00 GMT+0000 (Coordinated Universal Time)17:15M198619WhiteCall for ServiceOthernanArrest DriverTrue16-30 Min
Mon Mar 14 2005 00:00:00 GMT+0000 (Coordinated Universal Time)10:00F198421WhiteSpeedingSpeedingnanCitationFalse0-15 Min
Wed Mar 23 2005 00:00:00 GMT+0000 (Coordinated Universal Time)09:45M198223BlackEquipment/Inspection ViolationEquipmentnanCitationFalse0-15 Min
Fri Apr 01 2005 00:00:00 GMT+0000 (Coordinated Universal Time)17:30M196936WhiteSpeedingSpeedingnanCitationFalse0-15 Min
Mon Jun 06 2005 00:00:00 GMT+0000 (Coordinated Universal Time)13:20F198619WhiteSpeedingSpeedingnanCitationFalse0-15 Min
Wed Jul 13 2005 00:00:00 GMT+0000 (Coordinated Universal Time)10:15M197035BlackSpeedingSpeedingnanCitationFalse0-15 Min
Wed Jul 13 2005 00:00:00 GMT+0000 (Coordinated Universal Time)15:45M197035WhiteSpeedingSpeedingnanCitationFalse0-15 Min

CREATE TABLE police (
  "stop_date" TIMESTAMP,
  "stop_time" VARCHAR,
  "county_name" VARCHAR,
  "driver_gender" VARCHAR,
  "driver_age_raw" DOUBLE,
  "driver_age" DOUBLE,
  "driver_race" VARCHAR,
  "violation_raw" VARCHAR,
  "violation" VARCHAR,
  "search_conducted" BOOLEAN,
  "search_type" VARCHAR,
  "stop_outcome" VARCHAR,
  "is_arrested" VARCHAR,
  "stop_duration" VARCHAR,
  "drugs_related_stop" BOOLEAN
);

Share link

Anyone who has the link will be able to view this.