gpt4 book ai didi

r - 将 rmarkdown 中的参数传递给文本或标题

转载 作者:行者123 更新时间:2023-12-02 09:16:55 25 4
gpt4 key购买 nike

有没有办法在代码块之外的 rmarkdown 文档中传递参数?例如,我希望能够将参数值作为标题。

这是一个简短的例子.Rmd文件:

---
title: "param_test"
author: "test"
date: "September 14, 2017"
output: pdf_document
params:
param_test: this_text
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```

## I want this heading to be the value of params$param_test

```{r cars}
params$param_test

print(params$param_test)
```

有人对此有任何想法吗?

最佳答案

您只需添加 results='asis'到 block 然后你可以从代码中打印出标题。
cat("#", params$param_test, "\n")
另一种选择是使用 pander 库并运行

pandoc.header(参数$param_test)

关于r - 将 rmarkdown 中的参数传递给文本或标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46226364/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com