/rfordummies

R package to accompany the book "R for Dummies"

Primary LanguageHTML

rfordummies

Build Status

Overview

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 book
  • ch1() - prints all code examples of ch1
  • ch2() - 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")

Installation

You can install rfordummies using:

library("devtools")
install_github("rfordummies", "andrie")