E- Commerce Dataset
E-Commerce Dataset with Products, Customers, Sales Trends, and Shipping Insights
@kaggle.malaiarasugraj_e_commerce_dataset
E-Commerce Dataset with Products, Customers, Sales Trends, and Shipping Insights
@kaggle.malaiarasugraj_e_commerce_dataset
This dataset provides a comprehensive view of an e-commerce platform, featuring detailed information about products, customers, pricing, and sales trends. It is designed for data analysis, machine learning, and insights into online retail operations. The dataset is structured to help researchers and analysts explore various aspects of e-commerce, such as product popularity, customer preferences, and shipping performance.
This dataset is ideal for:
| Product ID | Product Name | Category | Price | Discount | Tax Rate | Stock Level | Supplier ID | Customer Age Group | Customer Location | Customer Gender | Shipping Cost | Shipping Method | Return Rate | Seasonality | Popularity Index |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| P001 | Bluetooth Speaker | Electronics | 49.99 | 10.0 | 5.0 | 200 | S123 | Adults | USA | Both | 5.99 | Standard | 2.5 | All-Year | 85.0 |
| P002 | Yoga Mat | Sports | 19.99 | 15.0 | 2.0 | 300 | S456 | Teens | Canada | Female | 3.99 | Express | 1.5 | All-Year | 75.0 |
| P003 | Winter Jacket | Clothing | 99.99 | 20.0 | 8.0 | 100 | S789 | Adults | UK | Male | 9.99 | Overnight | 4.0 | Winter | 95.0 |
CREATE TABLE diversified_ecommerce_dataset (
"product_id" VARCHAR,
"product_name" VARCHAR,
"category" VARCHAR,
"price" DOUBLE,
"discount" BIGINT,
"tax_rate" BIGINT,
"stock_level" BIGINT,
"supplier_id" VARCHAR,
"customer_age_group" VARCHAR,
"customer_location" VARCHAR,
"customer_gender" VARCHAR,
"shipping_cost" DOUBLE,
"shipping_method" VARCHAR,
"return_rate" DOUBLE,
"seasonality" VARCHAR,
"popularity_index" BIGINT
);Anyone who has the link will be able to view this.