Transactional Retail Dataset Of Electronics Store
Online Electronics Store Dataset
@kaggle.muhammadshahrayar_transactional_retail_of_electronics_store
Online Electronics Store Dataset
@kaggle.muhammadshahrayar_transactional_retail_of_electronics_store
This dataset contains information about an online electronic store. The store has three warehouses from which goods are delivered to customers.
Use this dataset to perform graphical and/or non-graphical EDA methods to understand
the data first and then find and fix the data problems.
All the Best
CREATE TABLE dirty_data (
"order_id" VARCHAR,
"customer_id" VARCHAR,
"date" VARCHAR,
"nearest_warehouse" VARCHAR,
"shopping_cart" VARCHAR,
"order_price" BIGINT,
"delivery_charges" DOUBLE,
"customer_lat" DOUBLE,
"customer_long" DOUBLE,
"coupon_discount" BIGINT,
"order_total" DOUBLE,
"season" VARCHAR,
"is_expedited_delivery" BOOLEAN,
"distance_to_nearest_warehouse" DOUBLE,
"latest_customer_review" VARCHAR,
"is_happy_customer" BOOLEAN
);CREATE TABLE missing_data (
"order_id" VARCHAR,
"customer_id" VARCHAR,
"date" TIMESTAMP,
"nearest_warehouse" VARCHAR,
"shopping_cart" VARCHAR,
"order_price" DOUBLE,
"delivery_charges" DOUBLE,
"customer_lat" DOUBLE,
"customer_long" DOUBLE,
"coupon_discount" BIGINT,
"order_total" DOUBLE,
"season" VARCHAR,
"is_expedited_delivery" BOOLEAN,
"distance_to_nearest_warehouse" DOUBLE,
"latest_customer_review" VARCHAR,
"is_happy_customer" VARCHAR
);CREATE TABLE warehouses (
"names" VARCHAR,
"lat" DOUBLE,
"lon" DOUBLE
);Anyone who has the link will be able to view this.