Car Price Prediction Dataset
Unlocking Insights: Exploring Trends and Patterns in Car Price Prediction Data
@kaggle.sukhmandeepsinghbrar_car_price_prediction_dataset
Unlocking Insights: Exploring Trends and Patterns in Car Price Prediction Data
@kaggle.sukhmandeepsinghbrar_car_price_prediction_dataset
This dataset contains various features related to cars, including the year of manufacture, selling price, kilometers driven, fuel type, seller type, transmission type, number of previous owners, mileage, and engine specifications. These attributes provide valuable insights into the factors influencing car prices and can be used to develop predictive models for estimating the selling price of cars.
CREATE TABLE cardekho (
"name" VARCHAR,
"year" BIGINT,
"selling_price" BIGINT,
"km_driven" BIGINT,
"fuel" VARCHAR,
"seller_type" VARCHAR,
"transmission" VARCHAR,
"owner" VARCHAR,
"mileage_km_ltr_kg" DOUBLE -- Mileage(km/ltr/kg),
"engine" DOUBLE,
"max_power" VARCHAR,
"seats" DOUBLE
);Anyone who has the link will be able to view this.