Bike Users Predict
regression problem data set
@kaggle.kukuroo3_bike_users_predict
regression problem data set
@kaggle.kukuroo3_bike_users_predict
Context
This dataset was taken from link and separated into competition format.
y_test for the test data is provided in the form of a function.
CREATE TABLE test (
"id" BIGINT,
"dteday" TIMESTAMP,
"hr" BIGINT,
"weathersit" BIGINT,
"temp" DOUBLE,
"atemp" DOUBLE,
"hum" DOUBLE,
"windspeed" DOUBLE,
"casual" BIGINT
);CREATE TABLE train (
"unnamed_0" BIGINT -- Unnamed: 0,
"dteday" TIMESTAMP,
"hr" BIGINT,
"weathersit" BIGINT,
"temp" DOUBLE,
"atemp" DOUBLE,
"hum" DOUBLE,
"windspeed" DOUBLE,
"casual" BIGINT,
"cnt" BIGINT
);Anyone who has the link will be able to view this.