ggplot2 pdf import in Adobe Illustrator missing font AdobePiStd

后端 未结 9 2060
执念已碎
执念已碎 2020-12-07 13:47

I created several simple ggplot2 plots and saved them to PDF files using the following commands:

p <- ggplot(plotobject, aes(x=Pos, y=Pval),res=300)
ggsav         


        
9条回答
  •  青春惊慌失措
    2020-12-07 14:22

    Use useDingbats=FALSE for the pdf output, then Illustrator will no complain.

    pdf("example.pdf", useDingbats=FALSE)
    ggplot(plotobject, aes(x=Pos, y=Pval),res=300)
    dev.off()
    

提交回复
热议问题