たとえば、次のプロットがあるとします。
library(ggplot2)
df = diamonds
dfs = df[sample(nrow(df), 100, replace = FALSE),]
ggplot(dfs, aes(x = carat)) +
geom_bar(breaks = seq(0,2, by = 0.5), colour = 'white')
cut
各ビンの最も一般的な、または平均depth
、または中央値price
(など)を取得する最も迅速でエレガントな方法は何ですか?