为JSS更改knitr中的提示符

时间:2014-05-25 04:25:11

标签: r knitr

统计软件期刊style guide规定使用R>作为提示字符。在Sweave中,这可以通过以下方式获得:

options(prompt = "R> ", continue = "+  ", width = 70, useFancyQuotes = FALSE)

是否可以在prompt中设置knitr字符?好像prompt中的chunks$set参数只允许TRUE/FALSE

1 个答案:

答案 0 :(得分:3)

在.Rnw文件中使用此类设置:

<<setup, include=FALSE, cache=FALSE>>=
library(knitr)
# set global chunk options
opts_chunk$set(prompt=TRUE)
options(replace.assign=TRUE, width=90, prompt="R> ")
@

请注意我在prompt=TRUE中说opts_chunk$set(),然后在下一行的选项中指定提示的类型。