我正在使用带有外部代码选项的knitr包。有没有办法让我可以跳过大块的一行来阅读?例如:
## @knitr chunk1
a <- 1:100
## This comment should not appear
## @knitr chunk2
print(a[1:12])
在上面的示例中,我希望第3行不会出现在最终的* .pdf中。非常感谢任何提示。
答案 0 :(得分:5)
两种方法:
<<chunk1, echo=-2>>=
,这意味着您要从output中排除第二个表达式; ## @knitr go-away
)的块中,或根本没有标签(## @knitr
)