将 ggplot 文本放置在每个角的 facet 中

Position ggplot text in each corner with facet

我有一个数据框,其中 5 种类型各有 10 个值,并且有 2 种类型。

df <- data.frame(x2=rnorm(100),y2=rnorm(100), type = c(rep("type a", 50), rep("type b", 50)), kind = rep(LETTERS[1:5],10))

我想打印每个象限值百分比的标签。我当前的代码是:

ggplot(df, aes(x2, y2)) + geom_point() +
  geom_vline(xintercept = 0) +
  geom_hline(yintercept = 0) +
  geom_text(data = df, aes(x2, y2, label = "")) +
  facet_grid(type~kind)

当前输出:

预期输出(例如,我显示了 A 类和 A 类 B 的百分比,我想绘制所有种类和类型的百分比值):

任何建议都很好。谢谢!

你可能需要计算ggplot2之外的比例,

library(dplyr)
numbers <- df %>% group_by(type,kind) %>% mutate(cases = n()) %>% 
  add_count(x2>0,y2>0) %>% mutate(label=paste(round(n/cases*100),"%"), 
                                  x = ifelse(`x2 > 0`, Inf, -Inf), 
                                  y = ifelse(`y2 > 0`, Inf, -Inf), 
                                  hjust = ifelse(`x2 > 0`, 1, 0), 
                                  vjust = ifelse(`y2 > 0`, 1, 0))

ggplot(df, aes(x2, y2)) + geom_point() +
  geom_vline(xintercept = 0) +
  geom_hline(yintercept = 0) +
  facet_grid(type~kind) +
  geom_label(data=numbers, aes(label = label, x=x, y=y, vjust=vjust, hjust = hjust))