2
例子:如果圖例位置是底部,我怎樣才能將圖例標題放在標籤的頂部?
xy <- data.frame(x=1:10, y=10:1, type = rep(LETTERS[1:2], each=5))
plot <- ggplot(data = xy)+
geom_point(aes(x = x, y = y, color=type)) +
theme(legend.position = 'bottom')
plot
我們怎樣才能獲得標題「類型」 A和B的頂部,而不是給他們留下?
感謝
謝謝!我知道如何用opts做到這一點,這已經被棄用了一段時間。我無法弄清楚定位是在顏色中確定的 –