gpt4 book ai didi

r - knitr:检索 r block 内的图形标题

转载 作者:行者123 更新时间:2023-12-04 11:09:54 26 4
gpt4 key购买 nike

在我的 rmarkdown 文件中,我想知道是否可以在 r 块内部并在 r 块本身内部使用 fig.cap 选项值。

例如:

```{r fig.cap = 'test'}
code
.
.
print(options$fig.cap)?
````

在此先感谢您对从哪里开始寻找的任何帮助或建议

最佳答案

有趣的问题。我想知道这样做的正确方法,但这种(非常)hacky 方式对我有用。

---
output:
html_document:
css: ~/knitr.css
---

```{r, include=FALSE}
library(knitr)
knit_hooks$set(plot = function(x, options) {
fig_fn = paste0(opts_knit$get('base.url'), paste(x, collapse = '.'))
fig.cap <<- knitr:::.img.cap(options)
sprintf("<figure><img src='%s'><figcaption>%s</figcaption></figure>",
fig_fn, fig.cap)
})
```

```{r, fig.cap = 'Figure I: the plot of my figure.'}
plot(1:5)
````

I say some things and some other things.

Oh, yeah please refer to `r fig.cap`

enter image description here

这适用于生成的最新图形,但您可以在图形计数器或其他东西中工作,为每个标题创建唯一变量,以便您可以随时引用。

关于r - knitr:检索 r block 内的图形标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28077875/

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