ggplot2を使ってヒストグラムのパネルを作成していますが、各グループの平均に縦線を追加したいと考えています。しかしgeom_vline()各パネル(すなわち、全球平均)に同じインターセプトを使用しています。ggplot2のパネルごとに異なるインターセプトの縦線を追加する
require("ggplot2")
# setup some sample data
N <- 1000
cat1 <- sample(c("a","b","c"), N, replace=T)
cat2 <- sample(c("x","y","z"), N, replace=T)
val <- rnorm(N) + as.numeric(factor(cat1)) + as.numeric(factor(cat2))
df <- data.frame(cat1, cat2, val)
# draws a single histogram with vline at mean
qplot(val, data=df, geom="histogram", binwidth=0.2) +
geom_vline(xintercept=mean(val), color="red")
# draws panel of histograms with vlines at global mean
qplot(val, data=df, geom="histogram", binwidth=0.2, facets=cat1~cat2) +
geom_vline(xintercept=mean(val), color="red")
どのように私はそれが各パネルのグループは、x切片として意味を使用して入手できますか? (平均値の行でテキストラベルを追加することもできます)。