Bike Sharing System - Washington DC
predict the total count of bikes rented during each hour
@kaggle.itssuru_bike_sharing_system_washington_dc
predict the total count of bikes rented during each hour
@kaggle.itssuru_bike_sharing_system_washington_dc
CREATE TABLE test_bikes (
"datetime" TIMESTAMP,
"season" BIGINT,
"holiday" BIGINT,
"workingday" BIGINT,
"weather" BIGINT,
"temp" DOUBLE,
"atemp" DOUBLE,
"humidity" BIGINT,
"windspeed" DOUBLE
);
CREATE TABLE train_bikes (
"datetime" TIMESTAMP,
"season" BIGINT,
"holiday" BIGINT,
"workingday" BIGINT,
"weather" BIGINT,
"temp" DOUBLE,
"atemp" DOUBLE,
"humidity" BIGINT,
"windspeed" DOUBLE,
"casual" BIGINT,
"registered" BIGINT,
"count" BIGINT
);
Anyone who has the link will be able to view this.