ggplot2 pdf import in Adobe Illustrator missing font AdobePiStd

后端 未结 9 2036
执念已碎
执念已碎 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:17

    I could solve the problem just by adding alpha specification. If you don't need any transparency you can chose an alpha value of 0.9 ...

    example:

    ggplot() + geom_point(aes(x=..,y=.., color=...), alpha=0.8)
    

提交回复
热议问题