17

我正在尝试在 R 中绘制一个盒子和胡须图。我的代码如下。目前,因为我在两个站点之一中只有两个月的数据,所以该站点的条形更宽(因为月份的第三个级别被删除)。

相反,我希望站点的框模式与站点的框相同AB即右侧有一个空框的空间)。drop=TRUE当我只有一个因素但似乎无法使用“填充”因素时,我可以轻松做到这一点。

Month=rep(c(rep(c("Jan","Feb"),2),"Mar"),10)
Site=rep(c(rep(c("A","B"),each=2),"B"),10)
factor(Month)
factor(Site)
set.seed(1114)
Height=rnorm(50)
Data=data.frame(Month,Site,Height)
plot = ggplot(Data, aes(Site, Height)) +
       geom_boxplot(aes(fill=Month, drop=TRUE), na.rm=FALSE)
plot
4

3 回答 3

24

这是一个基于创建假数据的解决方案:

首先,将新行添加到数据框中。它包含不存在的因子水平组合的数据点 (MarA)。的值Height必须超出真实Height数据的范围。

Data2 <- rbind(Data, data.frame(Month = "Mar", Site = "A", Height = 5))

然后,可以生成图。由于假数据不应该是可见的,因此必须使用coord_cartesian原始Height数据的范围来修改 y 轴范围。

library(ggplot2)
ggplot(Data2, aes(Site, Height)) +
  geom_boxplot(aes(fill = Month)) +
  coord_cartesian(ylim = range(Data$Height) + c(-.25, .25))

在此处输入图像描述

于 2013-03-12T18:10:33.460 回答
14

实现所需外观的一种方法是更改​​绘图时生成的数据。

首先,将绘图保存为对象,然后使用ggplot_build()将绘图数据的所有部分保存为对象。

p<-ggplot(Data, aes(Site, Height,fill=Month)) + geom_boxplot()
dd<-ggplot_build(p)

列表元素数据包含用于绘图的所有信息。

dd$data

[[1]]
     fill      ymin      lower     middle      upper      ymax  outliers notchupper notchlower    x PANEL
1 #F8766D -1.136265 -0.2639268  0.1978071  0.5318349 0.9815675            0.5954014 -0.1997872 0.75     1
2 #00BA38 -1.264659 -0.6113666  0.3190873  0.7915052 1.0778202            1.0200180 -0.3818434 1.00     1
3 #F8766D -1.329028 -0.4334205  0.3047065  1.0743448 1.5257798            1.0580462 -0.4486332 1.75     1
4 #00BA38 -1.137494 -0.7034188 -0.4466927 -0.1989093 0.1859752 -1.759846 -0.1946196 -0.6987658 2.00     1
5 #619CFF -2.344163 -1.2108919 -0.5457815  0.8047203 2.3773189            0.4612987 -1.5528617 2.25     1
  group weight ymin_final ymax_final  xmin  xmax
1     1      1  -1.136265  0.9815675 0.625 0.875
2     2      1  -1.264659  1.0778202 0.875 1.125
3     3      1  -1.329028  1.5257798 1.625 1.875
4     4      1  -1.759846  0.1859752 1.875 2.125
5     5      1  -2.344163  2.3773189 2.125 2.375

您对x,xmaxxmin价值观感兴趣。前两行对应于 level A。这些值应该改变。

dd$data[[1]]$x[1:2]<-c(0.75,1)
dd$data[[1]]$xmax[1:2]<-c(0.875,1.125)
dd$data[[1]]$xmin[1:2]<-c(0.625,0.875)

现在使用ggplot_gtable()grid.draw()绘制更改的数据。

library(grid)
grid.draw(ggplot_gtable(dd))

在此处输入图像描述

于 2013-03-12T17:47:59.190 回答
1

现在有一种简单的方法可以在此处使用“保留”的位置执行操作。对于上面的情节,这将是:

Month = rep(c(rep(c("Jan", "Feb"), 2), "Mar"), 10)
Site = rep(c(rep(c("A", "B"), each = 2), "B"), 10)

factor(Month)
factor(Site)

set.seed(1114)

Height = rnorm(50)
Data = data.frame(Month, Site, Height)

plot = ggplot(Data, aes(Site, Height)) +
  geom_boxplot(
    aes(fill = Month, drop = TRUE),
    na.rm = FALSE,
    ## Note:
    position = position_dodge(preserve = 'single')
  )
plot

阴谋

于 2021-11-09T14:04:57.007 回答