ggplot2 geom_point 50000点-输出为pdf-需要在Illustrator中打开

德凡尼奇

我需要使用ggplot2在单个散点图上绘制50000点,然后我需要能够在Illustrator中以矢量格式打开(制作论文图形)。

显示数据没有比散点图更好的方法了,我需要能够显示各个点。

目前,我正在输出pdf。问题是,尽管我可以在Adobe Acrobat和Mac Preview中打开文件,但是Illustrator在“读取PDF文件”时挂起,这可能是因为要处理的点太多了。

我应该输出到其他图形设备吗?还是有一种方法可以使用Acrobat Pro将某些数据有选择地合并到图层或公用路径中,以使Illustrator可以打开文件?

提前致谢!

特洛伊

您是否尝试过svg()

x<-runif(50000)
y<-runif(50000)

qplot(x,y,alpha=0.1)

svg("x.svg")
qplot(x,y,alpha=0.1)
dev.off() 

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

为ggplot2中的负值和正值在geom_point中设置不同的颜色

来自分类Dev

为ggplot2中的两个geom_point()更改颜色

来自分类Dev

如何在geom_point ggplot中删除点组

来自分类Dev

ggplot2 2.0.0中的geom_point边界

来自分类Dev

geom_point {ggplot2}中的alpha值

来自分类Dev

ggplot2 中的振幅线 + geom_point

来自分类Dev

使用R中的geom_point将点大小调整为单个变量

来自分类Dev

ggplot PDF导入到Inkscape中时,使用alpha时会在geom_point点上添加额外的空心圆

来自分类Dev

如何更改ggplot2的geom_point中缺失值的颜色?

来自分类Dev

使用geom_point有条件地使用ggplot2中的抖动

来自分类Dev

使用aes_string时,ggplot2中两个geom_point()的颜色

来自分类Dev

避免在ggplot2中使用geom_point进行图覆盖

来自分类Dev

将高斯拟合到ggplot2中的数据geom_point

来自分类Dev

如何更改ggplot2的geom_point中缺失值的颜色?

来自分类Dev

Geom_point将点设置为错误的值

来自分类Dev

Geom_point将点设置为错误的值

来自分类Dev

来自geom_point中相同副本的点之间的线

来自分类Dev

为ggplot在geom_point上订购颜色

来自分类Dev

如何在R中使用ggplot2根据大小为节点/ geom_point渐变着色?

来自分类Dev

有没有办法在 R 中更改 ggplot2 (geom_point) 中的大小值范围?

来自分类Dev

ggplot geom_point中的最小点大小增加

来自分类Dev

ggplot geom_point中的最小点大小增加

来自分类Dev

ggplot:geom_point中的颜色,填充和大小

来自分类Dev

增加ggplot geom_point中的最小点大小

来自分类Dev

ggplot2减少geom_point()因子之间的空间

来自分类Dev

矩形ggplot2 geom_point形状

来自分类Dev

带有ggplot2和geom_point的图例

来自分类Dev

ggplot2 geom_point具有图案填充

来自分类Dev

填充地图上geom_point的ggplot2图例

Related 相关文章

  1. 1

    为ggplot2中的负值和正值在geom_point中设置不同的颜色

  2. 2

    为ggplot2中的两个geom_point()更改颜色

  3. 3

    如何在geom_point ggplot中删除点组

  4. 4

    ggplot2 2.0.0中的geom_point边界

  5. 5

    geom_point {ggplot2}中的alpha值

  6. 6

    ggplot2 中的振幅线 + geom_point

  7. 7

    使用R中的geom_point将点大小调整为单个变量

  8. 8

    ggplot PDF导入到Inkscape中时,使用alpha时会在geom_point点上添加额外的空心圆

  9. 9

    如何更改ggplot2的geom_point中缺失值的颜色?

  10. 10

    使用geom_point有条件地使用ggplot2中的抖动

  11. 11

    使用aes_string时,ggplot2中两个geom_point()的颜色

  12. 12

    避免在ggplot2中使用geom_point进行图覆盖

  13. 13

    将高斯拟合到ggplot2中的数据geom_point

  14. 14

    如何更改ggplot2的geom_point中缺失值的颜色?

  15. 15

    Geom_point将点设置为错误的值

  16. 16

    Geom_point将点设置为错误的值

  17. 17

    来自geom_point中相同副本的点之间的线

  18. 18

    为ggplot在geom_point上订购颜色

  19. 19

    如何在R中使用ggplot2根据大小为节点/ geom_point渐变着色?

  20. 20

    有没有办法在 R 中更改 ggplot2 (geom_point) 中的大小值范围?

  21. 21

    ggplot geom_point中的最小点大小增加

  22. 22

    ggplot geom_point中的最小点大小增加

  23. 23

    ggplot:geom_point中的颜色,填充和大小

  24. 24

    增加ggplot geom_point中的最小点大小

  25. 25

    ggplot2减少geom_point()因子之间的空间

  26. 26

    矩形ggplot2 geom_point形状

  27. 27

    带有ggplot2和geom_point的图例

  28. 28

    ggplot2 geom_point具有图案填充

  29. 29

    填充地图上geom_point的ggplot2图例

热门标签

归档