Advertisement
Guest User

pgfSweave-example.Rnw

a guest
Oct 13th, 2011
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. \documentclass{article}
  2.  
  3. \usepackage{tikz}
  4. \tikzset{external/system call={latex \tikzexternalcheckshellescape -halt-on-error
  5. -interaction=batchmode -jobname "\image" "\texsource";
  6. dvips -o "\image".ps "\image".dvi;}}
  7. \usepackage[margin=1in]{geometry}
  8. \title{Minimal pgfSweave Example}
  9. \author{Cameron Bracken}
  10.  
  11. \begin{document}
  12.  
  13. <<setup,echo=F>>=
  14. setCacheDir("cache")
  15. options(keep.space=TRUE)
  16. @
  17.  
  18. \maketitle
  19. This example is identical to that in the Sweave manual and is intended to
  20. introduce pgfSweave and highlight the basic differences. Please refer to
  21. the pgfSweave vignette for more usage instructions.
  22.  
  23. We embed parts of the examples from the \texttt{kruskal.test} help page
  24. into a \LaTeX{} document:
  25.  
  26. <<data,cache=T,tidy=T>>=
  27. # hey, a comment
  28. data(airquality)
  29. print(kruskal.test( Ozone ~ Month, data = airquality )) # and another
  30. @
  31.  
  32. \noindent which shows that the location parameter of the Ozone distribution varies
  33. significantly from month to month. Finally we include a boxplot of the data:
  34.  
  35. \begin{figure}[!ht]
  36. \centering
  37. %notice the new options
  38. {\pgfkeys{/pgf/images/include external/.code={\includegraphics[width=3in]{#1}}}
  39. <<boxplot,echo=T,fig=T,width=3,height=3,tikz=T,external=T,highlight=T>>=
  40. boxplot(Ozone ~ Month, data = airquality,
  41. main='Ozone distribution',xlab='Month',ylab='Concentration')
  42. @
  43. }% this brace ends the effect of ‘include external’
  44. \caption{This is from pgfSweave. Text is typset by \LaTeX\ and so matches the
  45. font of the document.}
  46. \end{figure}
  47.  
  48.  
  49. \end{document}
  50.  
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement