Amazon Business Research Analyst Dataset
Cleaned Dataset for the Amazon Business Research Analyst Hiring Challenge
@kaggle.vikramxd_amazon_business_research_analyst_dataset
Cleaned Dataset for the Amazon Business Research Analyst Hiring Challenge
@kaggle.vikramxd_amazon_business_research_analyst_dataset
CREATE TABLE cleaned_test (
"id" VARCHAR,
"delivery_person_id" VARCHAR,
"delivery_person_age" DOUBLE,
"delivery_person_ratings" DOUBLE,
"restaurant_latitude" DOUBLE,
"restaurant_longitude" DOUBLE,
"delivery_location_latitude" DOUBLE,
"delivery_location_longitude" DOUBLE,
"order_date" VARCHAR,
"time_orderd" VARCHAR,
"time_order_picked" VARCHAR,
"weather" VARCHAR,
"road_traffic_density" VARCHAR,
"vehicle_condition" BIGINT,
"type_of_order" VARCHAR,
"type_of_vehicle" VARCHAR,
"multiple_deliveries" DOUBLE,
"festival" VARCHAR,
"city" VARCHAR,
"name" VARCHAR
);
CREATE TABLE encoded_cleaned_test (
"id" VARCHAR,
"delivery_person_id" VARCHAR,
"delivery_person_age" DOUBLE,
"delivery_person_ratings" DOUBLE,
"restaurant_latitude" DOUBLE,
"restaurant_longitude" DOUBLE,
"delivery_location_latitude" DOUBLE,
"delivery_location_longitude" DOUBLE,
"order_date" VARCHAR,
"time_orderd" VARCHAR,
"time_order_picked" VARCHAR,
"weather" BIGINT,
"road_traffic_density" BIGINT,
"vehicle_condition" BIGINT,
"type_of_order" BIGINT,
"type_of_vehicle" VARCHAR,
"multiple_deliveries" DOUBLE,
"festival" DOUBLE,
"city" VARCHAR,
"name" VARCHAR
);
CREATE TABLE updated (
"unnamed_0" BIGINT,
"id" VARCHAR,
"delivery_person_id" VARCHAR,
"delivery_person_age" BIGINT,
"delivery_person_ratings" DOUBLE,
"restaurant_latitude" DOUBLE,
"restaurant_longitude" DOUBLE,
"delivery_location_latitude" DOUBLE,
"delivery_location_longitude" DOUBLE,
"time_orderd" VARCHAR,
"time_order_picked" VARCHAR,
"weatherconditions" BIGINT,
"road_traffic_density" BIGINT,
"vehicle_condition" BIGINT,
"type_of_order" BIGINT,
"type_of_vehicle" BIGINT,
"multiple_deliveries" DOUBLE,
"festival" BIGINT,
"city" BIGINT,
"time_taken_min" DOUBLE
);
Anyone who has the link will be able to view this.