标签: r r-markdown
我正在生成R-markdown PDF。我通过knitr::opts_chunk$set(echo = FALSE)禁止显示所有代码,并通过options(xtable.comment = FALSE)禁止显示x表注释,但是,我的read.spss("~/anes.sav", to.data.frame = T)中的一个注释为## re-encoding from UTF-8的注释仍然包含在我的PDF中。如何防止将此评论打印到我的PDF中?
knitr::opts_chunk$set(echo = FALSE)
options(xtable.comment = FALSE)
read.spss("~/anes.sav", to.data.frame = T)
## re-encoding from UTF-8