Daily Climate Time Series Data
Daily climate data in the city of Delhi from 2013 to 2017
@kaggle.sumanthvrao_daily_climate_time_series_data
Daily climate data in the city of Delhi from 2013 to 2017
@kaggle.sumanthvrao_daily_climate_time_series_data
The Dataset is fully dedicated for the developers who want to train the model on Weather Forecasting for Indian climate. This dataset provides data from 1st January 2013 to 24th April 2017 in the city of Delhi, India. The 4 parameters here are
meantemp, humidity, wind_speed, meanpressure.
This dataset has been collected from Weather Undergroud API. Dataset ownership and credit goes to them.
Assignment 4 must be submitted by October 19, 2019 (10:00 PM). Any kernel published after this deadline will be evaluated for only 50% of the total marks.
This dataset was developed as a part Assignment 4 of Data Analytics Course, 2019 at PES University, Bangalore.
CREATE TABLE dailydelhiclimatetest (
"date" TIMESTAMP,
"meantemp" DOUBLE,
"humidity" DOUBLE,
"wind_speed" DOUBLE,
"meanpressure" DOUBLE
);CREATE TABLE dailydelhiclimatetrain (
"date" TIMESTAMP,
"meantemp" DOUBLE,
"humidity" DOUBLE,
"wind_speed" DOUBLE,
"meanpressure" DOUBLE
);Anyone who has the link will be able to view this.