Retail Insights: A Comprehensive Sales Dataset
Uncover Trends, Optimize Strategies, and Excel in Retail Analytics with this Rob
@kaggle.rajneesh231_retail_insights_a_comprehensive_sales_dataset
Uncover Trends, Optimize Strategies, and Excel in Retail Analytics with this Rob
@kaggle.rajneesh231_retail_insights_a_comprehensive_sales_dataset
The provided dataset is a synthetic dataset which represents sales information for a company, containing 5000 entries with 24 columns. The data encompasses various aspects of sales transactions, including order details, customer information, product details, pricing, and shipping information. Below is a detailed breakdown of each column:
Column Descriptions:
Dataset Characteristics:
The dataset is diverse, containing both categorical and numerical data. It includes temporal information with "Order Date" and "Ship Date" in datetime format. Some columns like "Cost Price," "Retail Price," and others related to monetary values are currently stored as objects, which may need conversion for accurate numerical analysis. The dataset provides a comprehensive snapshot of the sales process, making it suitable for various analytical and exploratory tasks.
CREATE TABLE data (
"order_no" VARCHAR,
"order_date" VARCHAR,
"customer_name" VARCHAR,
"address" VARCHAR,
"city" VARCHAR,
"state" VARCHAR,
"customer_type" VARCHAR,
"account_manager" VARCHAR,
"order_priority" VARCHAR,
"product_name" VARCHAR,
"product_category" VARCHAR,
"product_container" VARCHAR,
"ship_mode" VARCHAR,
"ship_date" VARCHAR,
"cost_price" VARCHAR,
"retail_price" VARCHAR,
"profit_margin" VARCHAR,
"order_quantity" DOUBLE,
"sub_total" VARCHAR,
"discount" VARCHAR -- Discount %,
"discount_66c100" VARCHAR -- Discount $,
"order_total" VARCHAR,
"shipping_cost" VARCHAR,
"total" VARCHAR
);Anyone who has the link will be able to view this.