R/data.R

#' Divvy data cleaned and formatted to include station usage statistics per
#' month since the start of the program, in terms of the number of rides, and
#' rides by classic or electric bike. Note that, due to data parsing, both
#' departing from, and arriving from, a station count as a station usage, so
#' all rides are counted twice.
#'
#' This package contains files corresponding to each month that the Divvy bike
#' program has been open.
#' @docType package
#' @name divvymos
#' @aliases divvymos divvymos-package
NULL

#' "June 2013"
#'
#' A data set containing the cleaned Divvy data for June 2013
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2013.zip}
#' @format A data frame with 111 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jun13"
#' "July 2013"
#'
#' A data set containing the cleaned Divvy data for July 2013
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2013.zip}
#' @format A data frame with 150 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jul13"
#' "August 2013"
#'
#' A data set containing the cleaned Divvy data for August 2013
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2013.zip}
#' @format A data frame with 220 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Aug13"
#' "September 2013"
#'
#' A data set containing the cleaned Divvy data for September 2013
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2013.zip}
#' @format A data frame with 287 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Sep13"
#' "October 2013"
#'
#' A data set containing the cleaned Divvy data for October 2013
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2013.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Oct13"
#' "November 2013"
#'
#' A data set containing the cleaned Divvy data for November 2013
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2013.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Nov13"
#' "December 2013"
#'
#' A data set containing the cleaned Divvy data for December 2013
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2013.zip}
#' @format A data frame with 299 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Dec13"
#' "January 2014"
#'
#' A data set containing the cleaned Divvy data for January 2014
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2014_Q1Q2.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jan14"
#' "February 2014"
#'
#' A data set containing the cleaned Divvy data for February 2014
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2014_Q1Q2.zip}
#' @format A data frame with 299 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Feb14"
#' "March 2014"
#'
#' A data set containing the cleaned Divvy data for March 2014
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2014_Q1Q2.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Mar14"
#' "April 2014"
#'
#' A data set containing the cleaned Divvy data for April 2014
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2014_Q1Q2.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Apr14"
#' "May 2014"
#'
#' A data set containing the cleaned Divvy data for May 2014
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2014_Q1Q2.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"May14"
#' "June 2014"
#'
#' A data set containing the cleaned Divvy data for June 2014
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2014_Q1Q2.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jun14"
#' "July 2014"
#'
#' A data set containing the cleaned Divvy data for July 2014
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2014_Q3Q4.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jul14"
#' "August 2014"
#'
#' A data set containing the cleaned Divvy data for August 2014
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2014_Q3Q4.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Aug14"
#' "September 2014"
#'
#' A data set containing the cleaned Divvy data for September 2014
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2014_Q3Q4.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Sep14"
#' "October 2014"
#'
#' A data set containing the cleaned Divvy data for October 2014
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2014_Q3Q4.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Oct14"
#' "November 2014"
#'
#' A data set containing the cleaned Divvy data for November 2014
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2014_Q3Q4.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Nov14"
#' "December 2014"
#'
#' A data set containing the cleaned Divvy data for December 2014
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Stations_Trips_2014_Q3Q4.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Dec14"
#' "January 2015"
#'
#' A data set containing the cleaned Divvy data for January 2015
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2015-Q1Q2.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jan15"
#' "February 2015"
#'
#' A data set containing the cleaned Divvy data for February 2015
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2015-Q1Q2.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Feb15"
#' "March 2015"
#'
#' A data set containing the cleaned Divvy data for March 2015
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2015-Q1Q2.zip}
#' @format A data frame with 300 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Mar15"
#' "April 2015"
#'
#' A data set containing the cleaned Divvy data for April 2015
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2015-Q1Q2.zip}
#' @format A data frame with 376 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Apr15"
#' "May 2015"
#'
#' A data set containing the cleaned Divvy data for May 2015
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2015-Q1Q2.zip}
#' @format A data frame with 469 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"May15"
#' "June 2015"
#'
#' A data set containing the cleaned Divvy data for June 2015
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2015-Q1Q2.zip}
#' @format A data frame with 470 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jun15"
#' "July 2015"
#'
#' A data set containing the cleaned Divvy data for July 2015
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2015_Q3Q4.zip}
#' @format A data frame with 474 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jul15"
#' "August 2015"
#'
#' A data set containing the cleaned Divvy data for August 2015
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2015_Q3Q4.zip}
#' @format A data frame with 475 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Aug15"
#' "September 2015"
#'
#' A data set containing the cleaned Divvy data for September 2015
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2015_Q3Q4.zip}
#' @format A data frame with 475 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Sep15"
#' "October 2015"
#'
#' A data set containing the cleaned Divvy data for October 2015
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2015_Q3Q4.zip}
#' @format A data frame with 475 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Oct15"
#' "November 2015"
#'
#' A data set containing the cleaned Divvy data for November 2015
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2015_Q3Q4.zip}
#' @format A data frame with 474 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Nov15"
#' "December 2015"
#'
#' A data set containing the cleaned Divvy data for December 2015
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2015_Q3Q4.zip}
#' @format A data frame with 471 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Dec15"
#' "January 2016"
#'
#' A data set containing the cleaned Divvy data for January 2016
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2016_Q1Q2.zip}
#' @format A data frame with 468 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jan16"
#' "February 2016"
#'
#' A data set containing the cleaned Divvy data for February 2016
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2016_Q1Q2.zip}
#' @format A data frame with 470 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Feb16"
#' "March 2016"
#'
#' A data set containing the cleaned Divvy data for March 2016
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2016_Q1Q2.zip}
#' @format A data frame with 471 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Mar16"
#' "April 2016"
#'
#' A data set containing the cleaned Divvy data for April 2016
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2016_Q1Q2.zip}
#' @format A data frame with 474 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Apr16"
#' "May 2016"
#'
#' A data set containing the cleaned Divvy data for May 2016
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2016_Q1Q2.zip}
#' @format A data frame with 475 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"May16"
#' "June 2016"
#'
#' A data set containing the cleaned Divvy data for June 2016
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2016_Q1Q2.zip}
#' @format A data frame with 526 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jun16"
#' "July 2016"
#'
#' A data set containing the cleaned Divvy data for July 2016
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2016_Q3Q4.zip}
#' @format A data frame with 567 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jul16"
#' "August 2016"
#'
#' A data set containing the cleaned Divvy data for August 2016
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2016_Q3Q4.zip}
#' @format A data frame with 577 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Aug16"
#' "September 2016"
#'
#' A data set containing the cleaned Divvy data for September 2016
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2016_Q3Q4.zip}
#' @format A data frame with 579 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Sep16"
#' "October 2016"
#'
#' A data set containing the cleaned Divvy data for October 2016
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2016_Q3Q4.zip}
#' @format A data frame with 575 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Oct16"
#' "November 2016"
#'
#' A data set containing the cleaned Divvy data for November 2016
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2016_Q3Q4.zip}
#' @format A data frame with 565 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Nov16"
#' "December 2016"
#'
#' A data set containing the cleaned Divvy data for December 2016
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2016_Q3Q4.zip}
#' @format A data frame with 540 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Dec16"
#' "January 2017"
#'
#' A data set containing the cleaned Divvy data for January 2017
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2017_Q1Q2.zip}
#' @format A data frame with 549 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jan17"
#' "February 2017"
#'
#' A data set containing the cleaned Divvy data for February 2017
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2017_Q1Q2.zip}
#' @format A data frame with 557 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Feb17"
#' "March 2017"
#'
#' A data set containing the cleaned Divvy data for March 2017
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2017_Q1Q2.zip}
#' @format A data frame with 557 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Mar17"
#' "April 2017"
#'
#' A data set containing the cleaned Divvy data for April 2017
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2017_Q1Q2.zip}
#' @format A data frame with 564 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Apr17"
#' "May 2017"
#'
#' A data set containing the cleaned Divvy data for May 2017
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2017_Q1Q2.zip}
#' @format A data frame with 569 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"May17"
#' "June 2017"
#'
#' A data set containing the cleaned Divvy data for June 2017
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2017_Q1Q2.zip}
#' @format A data frame with 549 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jun17"
#' "July 2017"
#'
#' A data set containing the cleaned Divvy data for July 2017
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2017_Q3Q4.zip}
#' @format A data frame with 567 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jul17"
#' "August 2017"
#'
#' A data set containing the cleaned Divvy data for August 2017
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2017_Q3Q4.zip}
#' @format A data frame with 569 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Aug17"
#' "September 2017"
#'
#' A data set containing the cleaned Divvy data for September 2017
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2017_Q3Q4.zip}
#' @format A data frame with 567 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Sep17"
#' "October 2017"
#'
#' A data set containing the cleaned Divvy data for October 2017
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2017_Q3Q4.zip}
#' @format A data frame with 566 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Oct17"
#' "November 2017"
#'
#' A data set containing the cleaned Divvy data for November 2017
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2017_Q3Q4.zip}
#' @format A data frame with 563 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Nov17"
#' "December 2017"
#'
#' A data set containing the cleaned Divvy data for December 2017
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2017_Q3Q4.zip}
#' @format A data frame with 554 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Dec17"
#' "January 2018"
#'
#' A data set containing the cleaned Divvy data for January 2018
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2018_Q1.zip}
#' @format A data frame with 558 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jan18"
#' "February 2018"
#'
#' A data set containing the cleaned Divvy data for February 2018
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2018_Q1.zip}
#' @format A data frame with 540 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Feb18"
#' "March 2018"
#'
#' A data set containing the cleaned Divvy data for March 2018
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2018_Q1.zip}
#' @format A data frame with 552 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Mar18"
#' "April 2018"
#'
#' A data set containing the cleaned Divvy data for April 2018
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2018_Q2.zip}
#' @format A data frame with 561 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Apr18"
#' "May 2018"
#'
#' A data set containing the cleaned Divvy data for May 2018
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2018_Q2.zip}
#' @format A data frame with 573 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"May18"
#' "June 2018"
#'
#' A data set containing the cleaned Divvy data for June 2018
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2018_Q2.zip}
#' @format A data frame with 577 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jun18"
#' "July 2018"
#'
#' A data set containing the cleaned Divvy data for July 2018
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2018_Q3.zip}
#' @format A data frame with 579 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jul18"
#' "August 2018"
#'
#' A data set containing the cleaned Divvy data for August 2018
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2018_Q3.zip}
#' @format A data frame with 577 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Aug18"
#' "September 2018"
#'
#' A data set containing the cleaned Divvy data for September 2018
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2018_Q3.zip}
#' @format A data frame with 584 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Sep18"
#' "October 2018"
#'
#' A data set containing the cleaned Divvy data for October 2018
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2018_Q4.zip}
#' @format A data frame with 597 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Oct18"
#' "November 2018"
#'
#' A data set containing the cleaned Divvy data for November 2018
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2018_Q4.zip}
#' @format A data frame with 592 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Nov18"
#' "December 2018"
#'
#' A data set containing the cleaned Divvy data for December 2018
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2018_Q4.zip}
#' @format A data frame with 583 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Dec18"
#' "January 2019"
#'
#' A data set containing the cleaned Divvy data for January 2019
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2019_Q1.zip}
#' @format A data frame with 571 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jan19"
#' "February 2019"
#'
#' A data set containing the cleaned Divvy data for February 2019
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2019_Q1.zip}
#' @format A data frame with 565 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Feb19"
#' "March 2019"
#'
#' A data set containing the cleaned Divvy data for March 2019
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2019_Q1.zip}
#' @format A data frame with 597 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Mar19"

#' "April 2019"
#'
#' A data set containing the cleaned Divvy data for April 2019
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2019_Q2.zip}
#' @format A data frame with 603 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Apr19"
#' "May 2019"
#'
#' A data set containing the cleaned Divvy data for May 2019
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2019_Q2.zip}
#' @format A data frame with 611 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"May19"
#' "June 2019"
#'
#' A data set containing the cleaned Divvy data for June 2019
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2019_Q2.zip}
#' @format A data frame with 607 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jun19"
#' "July 2019"
#'
#' A data set containing the cleaned Divvy data for July 2019
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2019_Q3.zip}
#' @format A data frame with 610 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jul19"
#' "August 2019"
#'
#' A data set containing the cleaned Divvy data for August 2019
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2019_Q3.zip}
#' @format A data frame with 612 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Aug19"
#' "September 2019"
#'
#' A data set containing the cleaned Divvy data for September 2019
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2019_Q3.zip}
#' @format A data frame with 609 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Sep19"
#' "October 2019"
#'
#' A data set containing the cleaned Divvy data for October 2019
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2019_Q4.zip}
#' @format A data frame with 607 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Oct19"
#' "November 2019"
#'
#' A data set containing the cleaned Divvy data for November 2019
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2019_Q4.zip}
#' @format A data frame with 598 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Nov19"
#' "December 2019"
#'
#' A data set containing the cleaned Divvy data for December 2019
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2019_Q4.zip}
#' @format A data frame with 596 observations of 8 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Dec19"
#' "January 2020"
#'
#' A data set containing the cleaned Divvy data for January 2020
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2020_Q1.zip}
#' @format A data frame with 593 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jan20"
#' "February 2020"
#'
#' A data set containing the cleaned Divvy data for January 2020
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2020_Q1.zip}
#' @format A data frame with 600 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Feb20"
#' "March 2020"
#'
#' A data set containing the cleaned Divvy data for March 2020
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/Divvy_Trips_2020_Q1.zip}
#' @format A data frame with 600 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Mar20"
#' "April 2020"
#'
#' A data set containing the cleaned Divvy data for April 2020
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202004-divvy-tripdata.zip}
#' @format A data frame with 608 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Apr20"
#' "May 2020"
#'
#' A data set containing the cleaned Divvy data for May 2020
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202005-divvy-tripdata.zip}
#' @format A data frame with 612 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"May20"
#' "June 2020"
#'
#' A data set containing the cleaned Divvy data for June 2020
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202006-divvy-tripdata.zip}
#' @format A data frame with 613 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jun20"
#' "July 2020"
#'
#' A data set containing the cleaned Divvy data for July 2020
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202007-divvy-tripdata.zip}
#' @format A data frame with 620 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jul20"
#' "August 2020"
#'
#' A data set containing the cleaned Divvy data for August 2020
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202008-divvy-tripdata.zip}
#' @format A data frame with 634 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Aug20"
#' "September 2020"
#'
#' A data set containing the cleaned Divvy data for September 2020
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202009-divvy-tripdata.zip}
#' @format A data frame with 657 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Sep20"
#' "October 2020"
#'
#' A data set containing the cleaned Divvy data for October 2020
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202010-divvy-tripdata.zip}
#' @format A data frame with 608 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Oct20"
#' "November 2020"
#'
#' A data set containing the cleaned Divvy data for November 2020
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202011-divvy-tripdata.zip}
#' @format A data frame with 663 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Nov20"
#' "December 2020"
#'
#' A data set containing the cleaned Divvy data for December 2020
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202012-divvy-tripdata.zip}
#' @format A data frame with 663 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Dec20"
#' "January 2021"
#'
#' A data set containing the cleaned Divvy data for January 2021
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202101-divvy-tripdata.zip}
#' @format A data frame with 644 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jan21"
#' "February 2021"
#'
#' A data set containing the cleaned Divvy data for February 2021
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202102-divvy-tripdata.zip}
#' @format A data frame with 606 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Feb21"
#' "March 2021"
#'
#' A data set containing the cleaned Divvy data for March 2021
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202103-divvy-tripdata.zip}
#' @format A data frame with 678 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Mar21"
#' "April 2021"
#'
#' A data set containing the cleaned Divvy data for April 2021
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202104-divvy-tripdata.zip}
#' @format A data frame with 685 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Apr21"
#' "May 2021"
#'
#' A data set containing the cleaned Divvy data for May 2021
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202105-divvy-tripdata.zip}
#' @format A data frame with 687 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"May21"
#' "June 2021"
#'
#' A data set containing the cleaned Divvy data for June 2021
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202106-divvy-tripdata.zip}
#' @format A data frame with 691 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"JUn21"
#' "July 2021"
#'
#' A data set containing the cleaned Divvy data for July 2021
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202107-divvy-tripdata.zip}
#' @format A data frame with 712 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jul21"
#' "August 2021"
#'
#' A data set containing the cleaned Divvy data for August 2021
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202108-divvy-tripdata.zip}
#' @format A data frame with 729 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Aug21"
#' "September 2021"
#'
#' A data set containing the cleaned Divvy data for September 2021
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202109-divvy-tripdata.zip}
#' @format A data frame with 759 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Sep21"
#' "October 2021"
#'
#' A data set containing the cleaned Divvy data for October 2021
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202110-divvy-tripdata.zip}
#' @format A data frame with 794 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Oct21"
#' "November 2021"
#'
#' A data set containing the cleaned Divvy data for November 2021
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202111-divvy-tripdata.zip}
#' @format A data frame with 821 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Nov21"
#' "December 2021"
#'
#' A data set containing the cleaned Divvy data for December 2021
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202112-divvy-tripdata.zip}
#' @format A data frame with 817 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Dec21"
#' "January 2022"
#'
#' A data set containing the cleaned Divvy data for January 2022
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202201-divvy-tripdata.zip}
#' @format A data frame with 778 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Jan22"
#' "February 2022"
#'
#' A data set containing the cleaned Divvy data for February 2022
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202202-divvy-tripdata.zip}
#' @format A data frame with 800 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Feb22"
#' "March 2022"
#'
#' A data set containing the cleaned Divvy data for March 2022
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202203-divvy-tripdata.zip}
#' @format A data frame with 844 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Mar22"
#' "April 2022"
#'
#' A data set containing the cleaned Divvy data for April 2022
#'
#' @source \url{https://divvy-tripdata.s3.amazonaws.com/202204-divvy-tripdata.zip}
#' @format A data frame with 843 observations of 14 variables
#' \describe{
#'   \item{X}{the row number, automatically generated by exporting the CSV}
#'   \item{station_id}{the station ID number, from the Divvy program}
#'   \item{station_name}{the station name, from the Divvy program}
#'   \item{lat}{the station latitude}
#'   \item{long}{the station longitude}
#'   \item{start_n}{the number of rides that start at the given station}
#'   \item{end_n}{the number of rides that end at the given station}
#'   \item{e_start_n}{the number of E-bike rides that start at the given station}
#'   \item{e_end_n}{the number of E-bike rides that end at the given station}
#'   \item{c_start_n}{the number of classic bike rides that start at the given station}
#'   \item{c_end_n}{the number of classic bike rides that end at the given station}
#'   \item{total}{the total number of station rides in the given month}
#'   \item{electric}{the total number of station rides on E-bikes in the given month}
#'   \item{classic}{the total number of station rides on classic bikes in the given month}
#' }
#'
"Apr22"
ccebra/Divvy-Data documentation built on June 12, 2022, 1:50 a.m.