0

如果 GNU R (ggplot2) 图的最小模板应该发表在 AIP PR 期刊系列中,它们应该是什么样子?

AIP 网站和Physical Review Style and Notation Guide中列出了一系列要求。我更喜欢 TIFF 或 PNG 文件,因为 PDF 和 PS 文件目前不支持所有图形对象。到目前为止,这是我的最小示例:

library(ggplot2)

theme_prb <- theme_bw()
## have to find out how to create own theme with
## fontsize=12 and so on.

theme_set(theme_prb)

ggplot(mtcars, aes(x=hp, y=qsec)) +
  geom_point()+
  geom_hline(yintercept=mean(mtcars$qsec)) 

ggsave(filename="00001prb.png", dpi=600, scale=1, units="mm", width=86, height=60)
4

0 回答 0