The FAQ's are compiled from the issues and messages I received from blog posts and emails, etc.
- knitr does not work...
- Please first update all your R packages (use
update.packages()
) and probably R itself (what is the current R version?), then see if it works; if not, file an issue to me (email is fine, too).
- What is the best place to ask questions when the package website is not helpful?
- Depending what you want to ask, you may use these tools (I keep track of the first three more frequently):
- issues page: bug reports and feature requests
- knitr mailing list or R-help list: general questions and feedback via email in public; you can also email me in private but I do not prefer this way (see
packageDescription('knitr', fields = 'Maintainer')
) - StackOverflow: general questions (more public than emails)
- Twitter (
@xieyihui
) or Google+ (+Yihui Xie
)
- How should I get started?
- Watch the 5-min video on the homepage.
- What is the best editor for writing knitr source documents?
- For beginners, perhaps RStudio; knitr is also supported in LyX, Emacs/ESS, WinEdt, Tinn-R and a variety of editors.
- Where are those prompt characters
>
and+
? I feel uncomfortable reading R output without them.
- They are removed by default, because I believe they make no sense. This is the reason why I dislike books on R which used
>
and+
; they twist my mind and make my eyes bleed when I read the R code in the books. For those who really want to read R code like> 1+1
instead of1 + 1
, you have the chunk optionprompt
.
- What is the working directory? Can I change my working directory in my code chunks?
- You'd better not do this. Your working directory is always
getwd()
(all output files will be written here), but the code chunks are evaluated under the directory where your input document comes from. Changing working directories while running R code is a bad practice in general. See #38 for a discussion. You should also try to avoid absolute directories whenever possible (use relative directories instead), because it makes things less reproducible.
- The gray (shading) box is too narrow for my output.
- No, it is not because the box is too narrow (the box uses the current line width); it is because your output is too wide. Use a smaller
width
option to avoid text output exceeding the page margin, e.g.options(width = 60)
(see #44), and tune the optionout.width
to make your graphics output stay within the margin (see #171).
- LaTeX told me there was an error related to
\end{kframe}
.
kframe
is a LaTeX environment that I defined for the chunk output, and it does not work well with certain other LaTeX environments, e.g. thecenter
environment; when you want to center your plots, you should use chunk optionfig.align='center'
instead of putting the whole chunk inside\begin{center}
and\end{center}
. For more info, see demo page for framed.
- How to comment out inline R code like in
\Sexpr{code}
?
- see issue #110: you can destroy
\Sexpr
by%\%Sexpr{code}
or comment out R code like\Sexpr{#code}
, or just comment out the whole paragraph with%
in the beginning of lines.
- How can I write a literal code chunk? i.e. write a code chunk which is not parsed and useful for tutorials
- You need to destroy the chunk header, e.g. add an empty string before the chunk header:
\Sexpr{''}<<label, what=ever>>=
, or`r ''` ```{r label, what=ever}
(#443)
- I have done something cool with knitr; could you add a link in your website?
- Sure! I'd love to; just let me know.
- What can I do for you?
- Many things, e.g. donate me zillions of money (well, I'm kidding), buy me a book from my Amazon wishlist, tweet my links, mention knitr on Google+ or Facebook, or fork this repository and contribute code, or just say hello to me somewhere