R Markdown 模板创建

R Markdown Template Creation

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

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

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

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

您可以查看 this 页面了解更多详情,但基本上您只需要创建一个带有附加 Rmarkdown 模板的 template.yaml 文件并将其放在正确的文件夹中 (inst/rmarkdown/templates ).您可以从 Rstudio "from template" 或 rmarkdown::draft("my_article.Rmd", template = "jss_article", package = "rticles").

的菜单中创建它

有用usethis package has a nice utility function for creating R Markdown templates.

library(usethis)
use_rmarkdown_template(
  template_name = "Template Name",
  template_dir = NULL,
  template_description = "A description of the template",
  template_create_dir = FALSE
)

使用这个创建:

  • inst/rmarkdown/templates/{{template_dir}}。主目录。
  • skeleton/skeleton.Rmd。您的模板 Rmd 文件。
  • template.yml已填写基本信息