Stockholm Mean Air Temperature [Time Series]
Monthly Mean Air Temperature in Stockholm between 1980-2020
@kaggle.andreaspalmgren_stockholm_mean_air_temperature_time_series
Monthly Mean Air Temperature in Stockholm between 1980-2020
@kaggle.andreaspalmgren_stockholm_mean_air_temperature_time_series
The dataset contains monthly mean air temperature in Stockholm, Sweden. With a time period of 1980-2020, the last four years has been split into a test set.
Temperature is given in °C rounded to one decimal.
Anders Moberg (2021) Stockholm Historical Weather Observations — Monthly mean air temperatures since 1756. Dataset version 3. Bolin Centre Database. https://doi.org/10.17043/stockholm-historical-monthly-temperature-3
CREATE TABLE test_stockholm_monthly_mean_temperature (
"year" BIGINT,
"jan" DOUBLE,
"feb" DOUBLE,
"mar" DOUBLE,
"apr" DOUBLE,
"may" DOUBLE,
"jun" DOUBLE,
"jul" DOUBLE,
"aug" DOUBLE,
"sep" DOUBLE,
"oct" DOUBLE,
"nov" DOUBLE,
"dec" DOUBLE
);CREATE TABLE train_stockholm_monthly_mean_temperature (
"year" BIGINT,
"jan" DOUBLE,
"feb" DOUBLE,
"mar" DOUBLE,
"apr" DOUBLE,
"may" DOUBLE,
"jun" DOUBLE,
"jul" DOUBLE,
"aug" DOUBLE,
"sep" DOUBLE,
"oct" DOUBLE,
"nov" DOUBLE,
"dec" DOUBLE
);Anyone who has the link will be able to view this.