Sweave 中的并排数字
我使用此代码在 Sweave
中制作图形。
<<label=fig1plot, include=FALSE >>=
plot(cars)
@
\begin{figure}
\begin{center}
<<label=fig1, fig=TRUE, echo=FALSE>>=
<<fig1plot>>
@
\end{center}
\caption{Some caption}
\label{fig:fig1plot}
\end{figure}
<<label=fig2plot, include=FALSE >>=
plot(table(rpois(100,5)), type = "h", col = "red", lwd=10, main="rpois(100,lambda=5)")
@
\begin{figure}
\begin{center}
<<label=fig2, fig=TRUE, echo=FALSE>>=
<<fig2plot>>
@
\end{center}
\caption{Some caption}
\label{fig:fig2plot}
\end{figure}
现在我想将这两个图形并排放置,并具有如图 1 (a) 和 Fig 1 (b) 所示的标题。任何想法、评论和指南都将受到高度赞赏。预先感谢您的时间和帮助。
I use this code to make figures in Sweave
<<label=fig1plot, include=FALSE >>=
plot(cars)
@
\begin{figure}
\begin{center}
<<label=fig1, fig=TRUE, echo=FALSE>>=
<<fig1plot>>
@
\end{center}
\caption{Some caption}
\label{fig:fig1plot}
\end{figure}
<<label=fig2plot, include=FALSE >>=
plot(table(rpois(100,5)), type = "h", col = "red", lwd=10, main="rpois(100,lambda=5)")
@
\begin{figure}
\begin{center}
<<label=fig2, fig=TRUE, echo=FALSE>>=
<<fig2plot>>
@
\end{center}
\caption{Some caption}
\label{fig:fig2plot}
\end{figure}
Now I want to put these two figures side-by-side and have captions like Fig 1 (a) and Fig 1 (b). Any ideas, comments and guidelines are highly appreciated. Thanks in advance for your time and help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我会使用
par(mfrow=c(1,2))
将它们放在一起作为一个图形,只有一个\begin{figure}
、代码块和\end{图}
。下面可能有一个共同的传说,但这很常见。I would put them together as one figure using
par(mfrow=c(1,2))
, with just one\begin{figure}
, code chunk, and\end{figure}
. There would be one common legend running underneath, but that's common.您可以使用 subcaption LaTeX 包:
另请参阅:如何才能获得并排的图像并且每张图像都附有编号?
You can use the subcaption LaTeX package:
See also this: How can I have images that are side-by-side and have numbers attached to each one?
我为此使用 subfig 包。请参阅http://ctan.org/tex-archive/macros/latex/contrib /subfig/。示例代码如下所示:
I use the subfig package for this. See http://ctan.org/tex-archive/macros/latex/contrib/subfig/. Example code looks like this:
我为此使用了列,它可以让我将数字分开,但可以按照我想要的方式排列它们。
I use columns for this, it lets me keep the figures seperate but lay them out the way I want.