BMW Global Sales Analysis
Impact of Price and Mileage on Market Trends
@kaggle.sidraaazam_bmw_global_sales_analysis
Impact of Price and Mileage on Market Trends
@kaggle.sidraaazam_bmw_global_sales_analysis
context:
This dataset is about BMW(a luxury car)that make it easier for peopleto use it for analysis.
This dataset contains 50,000rows and 11 columns. It has no missing value.
Columns Description:
Model – BMW model (e.g., 5 Series, i8, X3, 7 Series).
Year – Year of manufacture or sale (2010–2024).
Region – Sales region (Asia, North America, Europe, etc.).
Color – Vehicle color.
Fuel_Type – Fuel type (Petrol, Diesel, Hybrid, Electric).
Transmission – Manual or Automatic.
Engine_Size_L – Engine size in liters.
Mileage_KM – Mileage of the car in kilometers.
Price_USD – Price of the car in U.S. dollars.
Sales_Volume – Number of units sold.
Sales_Classification – Categorized sales level (High, Low, etc.).
Acknowledgement
Use this dataset for analysis and take it from another author.
CREATE TABLE bmw_sales_data_2010_2024_1 (
"model" VARCHAR,
"year" BIGINT,
"region" VARCHAR,
"color" VARCHAR,
"fuel_type" VARCHAR,
"transmission" VARCHAR,
"engine_size_l" DOUBLE,
"mileage_km" BIGINT,
"price_usd" BIGINT,
"sales_volume" BIGINT,
"sales_classification" VARCHAR
);
Anyone who has the link will be able to view this.