Crowdedness At The Campus Gym
Number of attendees every 10 minutes from the last year in the gym
@kaggle.nsrose7224_crowdedness_at_the_campus_gym
Number of attendees every 10 minutes from the last year in the gym
@kaggle.nsrose7224_crowdedness_at_the_campus_gym
When is my university campus gym least crowded, so I know when to work out? We measured how many people were in this gym once every 10 minutes over the last year. We want to be able to predict how crowded the gym will be in the future.
The dataset consists of 26,000 people counts (about every 10 minutes) over the last year. In addition, I gathered extra info including weather and semester-specific information that might affect how crowded it is. The label is the number of people, which I'd like to predict given some subset of the features.
Label:
Features:
This data was collected with the consent of the university and the gym in question.
CREATE TABLE data (
"number_people" BIGINT,
"date" VARCHAR,
"timestamp" BIGINT,
"day_of_week" BIGINT,
"is_weekend" BIGINT,
"is_holiday" BIGINT,
"temperature" DOUBLE,
"is_start_of_semester" BIGINT,
"is_during_semester" BIGINT,
"month" BIGINT,
"hour" BIGINT
);Anyone who has the link will be able to view this.