Rainfall-prediction-dataset
This is the dataset used for Kaggle Competition S5E3
@kaggle.karthikeyananumalla_rainfall_prediction_15
This is the dataset used for Kaggle Competition S5E3
@kaggle.karthikeyananumalla_rainfall_prediction_15
Feel free to use the original dataset both to explore differences as well as to see whether incorporating the original in training improves model performance. This dataset contains the data whether the rain will occur or not based on certain number of atmospheric features.
CREATE TABLE test_data (
"id" BIGINT,
"day" BIGINT,
"pressure" DOUBLE,
"maxtemp" DOUBLE,
"temparature" DOUBLE,
"mintemp" DOUBLE,
"dewpoint" DOUBLE,
"humidity" DOUBLE,
"cloud" DOUBLE,
"sunshine" DOUBLE,
"winddirection" DOUBLE,
"windspeed" DOUBLE
);
CREATE TABLE train_data (
"day" BIGINT,
"pressure" DOUBLE,
"maxtemp" DOUBLE,
"temparature" DOUBLE,
"mintemp" DOUBLE,
"dewpoint" DOUBLE,
"humidity" DOUBLE,
"cloud" DOUBLE,
"sunshine" DOUBLE,
"winddirection" DOUBLE,
"windspeed" DOUBLE,
"rainfall" BIGINT
);
Anyone who has the link will be able to view this.