India Food Price (2000 - 2020)
Predict 2019-2020 Onions Price
@kaggle.kukuroo3_india_food_price_2000_2020
Predict 2019-2020 Onions Price
@kaggle.kukuroo3_india_food_price_2000_2020
This dataset is data showing the price of 7 food ingredients in India as a time series.
It represents the monthly price (INR unit) from 2000 to 2020.
The problem to be solved is to predict the onion price from 2019.
I have added the correct answer to "result.csv" separately.
source : link and post-processing of Data
CREATE TABLE india (
"date" VARCHAR,
"chickpeas" DOUBLE,
"oil_mustard" DOUBLE -- Oil (mustard),
"potatoes" DOUBLE,
"rice" DOUBLE,
"sugar" DOUBLE,
"wheat" DOUBLE,
"onions" DOUBLE
);CREATE TABLE result (
"date" VARCHAR,
"onions" DOUBLE
);Anyone who has the link will be able to view this.