将 Dotplot 从 R 导入 Adobe Illustrator 会导致点形状发生变化
Importing Dotplot from R to Adobe Illustrator causes dot shapes to change
使用 ggplot,我创建了一个带有圆点的点图。我使用 ggsave 将其导出为 .pdf,它在 Sumatra Reader、Foxit Reader 和 Chrome.
上打开良好
但是,当我使用 Adobe Illustrator 打开 .pdf 进行一些润色后,所有的圆点都变成了矩形点。
如果您可以分享您的代码,可能会有所帮助。但是,在 Illustrator 中查看点图时,我完全没有遇到任何问题。使用以下内容生成点图:
library(ggplot2)
ggplot(mtcars, aes(x = mpg)) + geom_dotplot()
在绘图查看器中,我将其保存为 pdf 并在 Illustrator (CC 2015) 中打开。
使用 ggplot,我创建了一个带有圆点的点图。我使用 ggsave 将其导出为 .pdf,它在 Sumatra Reader、Foxit Reader 和 Chrome.
上打开良好但是,当我使用 Adobe Illustrator 打开 .pdf 进行一些润色后,所有的圆点都变成了矩形点。
如果您可以分享您的代码,可能会有所帮助。但是,在 Illustrator 中查看点图时,我完全没有遇到任何问题。使用以下内容生成点图:
library(ggplot2)
ggplot(mtcars, aes(x = mpg)) + geom_dotplot()
在绘图查看器中,我将其保存为 pdf 并在 Illustrator (CC 2015) 中打开。