gpt4 book ai didi

R Cairo pdf 字体在 Adob​​e Illustrator 中无法读取

转载 作者:行者123 更新时间:2023-12-03 02:24:58 25 4
gpt4 key购买 nike

我无法使用 Cairo 包创建的 pdf 文件在 Illustrator 中以可读文本打开。有什么建议吗?为什么会发生这种情况?

library(ggplot2)
library(Cairo)
df = data.frame(x=rnorm(2000), y=rnorm(2000), v=abs(rnorm(2000)^5))
p = ggplot(df, aes(x, y)) +
geom_point(aes(col=v, size=v), alpha=0.75) +
scale_size_area(max_size = 10)
print(p)

Cairo(file='out/plot.pdf', type='pdf', width=4, height=4, bg="transparent", unit="in", dpi=72)
p
dev.off()
browseURL('out/plot.pdf')

该文档在 R 中看起来很好,当在 SumatraPDF 等中打开 pdf 时,但在 Illustrator 中打开时,它看起来像这样:

enter image description here

最佳答案

使用ggplot2函数ggsave,并带有para useDingbats=FALSE:

ggsave(plot=p,height=6,width=6,dpi=200, filename="plot.pdf", useDingbats=FALSE)

关于R Cairo pdf 字体在 Adob​​e Illustrator 中无法读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20502772/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com