7

您可以看到一组有水平灰边,另一组没有。

如何使各个方面的边距保持一致?在此处输入图像描述

expand.grid(x=1:3, y=1:3)
a<-expand.grid(x=1:3, y=1:3)
a$value=rnorm(9)
a$group=1
b<-expand.grid(x=3, y=1:3)
b$value=rnorm(3)
b$group=2
c<-rbind(a,b)
ggplot(c, aes(x=factor(x), y=factor(y), fill=value)) + 
  geom_tile() + facet_grid(.~group, scale="free_x", space="free_x")
4

1 回答 1

5

您应该expand=c(0,0)scale_x_discrete()and内添加scale_y_discrete()以删除灰色区域。

  +scale_x_discrete(expand=c(0,0))+
  scale_y_discrete(expand=c(0,0))
于 2013-09-24T10:14:05.960 回答