過去に、RStudio を使用して ggplot2 を作成し、RSudio 内から PDF としてエクスポートしました。これは素晴らしく機能します。
現在、knitr を使用して自動化しようとしていますが、高品質の出力を作成するためにグラフの高さと重みをどこに設定すればよいかわかりません。
これが私の現在の試みですが、「並べた」グラフはそうではなく、回転した横向きのグラフもそうではなく、解像度が低いようです。
アドバイスをいただければ幸いです。ggplot2 と Knitr の両方が活発に開発されているようですが、これは素晴らしいことですが、インターネット検索で迷いました。LaTeX は私にとって初めてのことです。また、この一連のツールの一般的なワークフロー戦略もあれば幸いです。前もって感謝します。
\documentclass[letterpaper]{article}
\usepackage{lscape}
\begin{document}
<<load, echo=FALSE, results='hide', warning=FALSE, message=FALSE>>=
require(ggplot2)
@
Two on the first page.
<<first, echo=FALSE, fig.height=3, fig.cap="This is first", fig.pos='h'>>=
ggplot(mtcars, aes(mpg, wt))+geom_point()+facet_grid(vs ~ am, margins=TRUE)
@
Blah, blah, blah.
<<second, echo=FALSE, fig.height=3, fig.cap="This is second", fig.pos='h'>>=
ggplot(mtcars, aes(mpg, wt))+geom_point()+facet_grid(vs ~ am, margins=TRUE)
@
\newpage
Second page.
Side by side images:
<<third, echo = FALSE, out.width="2in", fig.cap='Side by side'>>=
ggplot(mtcars, aes(mpg, wt))+geom_point()+facet_grid(vs ~ am, margins=TRUE)
ggplot(mtcars, aes(mpg, wt))+geom_point()+facet_grid(vs ~ am, margins=TRUE)
@
\newpage
\begin{landscape}
This page is rotated
<<fourth, echo = FALSE, out.width="4in", fig.cap='Landscape'>>=
ggplot(mtcars, aes(mpg, wt))+geom_point()+facet_grid(vs ~ am, margins=TRUE)
@
\end{landscape}
\end{document}