美文网首页
2022-09-29 R语言 ggplot2

2022-09-29 R语言 ggplot2

作者: c海明威 | 来源:发表于2022-09-30 00:31 被阅读0次

#1

##图片保存

###

pdf(file ="p.pdf",width =12,height =9)

print(p)

dev.off()

###

png(filename ="p.png",width =1200,height =900,res =300)

print(p)

dev.off()

###

ggsave(p,filename ="p.pdf",width = 12,height = 9)

ggsave(p,filename ="p.png",width = 12,height = 9)

相关文章

网友评论

      本文标题:2022-09-29 R语言 ggplot2

      本文链接:https://www.haomeiwen.com/subject/rrlkartx.html