Estimating Occupancy Levels In Enclosed Spaces
Estimate occupancy based on CO2
@kaggle.thedevastator_estimating_occupancy_levels_in_enclosed_spaces
Estimate occupancy based on CO2
@kaggle.thedevastator_estimating_occupancy_levels_in_enclosed_spaces
Each data record is of the following format
For this exercise, we have a test data set for two weeks for which we only have CO2 concentration and temperature information. The goal is to map this CO2 concentration and temperature to an occupancy variable.
Each data record is of the following format
CREATE TABLE datatest (
"date" TIMESTAMP,
"temperature" DOUBLE,
"humidity" DOUBLE,
"light" DOUBLE,
"co2" DOUBLE,
"humidityratio" DOUBLE,
"occupancy" BIGINT
);CREATE TABLE datatest2 (
"date" TIMESTAMP,
"temperature" DOUBLE,
"humidity" DOUBLE,
"light" DOUBLE,
"co2" DOUBLE,
"humidityratio" DOUBLE,
"occupancy" BIGINT
);CREATE TABLE datatraining (
"date" TIMESTAMP,
"temperature" DOUBLE,
"humidity" DOUBLE,
"light" DOUBLE,
"co2" DOUBLE,
"humidityratio" DOUBLE,
"occupancy" BIGINT
);Anyone who has the link will be able to view this.