Laptop Price Prediction
Predict the price of laptops according to their features
@kaggle.mrsimple07_laptoppriceprediction
Predict the price of laptops according to their features
@kaggle.mrsimple07_laptoppriceprediction
The dataset emulates laptop prices, capturing various features commonly associated with laptops and their corresponding simulated prices. The dataset encompasses key attributes such as brand, processor speed, RAM size, storage capacity, screen size, and weight.
CREATE TABLE laptop_price (
"brand" VARCHAR,
"processor_speed" DOUBLE,
"ram_size" BIGINT,
"storage_capacity" BIGINT,
"screen_size" DOUBLE,
"weight" DOUBLE,
"price" DOUBLE
);Anyone who has the link will be able to view this.