R Markdown 模板创建

Cod*_*man 5 markdown r r-markdown

所以我很好奇是否有人知道如何使用以下输出更改默认的 R Markdown Creation 文件:

---
title: "Untitled"
author: "Cody Glickman"
date: "February 27, 2016"
output: html_document
---

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>.

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:

```{r}
summary(cars)
```

You can also embed plots, for example:

```{r, echo=FALSE}
plot(cars)
```

Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
Run Code Online (Sandbox Code Playgroud)

当我创建新的 R Markdown 文档时,这将是一个很好的快捷方式,可以避免每次删除此块并插入目录。

Xio*_*Jin 3

您可以定义自己的模板,然后From Template在 RStudio 中使用创建新文档。请参阅http://rmarkdown.rstudio.com/developer_document_templates.html