Room-Occupancy-Vacancy
Predict whether or not a room is occupied by any person.
@kaggle.shelvigarg_room_occupancy
Predict whether or not a room is occupied by any person.
@kaggle.shelvigarg_room_occupancy
Experimental data was used for classifying whether the room is occupied or vacant by using Environmental Variables of the room: Temperature, humidity, Light and CO2, etc.
This dataset contains 5 features and a target variable:
Temperature
Humidity
Light
Carbon dioxide(CO2)
Target Variable:
1-if there is a chance of room occupancy.
0-No chances of room occupancy
Inspiration
Predict whether or not the room is empty.
CREATE TABLE room_occupancy (
"temperature" DOUBLE,
"humidity" DOUBLE,
"light" DOUBLE,
"co2" DOUBLE,
"humidityratio" DOUBLE,
"occupancy" BIGINT
);Anyone who has the link will be able to view this.