GPU Price Trends: New Vs. Used NVIDIA & AMD
Historical Prices of 48 GPUs from Amazon and EBay Listings
@kaggle.mannacharya_historical_gpu_prices_nvidia_and_amd
Historical Prices of 48 GPUs from Amazon and EBay Listings
@kaggle.mannacharya_historical_gpu_prices_nvidia_and_amd
This dataset provides a comprehensive view of historical GPU prices and specifications, covering both new and used prices for NVIDIA and AMD GPUs.
It covers 48 GPUs and has data of the VRAM, Watt Rating, 3DMark Benchmark value, Historical Retail and Used Prices.
The Retail prices were collected from Amazon while the Used prices were collected from EBay.
This dataset is ideal for data scientists, machine learning enthusiasts, PC hardware reviewers, gamers, and anyone interested in understanding the GPU market's past, present, and future trends.
CREATE TABLE gpu_metadata (
"name" VARCHAR,
"wattage" VARCHAR,
"vram" VARCHAR,
"n_3dmark" BIGINT -- 3DMARK
);
CREATE TABLE gpu_price_history (
"date" VARCHAR,
"name" VARCHAR,
"retail_price" BIGINT,
"used_price" BIGINT
);
Anyone who has the link will be able to view this.