所以我有一个数据框,就像:
time,candidate_id,allocation_id,final_score,position
data
...
然后我正在尝试制作一个 ggplot2 箱线图。我希望这个箱线图对每个allocation_id
. 我试着做一个:
ggplot(data=(allocation_info), aes(allocation_id, final_score))
但不是为每个得到多个allocation_id
箱线图,我只得到一个巨大的箱线图。有人知道为什么会发生这种情况吗?