Rainfall Dataset For Simple Time Series Analysis
Time Series Analysis
@kaggle.sujithmandala_rainfall_dataset_for_simple_time_series_analysis
Time Series Analysis
@kaggle.sujithmandala_rainfall_dataset_for_simple_time_series_analysis
This dataset contains daily rainfall measurements (in millimeters) for the year 2022. The data spans from January 1, 2022, to July 3, 2022, covering a total of 184 days. The dataset can be used for various machine learning tasks, such as time series forecasting, pattern recognition, or anomaly detection related to rainfall patterns.
Column Descriptors:
date (date):
Description: The date of the rainfall measurement in the format YYYY-MM-DD.
Example: 2022-01-01
rainfall (float):
Description: The amount of rainfall recorded on the corresponding date, measured in millimeters (mm).
Example: 12.5
Range: The rainfall values range from 0.0 mm (no rainfall) to 22.4 mm (the maximum recorded value in the dataset).
Missing values: There are no missing values in this column.
CREATE TABLE rainfall (
"date" TIMESTAMP,
"rainfall" DOUBLE
);
Anyone who has the link will be able to view this.