我的目标是将一个gglagplot包含在一个乳胶文件中。以下是在R中创建绘图的代码:
# create a lagplot and save it in a pdf named "lagplot"
set.seed(1)
data<-rnorm(100)
gglagplot(data,lags=9)
ggsave(file="lagplot.pdf")
dev.off()
以下是我在乳胶中加入情节的方法:
\documentclass[12pt]{article}
\usepackage{graphicx}
\begin{document}
lag plot without points:
\begin{figure}[h]
\includegraphics[scale=0.5]{lagplot}
\end{figure}
\end{document}
在RStudio中,情节看起来像预期的那样,然而,在我使用上述乳胶代码创建的最终pdf上,情节上的所有数据点都消失了。我只能看到9个空方面。 当我通过“导出”和“另存为pdf”导出带有RStudio的图形时,它完美地工作。请帮帮我!