rfordummies
is an R package to accompany the book "R for Dummies"
The package contains the following functions:
toc()
- prints table of contents of the bookch1()
- prints all code examples of ch1ch2()
- prints all code examples of ch2- ...
ch20()
- prints all code examples of ch20
Since each of the functions ch1()
to ch20()
also contains the code examples as function examples, you can do the following to run all examples of a given chapter:
example("ch20", "rfordummies")
You can install rfordummies
using:
library("devtools")
install_github("rfordummies", "andrie")