Machine Hack Mar22
Predict accident risk score for unique postcode
@kaggle.krishnadaskv_machine_hack_mar22_predict_accident_risk_score
Predict accident risk score for unique postcode
@kaggle.krishnadaskv_machine_hack_mar22_predict_accident_risk_score
CREATE TABLE population (
"postcode" VARCHAR,
"rural_urban" VARCHAR,
"variable_all_usual_residents_measures_value" BIGINT,
"variable_males_measures_value" BIGINT,
"variable_females_measures_value" BIGINT,
"variable_lives_in_a_household_measures_value" BIGINT,
"variable_lives_in_a_communal_establishment_measures_value" BIGINT,
"variable_schoolchild_or_full_time_student_aged_4_and_o_e068bb60" BIGINT,
"variable_area_hectares_measures_value" DOUBLE,
"variable_density_number_of_persons_per_hectare_measures_value" DOUBLE
);
CREATE TABLE roads_network (
"wkt" VARCHAR,
"roadclassi" VARCHAR,
"roadfuncti" VARCHAR,
"formofway" VARCHAR,
"length" DOUBLE,
"primaryrou" DOUBLE,
"distance_to_the_nearest_point_on_rd" DOUBLE,
"postcode" VARCHAR
);
CREATE TABLE sample_submission (
"postcode" VARCHAR,
"accident_risk_index" BIGINT
);
CREATE TABLE test (
"accident_id" BIGINT,
"police_force" BIGINT,
"number_of_vehicles" BIGINT,
"number_of_casualties" BIGINT,
"date" VARCHAR,
"day_of_week" BIGINT,
"time" VARCHAR,
"local_authority_district" BIGINT,
"local_authority_highway" VARCHAR,
"n_1st_road_class" BIGINT,
"n_1st_road_number" BIGINT,
"road_type" VARCHAR,
"speed_limit" BIGINT,
"n_2nd_road_class" BIGINT,
"n_2nd_road_number" BIGINT,
"pedestrian_crossing_human_control" VARCHAR,
"pedestrian_crossing_physical_facilities" VARCHAR,
"light_conditions" VARCHAR,
"weather_conditions" VARCHAR,
"road_surface_conditions" VARCHAR,
"special_conditions_at_site" VARCHAR,
"carriageway_hazards" VARCHAR,
"urban_or_rural_area" BIGINT,
"did_police_officer_attend_scene_of_accident" VARCHAR,
"state" VARCHAR,
"postcode" VARCHAR,
"country" VARCHAR
);
CREATE TABLE train (
"accident_id" BIGINT,
"police_force" BIGINT,
"number_of_vehicles" BIGINT,
"number_of_casualties" BIGINT,
"date" VARCHAR,
"day_of_week" BIGINT,
"time" VARCHAR,
"local_authority_district" BIGINT,
"local_authority_highway" VARCHAR,
"n_1st_road_class" BIGINT,
"n_1st_road_number" BIGINT,
"road_type" VARCHAR,
"speed_limit" BIGINT,
"n_2nd_road_class" BIGINT,
"n_2nd_road_number" BIGINT,
"pedestrian_crossing_human_control" VARCHAR,
"pedestrian_crossing_physical_facilities" VARCHAR,
"light_conditions" VARCHAR,
"weather_conditions" VARCHAR,
"road_surface_conditions" VARCHAR,
"special_conditions_at_site" VARCHAR,
"carriageway_hazards" VARCHAR,
"urban_or_rural_area" BIGINT,
"did_police_officer_attend_scene_of_accident" VARCHAR,
"state" VARCHAR,
"postcode" VARCHAR,
"country" VARCHAR
);
Anyone who has the link will be able to view this.