【发布时间】: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