USA Optimal Product Price Prediction Dataset
Scraped dataset from Amazon USA, with price prediction in focus
@kaggle.asaniczka_usa_optimal_product_price_prediction
Scraped dataset from Amazon USA, with price prediction in focus
@kaggle.asaniczka_usa_optimal_product_price_prediction
This dataset contains product prices from Amazon USA, with a focus on price prediction. With a good amount of data on what price points sell the most, you can train machine learning models to predict the optimal price for a product based on its features and product name.
If you find this dataset useful, make sure to show your appreciation by upvoting! ❤️✨
This dataset is a superset of my Amazon USA product price dataset. Another inspiration is this competition that awareded 100K Prize Money
CREATE TABLE amz_us_price_prediction_dataset (
"uid" BIGINT,
"asin" VARCHAR,
"title" VARCHAR,
"stars" DOUBLE,
"reviews" BIGINT,
"price" DOUBLE,
"category" VARCHAR,
"isbestseller" BOOLEAN,
"boughtinlastmonth" BIGINT
);
Anyone who has the link will be able to view this.