*Shamelessly taken from https://dl.dropboxusercontent.com/u/20315677/r-meetup-2016-slides.pdf
* David H. Freedman (August 1, 2010). "The Streetlight Effect". Discover magazine.
A dialect of a programming language or a data exchange language is a (relatively small) variation or extension of the language that does not change its intrinsic nature. - Wikipedia
create_summary(analyze(clean(load(file_name))))
library(magrittr)
file_name %>% load %>% clean %>%
analyze %>% create_summary
*Paraphrasing Jiahao Chen
> citation("bigmemory")
To cite bigmemory in publications use:
Michael J. Kane, John Emerson, Stephen Weston (2013). Scalable
Strategies for Computing with Massive Data. Journal of Statistical
Software, 55(14), 1-19. URL http://www.jstatsoft.org/v55/i14/.
A BibTeX entry for LaTeX users is
@Article{,
title = {Scalable Strategies for Computing with Massive Data},
author = {Michael J. Kane and John Emerson and Stephen Weston},
journal = {Journal of Statistical Software},
year = {2013},
volume = {55},
number = {14},
pages = {1--19},
url = {http://www.jstatsoft.org/v55/i14/},
}