Ford Car Price Prediction
Predicting the price of used Ford Cars
@kaggle.adhurimquku_ford_car_price_prediction
Predicting the price of used Ford Cars
@kaggle.adhurimquku_ford_car_price_prediction
Attribute Information:
1.model - > Ford Car Brands
2.year - >Production Year
3.price - >Price of car in $
4.transmission - > Automatic,Manual, Semi-Auto
5.mileage -> Number of miles traveled
6.fuel_Type -> Petrol,Diesel,Hybrid,Electric,Other
7.tax -> Annual Tax
8.mpg - > Miles per Gallon
9.engineSize - > Car's Engine Size
CREATE TABLE ford (
"model" VARCHAR,
"year" BIGINT,
"price" BIGINT,
"transmission" VARCHAR,
"mileage" BIGINT,
"fueltype" VARCHAR,
"tax" BIGINT,
"mpg" DOUBLE,
"enginesize" DOUBLE
);Anyone who has the link will be able to view this.