Temperature And Humidity
Home temperature and humidity monitoring data in 3 rooms in Strasbourg, France
@kaggle.alexflorentin_temperature_and_humidity
Home temperature and humidity monitoring data in 3 rooms in Strasbourg, France
@kaggle.alexflorentin_temperature_and_humidity
A few month ago, i stared collecting my appartement temperature and humidity data.
I saved everything in order to try to predict home temperature with outside temperature forecast.
There are some data missing and some interferences.
I live in a 73 square meters flat with 3 roomates.
We can be up to 6 in the appartement if people are coming to visit us.
We used a portable AC some days during the summer.
We tend to open windows at night during summer.
We have 2 gaming pc in the 'bureau' so temperatures are influenced by that when we are gaming.
CREATE TABLE home_temperature_and_humidity_smoothed_filled (
"timestamp" TIMESTAMP,
"temperature_salon" DOUBLE,
"humidity_salon" DOUBLE,
"air_salon" DOUBLE,
"temperature_chambre" DOUBLE,
"humidity_chambre" DOUBLE,
"air_chambre" DOUBLE,
"temperature_bureau" DOUBLE,
"humidity_bureau" DOUBLE,
"air_bureau" DOUBLE,
"temperature_exterieur" DOUBLE,
"humidity_exterieur" DOUBLE,
"air_exterieur" DOUBLE
);
Anyone who has the link will be able to view this.