knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE)

-- To:
From:
Subject:
--

Introduction

Data and Methods

Results

Conclusions

Keep in mind: report should be in prose $\leq 2$ pages

Sample Table

library(knitr)
kable(head(mtcars))

Sample Plot

library(ggplot2)
ggplot(data = mtcars, aes(x = mpg, y = hp, colour = wt)) + geom_point() + geom_smooth(method = 'loess')

Session information is saved to _r033-session-info.txt

writeLines(capture.output(sessionInfo()), "r03-session-info.txt")


ericscrum/snpltools documentation built on May 9, 2019, 5:24 p.m.