I’m using knitr 0.5 for my analysis and it throws this warning
Warning in parse_params(params) :
(*) NOTE: I saw options " label = TrtScores-SD-Response, echo = FALSE, results = asis"
are you using the old Sweave syntax? go http://yihui.name/knitr/options
for this chunck
<< label = TrtScores-SD-Response, echo = FALSE, results = asis >>=
R code
@
and knitr 0.5 becomes very slow. Any idea to overcome this warning. Thanks
You just need to add quotes around the results argument, like this:
As documented at http://yihui.name/knitr/options (the web page to which the error message thoughtfully directed you):
And then later on the same page:
See also the “Transition from Sweave to knitr” page, which addresses this and other differences between Sweave and knitr. Like all of Yihui’s documentation, it’s excellently put together.