annotate tool_template.Rmd @ 12:9cf29b2374a6 draft

1.1.0
author mingchen0919
date Sat, 24 Feb 2018 11:42:37 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12
mingchen0919
parents:
diff changeset
1 ---
mingchen0919
parents:
diff changeset
2 title: "tool_template.Rmd"
mingchen0919
parents:
diff changeset
3 author: "Ming Chen"
mingchen0919
parents:
diff changeset
4 date: "2/24/2018"
mingchen0919
parents:
diff changeset
5 output: html_document
mingchen0919
parents:
diff changeset
6 ---
mingchen0919
parents:
diff changeset
7
mingchen0919
parents:
diff changeset
8 ```{r setup, include=FALSE}
mingchen0919
parents:
diff changeset
9 knitr::opts_chunk$set(echo = TRUE)
mingchen0919
parents:
diff changeset
10 ```
mingchen0919
parents:
diff changeset
11
mingchen0919
parents:
diff changeset
12 ## R Markdown
mingchen0919
parents:
diff changeset
13
mingchen0919
parents:
diff changeset
14 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>.
mingchen0919
parents:
diff changeset
15
mingchen0919
parents:
diff changeset
16 When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
mingchen0919
parents:
diff changeset
17
mingchen0919
parents:
diff changeset
18 ```{r cars}
mingchen0919
parents:
diff changeset
19 summary(cars)
mingchen0919
parents:
diff changeset
20 ```
mingchen0919
parents:
diff changeset
21
mingchen0919
parents:
diff changeset
22 ## Including Plots
mingchen0919
parents:
diff changeset
23
mingchen0919
parents:
diff changeset
24 You can also embed plots, for example:
mingchen0919
parents:
diff changeset
25
mingchen0919
parents:
diff changeset
26 ```{r pressure, echo=FALSE}
mingchen0919
parents:
diff changeset
27 plot(pressure)
mingchen0919
parents:
diff changeset
28 ```
mingchen0919
parents:
diff changeset
29
mingchen0919
parents:
diff changeset
30 Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.