Skip to content

Latest commit

 

History

History
32 lines (30 loc) · 5.16 KB

FAQ.md

File metadata and controls

32 lines (30 loc) · 5.16 KB

Frequently Asked Questions

The FAQ's are compiled from the issues and messages I received from blog posts and emails, etc.

  1. 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).
  1. 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 (see packageDescription('knitr', fields = 'Maintainer'))
  • StackOverflow: general questions (more public than emails)
  • Twitter (@xieyihui) or Google+ (+Yihui Xie)
  1. Oh, the tons of arguments like Sweave(..., prefix.string=abc, keep.source=FALSE, foo=bar) are really flexible; why knit() only has so few arguments?
  • Because I believe putting these arguments in knit() breaks the principle of reproducibility, and so does using environmental variables (see #19 for details).
  1. I love RStudio and Sweave is sweet there; is knitr going to work with RStudio?
  • I love RStudio too, and yes, knitr is supported in RStudio thanks to RStudio developers since the version 0.96. By the way, I also recommend LyX if you want to use Sweave or knitr.
  1. You mentioned LyX so many times, so what the heck is LyX?
  • It is an intelligent wrapper for LaTeX; see http://www.lyx.org for details. I would like to define it as a software package that can both increase the productivity of an experienced LaTeX user by 300%, and decrease it by 500% for a LaTeX novice. Don't use it simply because its GUI is so tempting; it is not MS Word. I have added support for knitr in LyX; see the lyx demo page.
  1. 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 of 1 + 1, you have the chunk option prompt.
  1. 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.
  1. 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 option out.width to make your graphics output stay within the margin (see #171).
  1. 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. the center environment; when you want to center your plots, you should use chunk option fig.align='center' instead of putting the whole chunk inside \begin{center} and \end{center}. For more info, see demo page for framed.
  1. 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.
  1. I have done something cool with knitr; could you add a link in your website?
  • Sure! I'd love to; just let me know.
  1. 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