Estimating Occupancy Levels in Enclosed Spaces
Estimate occupancy based on CO2
About the Dataset
Description of Data
Each data record is of the following format
- timestamp: the timestamp of the sample, where the first observation is on Aug 1, 2013
- CO2: the concentration of CO2 in parts-per-million (ppm)
- humidity: the ambient humidity as a percentage
- temperature: the ambient temperature in Celcius
- occupancy: the target value, i.e., if the room was occupied or not
- light: the amount of light in the room
- day: the day of the week that the sample was taken
- hour: the hour of the day that the sample was taken
- week: the week number that the sample was taken
Mapping Indoor CO2 to Occupancy
Outline
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.
Description of Data
Each data record is of the following format
- timestamp: the timestamp of the sample, where the first observation is on Jan 2, 2014
- CO2: the concentration of CO2 in parts-per-million (ppm)
- temperature: the ambient temperature in Celcius
Using the Training Data
- The training data consists of observations over multiple weeks, which you can use to build your model.
- For example, you could assume that there is no change in CO2 levels with the season, or that they are different depending on the month, week, day of the week, time of day.
- You can also assume that the CO2 levels at a specific time and day are independent of when they were measured. For example, if there is a certain CO2 concentration at 8am on a Wednesday, it should be the same in 2013 and in 2014, etc.
- You can assume that there is a temperature effect on CO2 levels, but that they are independent of occupancy, i.e., it is reasonable to assume that people produce a similar amount of CO2 regardless of the room temperature.