gpt4 book ai didi

r - ggplot2:将绘图保存为带有嵌入字体的 EPS

转载 作者:行者123 更新时间:2023-12-03 17:52:06 29 4
gpt4 key购买 nike

一个期刊要我把这些数字作为 EPS 文件提交。使用 ggplot2 从 R 将它们导出为 EPS 文件,然后在 Adob​​e Illustrator 中打开 EPS 文件告诉我“系统上找不到字体”。

我该如何解决这个问题?这是我目前使用的语法。

library(ggplot2)    
a <-c("Sad Mood", "Cognition", "Fatigue", "Interest Loss", "Slowed", "Self-blame", "Suicidal Ideation", "Early insomnia", "Appetite", "Late insomnia", "Agitated", "Weight", "Middle insomnia", "Hypersomnia", "Age", "Sex")
b <-c(20.7,16.5,13.8,13.1,8.8,6.4,6.1,3.6,3.0,2.5,2.1,1.3,0.9,0.7,0.4,0.1)
c <-c(17.90,13.64,11.36,10.72,6.99,4.60,4.68,2.38,2.09,1.65,1.35,0.76,0.47,0.24,0.15,0.03) #lower CI
d <-c(23.47,19.27,16.28,15.74,10.64,8.20,7.95,5.07,4.21,3.63,2.99,2.22,1.59,1.62,0.95,0.31) #upper CI

data <- data.frame(a,b,c,d)
data1 <- transform(data, a = reorder(a, order(b, decreasing = FALSE)))
data1$label <-sprintf("%.1f", data1$b)

ggplot(data1, aes(x=as.factor(a), y=b, order=a))+
geom_bar(stat="identity",fill='#888888',colour='#888888') +theme_bw() +coord_flip() +
ylab("Relative importance estimation in %") +xlab("") +
geom_errorbar(aes(ymin=c, ymax=d), width=.3, size=.5)+
geom_text(aes(label=label), size=4.5, vjust=.4,hjust=-1.5)+
scale_y_continuous(limits = c(-0, 25))+
theme(axis.text.x = element_text(size = 13))+
theme(axis.text.y = element_text(size = 13))+
theme(axis.title.x = element_text(size = 14, vjust=-.2))

最佳答案

有一个名为 extrafont 的 R 包我过去曾经解决过这样的问题。 Here是我使用的解决方案。

基本上,有一个 R 将使用的字体数据库和一个 postscript 将使用的字体数据库。大多数情况下,您不必执行我上面对第 12-27 行所做的操作,但是如果您的字体使用非标准命名方案,则必须手动编辑 R 的字体数据库。

您的主要问题是确保 R 和 PS 中的字体名称(和字体系列名称)相同。您应该能够通过安装 extrafont(第一次安装它会在 R 中构建字体数据库)并使用正确的设备加载字体来做到这一点。

关于r - ggplot2:将绘图保存为带有嵌入字体的 EPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18835254/

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