Baselight

Bike Rentals Data - UCI 🚲

Bike Rental Data w/ train and test

@kaggle.joanpau_bike_rentals_study_uci

P1 Train
@kaggle.joanpau_bike_rentals_study_uci.p1_train

  • 98.19 KB
  • 7689 rows
  • 12 columns
id

Id

year

Year

hour

Hour

season

Season

holiday

Holiday

workingday

Workingday

weather

Weather

temp

Temp

atemp

Atemp

humidity

Humidity

windspeed

Windspeed

count

Count

32012233223.7827.2757311.0014133
4201183127.8831.8257132
52012211120.524.245919
720112031325.4228.798319.999558
820111731326.2428.7989285
920111921234.4437.123922.0028326
1020122321223.7827.275787.001575
1120112231125.4227.27594160
1220111431135.2641.6655319.0012134
132011131218.8622.7257219.999594

CREATE TABLE p1_train (
  "id" BIGINT,
  "year" BIGINT,
  "hour" BIGINT,
  "season" BIGINT,
  "holiday" BIGINT,
  "workingday" BIGINT,
  "weather" BIGINT,
  "temp" DOUBLE,
  "atemp" DOUBLE,
  "humidity" BIGINT,
  "windspeed" DOUBLE,
  "count" BIGINT
);

Share link

Anyone who has the link will be able to view this.