R:正确使用“rmarkdown::render()”函数

sdnqo3pr  于 2023-02-06  发布在  其他
关注(0)|答案(1)|浏览(182)

我正在使用R编程语言。

    • 我的问题:**我正在学习如何在R中使用rmarkdown::render()函数。

例如,假设我有以下R Markdown代码:

---
title: "Storyboard Commentary"
output: 
  flexdashboard::flex_dashboard:
    storyboard: true
---

### A nice scatterplot here

```{r}
plot(cars, pch = 20)
grid()

Some commentary about Frame 1.

A beautiful histogram on this board

hist(faithful$eruptions, col = 'gray', border = 'white', main = '')

Some commentary about Frame 2.


我将上面的代码复制并粘贴到记事本文档中-然后将此文件另存为"test_render. rmd"。
现在,我想使用`render()`函数来执行这个文件,例如`rmarkdown::render("test_render.Rmd")`-但是我不确定如何使用代码**将这个文件导入到R**中(即不手动点击/指向文件)。
我之所以问这个问题,是因为我在学校使用的计算机上只有较旧的GUI版本的R(即我们没有R Studio),我想直接将. rmd文件导入R并使用此`render()`函数,然后创建最终结果。
有人能教我怎么做吗?
谢谢!
nkoocmlb

nkoocmlb1#

您应该能够使用render的输入和输出参数呈现rmarkdown文件并将其导出,即

rmarkdown::render(input = "test_render.Rmd", output_file = "test_render.html")

它应该保存在当前工作目录中。

相关问题