Baselight

Steam Hardware Survey July 2020

Distribution of CPU , GPU across steam devices as published by

@kaggle.kunwardeepak_steam_hardware_survey_july_2020

Loading...
Loading...

About this Dataset

Steam Hardware Survey July 2020

INSPIRATION

I got intrigued when steam asked my permission to collect data regarding my system's hardware . Obviously , very next instant i was out googling for this data to see if its public or not . And voila here it is .

CONTENT

This particular datasets contains really limited data of just distribution of CPU, GPU among various platform . Steam it self releases minimal data publicly and from that I decided to web scrap just this particular data as i think for every person either making a new rig or upgrading a current one combination of CPU and GPU contribute to be of major concern for both performance and money .

SOURCE

Data is scraped from the following link .
https://store.steampowered.com/hwsurvey/Steam-Hardware-Software-Survey-Welcome-to-Steam

Further I will be publishing a scrapping notebook for this website so as to help any one else scrape data in order to have updated monthly data with ease .

Tables

Cpu Cores

@kaggle.kunwardeepak_steam_hardware_survey_july_2020.cpu_cores
  • 7.34 KB
  • 49 rows
  • 9 columns
Loading...

CREATE TABLE cpu_cores (
  "unnamed_0" BIGINT,
  "cpu_cores" VARCHAR,
  "os" VARCHAR,
  "mar" VARCHAR,
  "apr" VARCHAR,
  "may" VARCHAR,
  "jun" VARCHAR,
  "jul" VARCHAR,
  "n__change" VARCHAR
);

Cpu Frequency

@kaggle.kunwardeepak_steam_hardware_survey_july_2020.cpu_frequency
  • 8.7 KB
  • 50 rows
  • 10 columns
Loading...

CREATE TABLE cpu_frequency (
  "unnamed_0" BIGINT,
  "cpu_frequency" VARCHAR,
  "manufacturer" VARCHAR,
  "os" VARCHAR,
  "mar" VARCHAR,
  "apr" VARCHAR,
  "may" VARCHAR,
  "jun" VARCHAR,
  "jul" VARCHAR,
  "n__change" VARCHAR
);

Gpu

@kaggle.kunwardeepak_steam_hardware_survey_july_2020.gpu
  • 8.95 KB
  • 98 rows
  • 8 columns
Loading...

CREATE TABLE gpu (
  "unnamed_0" BIGINT,
  "gpu_name" VARCHAR,
  "mar" VARCHAR,
  "apr" VARCHAR,
  "may" VARCHAR,
  "jun" VARCHAR,
  "jul" VARCHAR,
  "n__change" VARCHAR
);

Gpu Directx

@kaggle.kunwardeepak_steam_hardware_survey_july_2020.gpu_directx
  • 13.26 KB
  • 185 rows
  • 9 columns
Loading...

CREATE TABLE gpu_directx (
  "unnamed_0" BIGINT,
  "gpu_name" VARCHAR,
  "directx" VARCHAR,
  "mar" VARCHAR,
  "apr" VARCHAR,
  "may" VARCHAR,
  "jun" VARCHAR,
  "jul" VARCHAR,
  "n__change" VARCHAR
);

Share link

Anyone who has the link will be able to view this.