如何获得有关Rmarkdown块选项的帮助?

时间:2013-09-12 09:10:09

标签: r knitr r-markdown

我开始玩Rmarkdown,我很喜欢它。但我有新的问题,荒谬与否,我找不到直截了当的答案:

我无法确定knitr文档或其他地方的位置我可以了解在块插入中写入有用的东西以告诉R要绘制的内容。 E.g:

```{r warnings=FALSE, message=FALSE}

将阻止R消息和警告出现在HTML输出中。我在另一个问题中看到了这一点,我想知道如何使用?或类似的东西自己来计算。

感谢。

1 个答案:

答案 0 :(得分:2)

你看过文件yihui provides on the knitr site了吗?

我还强烈建议他查看他最近发布的书dynamic documents with R and Knitr,其中涵盖了你合理使用的所有内容,然后是一些内容。

您还可以通过创建R块

轻松探索R studio中的选项
}```

adding a comma
```{r,
}```

and pressing tab after the comma and it will give you all the potential options - they are well named and you can easily focus your search more thoroughly. For example, if you noticed the `purl` option you could explore more and find it is for extracting R code from the chunk.