【问题标题】:R Markdown Template CreationR Markdown 模板创建
【发布时间】:2022-04-12 14:54:36
【问题描述】:

所以我很好奇是否有人知道如何使用以下输出更改默认的 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.

当我创建新的 R Markdown 文档时,避免每次都删除这个块并插入目录是一个不错的快捷方式。

【问题讨论】:

    标签: r markdown r-markdown


    【解决方案1】:

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

    【讨论】:

      【解决方案2】:

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

      【讨论】:

        【解决方案3】:

        有用的usethis 包有一个不错的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填写基本信息。

        【讨论】:

        • 整洁!谢谢你的酷包!
        猜你喜欢
        • 2022-12-18
        • 2018-08-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2022-06-28
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多