Data from MN niceride in 2018 including one row for each trip excluding those less than one minute and more than 5 hours, trips to/from test stations at warehouses, or taken by staff servicing and inspecting the system.

data(nice_ride_2018)

Format

A data frame with 412423 rows and 16 variables:

tripduration

length of trip, seconds

start_datetime

start time and date

end_datetime

end time and date

start_station_id

none if dockless ride

start_station_name

none if dockless ride

start_station_latitude

start_station_longitude

end_station_id

none if dockless ride

end_station_name

none if dockless ride

end_station_latitude

end_station_longitude

bikeid

usertype

Customer = Single ride or Day pass; Subscriber = Annual or Monthly member

birth_year

Birth year of rider

gender

0 = unknown; 1 = male, 2 = female

bike_type

Classic or Dockless

Source

Index of bucket "niceride-data"

References

MN niceride https://www.niceridemn.com/system-data

Examples

data(nice_ride_2018) barplot(table(nice_ride_2018$usertype), main="User Types in the MN Niceride System", xlab="")