Flipkart Product Dataset
e-Commerce Fashion product Dataset scrapped from Flipkart and Amazone
@kaggle.san2deep_flipkart_product_dataset
e-Commerce Fashion product Dataset scrapped from Flipkart and Amazone
@kaggle.san2deep_flipkart_product_dataset
This is a real dataset collected from Ecommerce company Flipkart and Amazone. This dataset contain fashion related product details such as ID, Rating, Product-details and many more.
This dataset is helpful for making prediction for upcoming sale discount.
you can also predict the satisfaction of customer.
CREATE TABLE test (
"id" BIGINT,
"title" VARCHAR,
"rating" DOUBLE,
"maincateg" VARCHAR,
"platform" VARCHAR,
"actprice1" BIGINT,
"norating1" BIGINT,
"noreviews1" BIGINT,
"star_5f" DOUBLE,
"star_4f" BIGINT,
"star_3f" BIGINT,
"star_2f" BIGINT,
"star_1f" DOUBLE,
"fulfilled1" BIGINT
);
CREATE TABLE train (
"id" BIGINT,
"title" VARCHAR,
"rating" DOUBLE,
"maincateg" VARCHAR,
"platform" VARCHAR,
"price1" BIGINT,
"actprice1" BIGINT,
"offer" VARCHAR -- Offer %,
"norating1" DOUBLE,
"noreviews1" DOUBLE,
"star_5f" DOUBLE,
"star_4f" DOUBLE,
"star_3f" DOUBLE,
"star_2f" BIGINT,
"star_1f" BIGINT,
"fulfilled1" BIGINT
);
Anyone who has the link will be able to view this.