の軸ブレークを変更する必要がありgeom_mosaic
ます。これが私の例です:
my_tibble <-
tibble(a=rep(c("a1","a2"),each=4),
b=rep(rep(c("b1","b2"),each=2),times=2),
c=rep(c("c1","c2"),times=4),
x=seq_along(b)
)
my_tibble |>
ggplot() +
geom_mosaic(aes(x=product(a,b,c),weight=x,fill=a),
divider=c("vspine","hspine","hspine"))
このように、外側のグループ化変数のラベルのみが必要です
の単純な関数呼び出しでこれを達成できますgeom_mosaic
か?