为什么我的ggplots伸出来了?

时间:2014-07-21 19:28:09

标签: r ggplot2

这是我用来生成情节的代码

ggplot() + 
  geom_polygon(data=usamap, aes(x=long, y=lat,group=group),colour="black", fill="white" )+
  geom_point(data=foo1,aes(x=lon,y=lat,shape=id))+
  scale_color_manual(name = "Climate Classes",values=cols)+
  ggtitle("Distribution of Flash Flood Events in CONUS")+
  xlab('Longitude')+
  ylab('Latitude')+
  coord_fixed(ratio = 1.5)+
  theme_bw()+
  theme(legend.position = c(.93,.24),panel.grid.major = element_line(colour = "#808080"))+
  ggsave("useventsmap_bw.png")

直到昨天,相同的代码给了我一个格式良好的数字

enter image description here 但现在这个数字看起来很奇怪。我根本没有改变代码(只是对原始数据稍作改动,不应影响图的比例)。我在Windows机器上的RStudio工作。这是个常见的问题吗?我该如何解决这个问题?

enter image description here

0 个答案:

没有答案