Retail Prices Of Commodities In India
Retail prices of food and non-food commodities in India between 2001 and 2021
@kaggle.kk9969_retail_prices_of_commodities_in_india
Retail prices of food and non-food commodities in India between 2001 and 2021
@kaggle.kk9969_retail_prices_of_commodities_in_india
In the light of the recent surge in prices of petrol, prices of several day-to-day commodities have increased (or are expected to increase in the future). Let us take a deep dive into the historical price variation of different commodities in India.
The dataset contains information about retail prices of commodities like fruits, vegetables, clothes, etc. The data captures weekly as well as monthly prices across different states and important/major districts/market centers.
The commodities have generalized categories and do not contain brand information. A lot of missing data so happy preprocessing : )
Sources:
A few interesting questions can be answered.
Also check:
CREATE TABLE monthly_food_retail_prices (
"state" VARCHAR,
"centre" VARCHAR,
"commodity" VARCHAR,
"variety" VARCHAR,
"unit" VARCHAR,
"category" VARCHAR,
"date" VARCHAR,
"retail_price" DOUBLE
);CREATE TABLE monthly_non_food_retail_prices (
"state" VARCHAR,
"centre" VARCHAR,
"commodity" VARCHAR,
"variety" VARCHAR,
"unit" VARCHAR,
"category" VARCHAR,
"date" VARCHAR,
"retail_price" DOUBLE
);CREATE TABLE weekly_food_retail_prices (
"state" VARCHAR,
"centre" VARCHAR,
"commodity" VARCHAR,
"variety" VARCHAR,
"unit" VARCHAR,
"category" VARCHAR,
"date" TIMESTAMP,
"retail_price" DOUBLE
);CREATE TABLE weekly_non_food_retail_prices (
"state" VARCHAR,
"centre" VARCHAR,
"commodity" VARCHAR,
"variety" VARCHAR,
"unit" VARCHAR,
"category" VARCHAR,
"date" TIMESTAMP,
"retail_price" DOUBLE
);Anyone who has the link will be able to view this.