我有一个 r 脚本,我想用它来使用 knitr spin 生成 HTML 报告。
运行的大部分代码都在循环/函数中。如何在文档中为在这些函数/循环中创建的内容生成标题?
我尝试了几种不同的方法,但到目前为止没有任何效果。下面给出了旋转时没有任何标题的可重复示例:
#' ---
#' title: "My Doc"
#' author: "ME"
#' date: "January 28, 2017"
#' ---
library(ggplot2)
myFun = function(){
for(i in seq(from=1,to=3, by=1)){
#' ## This title won't show up
cat("\n## Nor will this one\n")
plot = ggplot(aes(x=mpg,y=cyl),data=mtcars) + geom_point()
print(plot)
}
}