knitr中内联R代码的第二次评估
Second evaluation of inline R code in knitr
我正在尝试创建一个数学测试生成器,它随机生成测试中包含的问题。我想象在 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"))
```
视觉:
我正在尝试创建一个数学测试生成器,它随机生成测试中包含的问题。我想象在 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"))
```
视觉: