GSMArena Phone Dataset
8000+ phones specifications scraped from GSMArena Website
@kaggle.arwinneil_gsmarena_phone_dataset
8000+ phones specifications scraped from GSMArena Website
@kaggle.arwinneil_gsmarena_phone_dataset
Disclaimer : Dataset not being updated because it seemingly puts a lot of load on GSMArena Servers and event result in IP address bans in some cases. The source code is however available on GitHub and is to be run at your own discretion. Thanks!
GSMArena Phones Dataset is a labeled dataset extracted from GSMArena , one of the most popular online provider of phone information, and holds a large collection of phone specification. The original purpose of this dataset was data exploration and potentially some machine learning.
There are 108 unique phone brands with 39 variables:
network_technology , 2G_bands , 3G_bands , 4G_bands, network_speed, GPRS, EDGE ,announced ,status ,dimentions ,weight_g ,weight_oz ,SIM ,display_type ,display_resolution ,display_size ,OS ,CPU ,Chipset , GPU ,memory_card ,internal_memory ,RAM ,primary_camera ,secondary_camera ,loud_speaker ,audio_jack ,WLAN ,bluetooth ,GPS ,NFC ,radio ,USB ,sensors ,battery ,colors ,approx_price_EUR ,img_url
The dataset was scraped using a little CLI I wrote in C#, check it out on my Github
https://github.com/arwinneil/phone-dataset
CREATE TABLE phone_dataset (
"brand" VARCHAR,
"model" VARCHAR,
"network_technology" VARCHAR,
"n_2g_bands" VARCHAR -- 2G Bands,
"n_3g_bands" VARCHAR -- 3G Bands,
"n_4g_bands" VARCHAR -- 4G Bands,
"network_speed" VARCHAR,
"gprs" VARCHAR,
"edge" VARCHAR,
"announced" VARCHAR,
"status" VARCHAR,
"dimentions" VARCHAR,
"weight_g" VARCHAR,
"weight_oz" VARCHAR,
"sim" VARCHAR,
"display_type" VARCHAR,
"display_resolution" VARCHAR,
"display_size" VARCHAR,
"os" VARCHAR,
"cpu" VARCHAR,
"chipset" VARCHAR,
"gpu" VARCHAR,
"memory_card" VARCHAR,
"internal_memory" VARCHAR,
"ram" VARCHAR,
"primary_camera" VARCHAR,
"secondary_camera" VARCHAR,
"loud_speaker" VARCHAR,
"audio_jack" VARCHAR,
"wlan" VARCHAR,
"bluetooth" VARCHAR,
"gps" VARCHAR,
"nfc" VARCHAR,
"radio" VARCHAR,
"usb" VARCHAR,
"sensors" VARCHAR,
"battery" VARCHAR,
"colors" VARCHAR,
"approx_price_eur" DOUBLE,
"img_url" VARCHAR
);
Anyone who has the link will be able to view this.