我有所有车型的数据,接近300个车型细节。我试图在一个散点图销售中将所有这些绘制在一个月内,我可以用ggplot2
来做到这一点:
ggplot(data=cars,aes(x=sales,y=accidents))+
geom_point()+
facet_wrap(~model)
但是图形尺寸太小而且难以可视化。有没有办法增加图形尺寸和更好的视觉效果?
答案 0 :(得分:0)
重要的是,您可以使用可重现的代码来了解您的问题是什么。
也许您可以使用以下方法调整输出图像的大小:
png(file="name_of_img_save.png",width=3300 ,height=2000,res=150)
ggplot(data=cars,aes(x=sales,y=accidents))+ geom_point()+facet_wrap(~model)
dev.off()
运气!
答案 1 :(得分:0)
如果仅用于可视化,您应该尝试使用manipulate
包来获取RStudio。您可以轻松调整它以进行轴控制。
https://support.rstudio.com/hc/en-us/articles/200551906-Interactive-Plotting-with-Manipulate