San Francisco Police Stop Data 2018-2023
Dataset containing police stop data from the San Francisco Police Department
@kaggle.asaniczka_san_francisco_police_stop_data_2018_2023
Dataset containing police stop data from the San Francisco Police Department
@kaggle.asaniczka_san_francisco_police_stop_data_2018_2023
This dataset provides comprehensive information on police stops conducted by the San Francisco Police Department from 2018 to 2023.
It includes details such as the date and time of the stop, duration, location, race/ethnicity of the person stopped, gender, age, reason for the stop, actions taken, search basis, property seizure, contraband or evidence found, and the results of the stop.
If you find this dataset valuable, don't forget to hit the upvote button! 😊💝
Photo by Scott Rodgerson on Unsplash
CREATE TABLE sfpd_stop_cleaned_data (
"doj_record_id" VARCHAR,
"person_number" BIGINT,
"agency_ori" VARCHAR,
"stop_datetime" TIMESTAMP,
"duration_of_stop" BIGINT,
"is_stop_response_to_call" BOOLEAN,
"location" VARCHAR,
"district" VARCHAR,
"city" VARCHAR,
"perceived_race_ethnicity" VARCHAR,
"perceived_gender" VARCHAR,
"is_lgbt" BOOLEAN,
"perceived_age" BIGINT,
"perceived_age_group" VARCHAR,
"had_limited_or_no_english" BOOLEAN,
"perceived_or_known_disability" VARCHAR,
"reason_for_stop" VARCHAR,
"traffic_violation_type" VARCHAR,
"traffic_viol_cjis_off_code" BIGINT,
"traffic_viol_off_code" VARCHAR,
"traffic_viol_off_statute" VARCHAR,
"suspicion_cjis_off_code" BIGINT,
"suspicion_off_code_txt" VARCHAR,
"suspicion_off_statute" VARCHAR,
"suspicion_sub_type" VARCHAR,
"actions_taken" VARCHAR,
"basis_for_search" VARCHAR,
"basis_for_property_seizure" VARCHAR,
"type_of_property_seized" VARCHAR,
"contraband_or_evidence" VARCHAR,
"results_of_stop" VARCHAR,
"longitude" DOUBLE,
"latitude" DOUBLE,
"supervisor_district" BIGINT,
"analysis_neighborhoods" VARCHAR,
"perceived_race_ethnicity_code" DOUBLE,
"perceived_gender_code" BIGINT,
"perceived_or_known_disability_code" DOUBLE,
"reason_for_stop_code" BIGINT,
"actions_taken_code" VARCHAR,
"basis_for_search_code" DOUBLE,
"basis_for_property_seizure_code" VARCHAR,
"type_of_property_seized_code" DOUBLE,
"contraband_or_evidence_code" DOUBLE,
"suspicion_sub_type_code" DOUBLE,
"results_of_stop_code" DOUBLE
);Anyone who has the link will be able to view this.