Amazon Gaming Desktops Dataset
Predict the Price of Gaming Computers listed on Amazon.
@kaggle.ericlayer_amazon_gaming_desktops_dataset
Predict the Price of Gaming Computers listed on Amazon.
@kaggle.ericlayer_amazon_gaming_desktops_dataset
This dataset is made up of product listings from Amazon's gaming desktops. All possible features that could scraped along with the product title was collected, and more information about each listing comes within the titles. Since there is information to be acquired within the product titles, you can practice engineering new features from this information.
Any duplicates that existed among the product names have already been dropped to ensure the same record isn't counted multiple times when performing experiments and regression models.
An example notebook of how this dataset was used can be found on my GitHub:
If you have any other strategies of how you would tackle this dataset, feel free to give it a go and we can learn from each other!
Task: Can you predict the prices of Gaming Desktops listed from Amazon?
CREATE TABLE amazon_gaming_desktops (
"unnamed_0" BIGINT -- Unnamed: 0,
"product_name" VARCHAR,
"avg_rating" VARCHAR -- Avg. Rating,
"n__ratings" BIGINT -- # Ratings,
"price" VARCHAR,
"processor_type" VARCHAR,
"disk_size" VARCHAR,
"ram" VARCHAR,
"processor_speed" VARCHAR
);
Anyone who has the link will be able to view this.