统计软件期刊style guide规定使用R>
作为提示字符。在Sweave中,这可以通过以下方式获得:
options(prompt = "R> ", continue = "+ ", width = 70, useFancyQuotes = FALSE)
是否可以在prompt
中设置knitr
字符?好像prompt
中的chunks$set
参数只允许TRUE/FALSE
。
答案 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()
,然后在下一行的选项中指定提示的类型。