Flipkart Mobiles Dataset
mobile phone listings on ecommerce website
@kaggle.devsubhash_flipkart_mobiles_dataset
mobile phone listings on ecommerce website
@kaggle.devsubhash_flipkart_mobiles_dataset
This dataset containing specs of various Mobile brands in India has been scraped from an ecommerce website 'Flipkart'. This dataset has 3114 samples with 8 attributes. There are some missing values as well.
Attributes-
Inspiration-
You can use this dataset to answer some interesting questions like-
CREATE TABLE flipkart_mobile_brands_scraped_data (
"brand" VARCHAR,
"model" VARCHAR,
"color" VARCHAR,
"memory" VARCHAR,
"storage" VARCHAR,
"rating" DOUBLE,
"selling_price" DOUBLE,
"original_price" DOUBLE
);CREATE TABLE flipkart_mobiles (
"brand" VARCHAR,
"model" VARCHAR,
"color" VARCHAR,
"memory" VARCHAR,
"storage" VARCHAR,
"rating" DOUBLE,
"selling_price" BIGINT,
"original_price" BIGINT
);Anyone who has the link will be able to view this.