NYC Motor Vehicle Collisions To Person
Killed, Injured Case at 2021
@kaggle.kukuroo3_nyc_motor_vehicle_collisions_to_person
Killed, Injured Case at 2021
@kaggle.kukuroo3_nyc_motor_vehicle_collisions_to_person
It is data of a collision accident between a person and a motor vehicle that occurred in New York in 2021. Only cases of injury or death over $1,000 were filtered out. The date and time of the incident, the location of the injury, and the police description of the incident are summarized.
Through EDA, you can check the characteristics of each traffic incident by date and by type of incident.
CREATE TABLE nyc_motor_vehicle_collisions_to_person (
"crash_date" TIMESTAMP,
"crash_time" VARCHAR,
"person_injury" VARCHAR,
"person_age" DOUBLE,
"bodily_injury" VARCHAR,
"safety_equipment" VARCHAR,
"person_sex" VARCHAR,
"person_type" VARCHAR,
"ped_location" VARCHAR,
"contributing_factor_2" VARCHAR,
"ejection" VARCHAR,
"complaint" VARCHAR,
"emotional_status" VARCHAR,
"vehicle_id" DOUBLE,
"person_id" VARCHAR,
"contributing_factor_1" VARCHAR,
"position_in_vehicle" VARCHAR,
"ped_role" VARCHAR,
"unique_id" BIGINT,
"ped_action" VARCHAR,
"collision_id" BIGINT
);Anyone who has the link will be able to view this.