gpt4 book ai didi

r - knitr中内联R代码的第二次评估

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

我正在尝试创建一个数学测试生成器,它随机生成测试中包含的问题。我想象在 knitr 中写 20 个左右的问题,然后按下一个按钮来创建一个包含其中一部分的 pdf。我在 Rstudio 中使用 R Markdown。我想象一个解决方案有点像:

```{r}
start<-"";end<-""

if(0<runif(1)){
start1<-"```{r, echo=F}"
end1<-"```"
}
```

`r start1`
Question 1
`r end1`

但这会导致 pdf 包含:

```{r, echo=F}
Question 1
```

如何告诉 knitr 第二次计算内联代码?还是有更巧妙的做事方式?

最佳答案

您可以为此使用 cat:

---
title: "Math test"
---

```{r Setup-Chunk, echo=FALSE}
q1 <- "Note down the Pythagorean theorem?"
q2 <- "Sum of angles of a triangle?"
q3 <- "What is the root of $x^2$?"
questions <- c(q1,q2,q3)
selection <- sample(length(questions), 2) # by altering 2 you pick the number of questions
```

```{r, results='asis', echo=FALSE}
out <- c()
for(i in selection){
out <- c(out, questions[i])
}
cat(paste("###", seq_along(selection), out,collapse = " \n"))
```

视觉:
enter image description here

关于r - knitr中内联R代码的第二次评估,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27764887/

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