#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)