R,gglagplot,乳胶,最终pdf中没有积分

时间:2015-12-25 20:17:16

标签: r latex ggfortify

我的目标是将一个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的图形时,它完美地工作。请帮帮我!

1 个答案:

答案 0 :(得分:1)

这很可能是Latex /你的tex编译器而不是gglagplot的问题,前者不会显示lagplot.pdf的某些层。

我重复了上面的例子,产生了以下工作结果:

enter image description here

请尝试以下任何措施来兑换问题:

  • 将图片导出为.eps而非.pdf来自RStudio:

    `ggsave(file = "lagplot.eps")`
    
  • 如果您还没有,请尝试使用pdflatex编译器。从你的shell(假设你在乳胶文件的目录中):

    > pdflatex myLatexFile.tex
    

希望以上之一(或两者合并)都有效。