Last updated: 2018-04-14
workflowr checks: (Click a bullet for more information) ✔ R Markdown file: up-to-date
Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.
✔ Environment: empty
Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.
✔ Seed:
set.seed(1)
The command set.seed(1)
was run prior to running the code in the R Markdown file. Setting a seed ensures that any results that rely on randomness, e.g. subsampling or permutations, are reproducible.
✔ Session information: recorded
Great job! Recording the operating system, R version, and package versions is critical for reproducibility.
✔ Repository version: de31b24
wflow_publish
or wflow_git_commit
). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:
Ignored files:
Ignored: .DS_Store
Ignored: analysis/.DS_Store
Ignored: data/Divvy_Stations_2016_Q1Q2.csv
Ignored: data/Divvy_Stations_2016_Q3.csv
Ignored: data/Divvy_Stations_2016_Q4.csv
Ignored: data/Divvy_Trips_2016_04.csv
Ignored: data/Divvy_Trips_2016_05.csv
Ignored: data/Divvy_Trips_2016_06.csv
Ignored: data/Divvy_Trips_2016_Q1.csv
Ignored: data/Divvy_Trips_2016_Q3.csv
Ignored: data/Divvy_Trips_2016_Q4.csv
Ignored: data/README.txt
Ignored: data/data.tar.gz
Ignored: docs/.DS_Store
Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.
File | Version | Author | Date | Message |
---|---|---|---|---|
Rmd | de31b24 | Peter Carbonetto | 2018-04-14 | wflow_publish(c(“station-map.Rmd”, “seasonal-trends.Rmd”, |
Rmd | f163fe4 | Peter Carbonetto | 2018-04-14 | Updates for new workflowr version, v0.11.0.9000. |
html | f163fe4 | Peter Carbonetto | 2018-04-14 | Updates for new workflowr version, v0.11.0.9000. |
html | 51163d7 | Peter Carbonetto | 2018-03-12 | Ran wflow_publish(“*.Rmd“) with version v0.11.0 of workflowr. |
html | ab9176e | Peter Carbonetto | 2018-03-09 | Added code_hiding to the analysis R Markdown files. |
html | b32e833 | Peter Carbonetto | 2018-01-18 | Re-built all webpages using workflowr v0.1.0. |
html | 0401587 | Peter Carbonetto | 2017-11-16 | Updated license.html, setup.html, station-map.html and |
Rmd | 9463eb6 | Peter Carbonetto | 2017-11-16 | wflow_publish(c(“setup.Rmd”, “license.Rmd”, “time-of-day-trends.Rmd”, |
Rmd | 6b9ddf1 | Peter Carbonetto | 2017-08-02 | Added header with between-section spacing adjustment, and removed <br> tags from R Markdown files. |
Rmd | c6e8686 | Peter Carbonetto | 2017-07-31 | wflow_publish(Sys.glob(“*.Rmd“)) |
Rmd | 0976f2d | Peter Carbonetto | 2017-07-24 | Minor edit. |
html | 10193ae | Peter Carbonetto | 2017-07-24 | Build site. |
Rmd | bfb87df | Peter Carbonetto | 2017-07-24 | Added math formula example in time-of-day-trends.Rmd, and fixed |
html | b1fe78a | Peter Carbonetto | 2017-07-24 | Reverted MathJax source. |
html | af6b9be | Peter Carbonetto | 2017-07-24 | More testing of local MathJax. |
html | cbf531a | Peter Carbonetto | 2017-07-24 | Testing local MathJax files. |
html | abf5116 | Peter Carbonetto | 2017-07-24 | Build site. |
Rmd | 795b214 | Peter Carbonetto | 2017-07-24 | Added math formulae to time-of-day trends .Rmd file. |
html | 727b8d9 | Peter Carbonetto | 2017-07-13 | Re-built all the analysis files; wflow_publish(Sys.glob(“*.Rmd“)). |
Rmd | 6d02ffc | Peter Carbonetto | 2017-07-13 | Made a dozen or so small adjustments to the .Rmd files. |
html | 597355d | Peter Carbonetto | 2017-07-07 | Ran wflow_publish(c(index.Rmd,first-glance.Rmd,station-map.Rmd,time-of-day-trends.Rmd)). |
Rmd | f7da4f6 | Peter Carbonetto | 2017-07-07 | Fixed a broken link, and made a bunch of small revisions to the notebooks. |
html | 2431e84 | Peter Carbonetto | 2017-07-06 | wflow_publish(time-of-day-trends.Rmd) |
Rmd | c8f7e10 | Peter Carbonetto | 2017-07-06 | Implemented first draft of seasonal trends notebook. |
html | eb228f2 | Peter Carbonetto | 2017-07-06 | A bunch of small revisions to time-of-day trends notebook. |
Rmd | 426d238 | Peter Carbonetto | 2017-07-06 | wflow_publish(“time-of-day-trends.Rmd”) |
html | 9a36e9e | Peter Carbonetto | 2017-07-06 | Build site. |
Rmd | e67cefb | Peter Carbonetto | 2017-07-06 | Added text to time-of-day-trends.Rmd and fixed up figures a bit. |
html | 52f577a | Peter Carbonetto | 2017-07-06 | Build site. |
Rmd | f86e267 | Peter Carbonetto | 2017-07-06 | wflow_publish(“time-of-day-trends.Rmd”) |
Rmd | 9088b6a | Peter Carbonetto | 2017-07-06 | Build site. |
Here we use the Divvy trip data to examine biking trends over the course of a typical day in Chicago.
I begin by loading a few packages, as well as some additional functions I wrote for this project.
library(data.table)
library(ggplot2)
source("../code/functions.R")
Following my earlier steps, I use function read.divvy.data
to read the trip and station data from the CSV files.
divvy <- read.divvy.data()
# Reading station data from ../data/Divvy_Stations_2016_Q4.csv.
# Reading trip data from ../data/Divvy_Trips_2016_Q1.csv.
# Reading trip data from ../data/Divvy_Trips_2016_04.csv.
# Reading trip data from ../data/Divvy_Trips_2016_05.csv.
# Reading trip data from ../data/Divvy_Trips_2016_06.csv.
# Reading trip data from ../data/Divvy_Trips_2016_Q3.csv.
# Reading trip data from ../data/Divvy_Trips_2016_Q4.csv.
# Preparing Divvy data for analysis in R.
# Converting dates and times.
To make it easier to compile statistics by time of day, I convert the “start hour” column to a factor.
divvy$trips <- transform(divvy$trips,start.hour = factor(start.hour,0:23))
Now that start.hour
is a factor, it is easy to create a bar chart showing the total number of departures at each hour. Unsurprisingly, we see little biking activity at night. Further, the two peaks (“modes”) in the bar chart nicely recapitulate the morning and afternoon rush hours.
ggplot(divvy$trips,aes(start.hour)) +
geom_bar(fill = "dodgerblue",width = 0.6) +
theme_minimal() +
theme(panel.grid.major = element_blank(),
panel.grid.minor = element_blank())
Version | Author | Date |
---|---|---|
f163fe4 | Peter Carbonetto | 2018-04-14 |
b32e833 | Peter Carbonetto | 2018-01-18 |
eb228f2 | Peter Carbonetto | 2017-07-06 |
52f577a | Peter Carbonetto | 2017-07-06 |
However, this bar chart is a bit muddled because it is counting trips during the week and on the weekends. Consider that the bin count \(x[h]\) for hour \(h\) in the histogram above is a sum of the counts for each day of the week:
\[ \begin{align} x[h] & = \sum_{i\;\in\;\mathsf{DaysOfTheWeek}} x_i[h] \\ & = x_{\mathsf{Mon}}[h] + x_{\mathsf{Tue}}[h] + x_{\mathsf{Wed}}[h] + x_{\mathsf{Thu}}[h] + x_{\mathsf{Fri}}[h] + x_{\mathsf{Sat}}[h] + x_{\mathsf{Sun}}[h] \end{align} \]
Note: The math above is embedded in the webpage using MathJax. See here for an excellent reference on MathJax.
Once we plot the counts separately for each the day of the week, the rush-hour trends become more obvious. (Also notice that the rush-hour weeks disappear on Saturday and Sunday.)
ggplot(divvy$trips,aes(start.hour)) +
geom_bar(fill = "dodgerblue",width = 0.75) +
facet_wrap(~start.day,ncol = 2) +
scale_x_discrete(breaks = seq(0,24,2)) +
theme_minimal() +
theme(panel.grid.major = element_blank(),
panel.grid.minor = element_blank())
The commuting trends are different at the University of Chicago Divvy station—there isn’t much of a morning rush hour. This may be because students and staff don’t regularly use the Divvy bikes for commuting.
ggplot(subset(divvy$trips,from_station_name == "University Ave & 57th St"),
aes(start.hour)) +
geom_bar(fill = "dodgerblue",width = 0.75) +
facet_wrap(~start.day,ncol = 2) +
scale_x_discrete(breaks = seq(0,24,2)) +
theme_minimal() +
theme(panel.grid.major = element_blank(),
panel.grid.minor = element_blank())
Version | Author | Date |
---|---|---|
b32e833 | Peter Carbonetto | 2018-01-18 |
eb228f2 | Peter Carbonetto | 2017-07-06 |
52f577a | Peter Carbonetto | 2017-07-06 |
This is the version of R and the packages that were used to generate these results.
sessionInfo()
# R version 3.4.3 (2017-11-30)
# Platform: x86_64-apple-darwin15.6.0 (64-bit)
# Running under: macOS High Sierra 10.13.4
#
# Matrix products: default
# BLAS: /Library/Frameworks/R.framework/Versions/3.4/Resources/lib/libRblas.0.dylib
# LAPACK: /Library/Frameworks/R.framework/Versions/3.4/Resources/lib/libRlapack.dylib
#
# locale:
# [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
#
# attached base packages:
# [1] stats graphics grDevices utils datasets methods base
#
# other attached packages:
# [1] ggplot2_2.2.1 data.table_1.10.4-3
#
# loaded via a namespace (and not attached):
# [1] Rcpp_0.12.15 knitr_1.20 whisker_0.3-2
# [4] magrittr_1.5 workflowr_0.11.0.9001 munsell_0.4.3
# [7] colorspace_1.3-2 rlang_0.2.0.9000 stringr_1.3.0
# [10] plyr_1.8.4 tools_3.4.3 grid_3.4.3
# [13] gtable_0.2.0 R.oo_1.21.0 git2r_0.21.0
# [16] htmltools_0.3.6 lazyeval_0.2.1 yaml_2.1.18
# [19] rprojroot_1.3-2 digest_0.6.15 tibble_1.4.2
# [22] R.utils_2.6.0 evaluate_0.10.1 rmarkdown_1.9
# [25] labeling_0.3 stringi_1.1.6 pillar_1.2.1
# [28] compiler_3.4.3 scales_0.5.0 backports_1.1.2
# [31] R.methodsS3_1.7.1
This reproducible R Markdown analysis was created with workflowr 0.11.0.9001