1

我尝试使用 knit 和 Highlight 使用 Rstudio 突出显示我的 R 代码,但是在编织时出现错误;

这是我的代码:

opts_chunk$set(fig.width=7, fig.height=5)   
opts_knit$set(use.highlight = TRUE)   
opts_knit$set(out.format = "html")
opts_chunk$set(highlight = TRUE)
opts_knit$set(...., highlight=FALSE)
render_html()

编译时,我有那个错误

Error in library(package = "parser", character.only = TRUE) :
there is no package called 'parser'

我使用 R 3.0

提前致谢

4

1 回答 1

2

我想我已经在开发版本中解决了这个问题,您可以从以下位置安装它:

install.packages('knitr', repos = 'http://www.rforge.net/', type = 'source')
于 2013-05-15T13:02:03.320 回答