gpt4 book ai didi

r - 使用 R markdown 和 knitr : Possible to get R objects interpreted in YAML

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

我正在使用 knitrR markdown 和自定义 LaTeX 文件来撰写手稿。摘要被设置为 YAML frontmatter 的一部分。这很好用,除了我想包含在摘要中的结果是在文档的后面生成的。

在 YAML 中包含摘要对我来说有些意义,我更愿意保持这种方式。关于使摘要利用文档后面发生的计算的方法的任何想法?

一个简单的例子:

---
title: 'How do I interpret R objects in YAML that are created in the document?'
author: Jeff Hollister
output:
pdf_document:
fig_caption: yes
keep_tex: yes
number_sections: yes
html_document: null
word_document: null
fontsize: 11pt
documentclass: article
abstract: This is a test. Is this `r mean(x)` working?
---

This is a test of outputing a pdf, with R code interpretted in the YAML front mater. Use case
for this would be a manuscript, with abstract as part of YAML, and some of the results in the
abstract being calculated in the body of the Rmd. For instance:

```{r}
x<-rnorm(100)
mn<-mean(x)
mn
```

最佳答案

它不完全与 YAML 相关,并且仅限于 latex ,但也许 this帮助。抱歉,线程是德语的,但也许代码足够清楚。

您可以在创建报告时选择摘要项目;这些项目被写入一个类似于 bibtex 和 biblatex 中使用的方法的临时文件,并在第二步中合并到开始和结束(用于附录)。

作为一个包,你可以从here下载它.

关于r - 使用 R markdown 和 knitr : Possible to get R objects interpreted in YAML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25813420/

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