mikelee.co: Powered by RMarkdown, knitr, and Jekyll

Generating blog content made easier with R

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.

Spend a few months documenting code scripts in RStudio and you’ll have surely seen those introductory lines numerous times.

This is also a R code script. And a markdown document. And an HTML page. All of which are generated within one .Rmd document. My site had previously supported by Github Pages and Jekyll, and now my preferred statistical software tool will streamline my blogging process. I expect this to make the transition from idea, analyses, visualization, and blog post production much more seamless.

Inspiration and First Steps

I first heard about the ability to generate and serve files within R from a tweet from Brendan Rocks.

This workflow blew my mind at the time (still does) and the post in which he explains the scaffolding is very useful. Check it out here.

Adding in a _source directory to store .Rmd files allows Yihui Xie’s servr package the ability to render markdown documents in _posts, which Jekyll converts to HTML - which is what you are reading now!

Improving Syntax Highlighting (with updates!)

The first part of this post was pretty trivial given my previous experience with both jekyll and knitr. Adjusting syntax highlighting was a bit of a hiccup. Out of the box, code blocks in divs were being generated using my highlighter (rouge) but were being rendered with an “r” in front like so:

r``cat(paste(c("This","drove","me","mental D:"),sep=" "))

## This drove me mental D:

An earlier version of this post detailed a method of updating syntax highlighting using redcarpet markdown and pygments - a soon to be deprecated syntax highlighter. Turns out I wasn’t the only one having this issue! After more than a few missteps, and applying the advice from this post, make sure you have both jekyll ruby installed and updated! After updating your site infrastructure, add a css template with formatting options - such as my syntax.css.

Final Result

cat(paste(c("Yay","for","making","life","easier!"),sep=" "))
## Yay for making life easier!

Look how great that looks! Lets see what a function looks like.

devtools::install_github("mdlee12/sabr")
library(sabr)
sabr::woba_season
function (playerID = NULL, yearID = NULL, ...)
{
    db <- lahman()
    woba_guts <- RSQLite::dbGetQuery(db, "SELECT * FROM wOBA_Table")
    wobayear <- woba_guts[woba_guts$yearID == yearID, ]
    wobayear <- data.frame(wobayear)
    query <- paste("SELECT GROUP_CONCAT(DISTINCT teamID) as teamID,
                   SUM(H) as H, SUM([2B]) as DB, SUM([3B]) as TR,SUM(HR) as HR,
                   SUM(AB) as AB, SUM(BB) as BB, SUM(IBB) as IBB, SUM(SF) as SF,
                   SUM(SH) as SH, SUM(HBP) as HBP FROM Batting WHERE playerID = '",
                   playerID, "' AND yearID = '", yearID, "'", sep = "")
    db <- lahman()
    query <- RSQLite::dbGetQuery(db, query)
    query <- as.data.frame(query)
    uBB <- wobayear$wobaBB * (query$BB - query$IBB)
    HBP <- wobayear$wobaHB * (query$HBP)
    DB <- wobayear$woba2B * (query$DB)
    TR <- wobayear$woba3B * (query$TR)
    HR <- wobayear$wobaHR * (query$HR)
    H <- wobayear$woba1B * (query$H - query$DB - query$TR - query$HR)
    AB <- query$AB
    BB <- query$BB
    IBB <- query$IBB
    SF <- query$SF
    SH <- query$SH
    PA <- query$PA
    woba <- (uBB + HBP + H + DB + TR + HR)/(AB + BB - IBB + SF + HBP)
    woba
}
Neat gif

How about some numbers:

6*9
## [1] 54
sabr::woba_season("yountro01",1982)
## [1] 0.414997

You can also embed plots. For example:

# Much plots. Such scatter.
plot(iris)
plot of chunk unnamed-chunk-6

More to come soon :D