這裏我有2 dim數字陣列dataset
和數字1 dim陣列的標籤clustring
。刪除ggplot2圖例從圖中刪除整個數據
s = data.frame(x = dataset[,1], y = dataset[,2])
p = ggplot(s, aes(x, y))
p + geom_point(aes(colour = factor(clustering)))
現在我想徹底刪除的傳說,所以here我發現可能的解決方案:
# Remove legend for a particular aesthetic (fill)
p + guides(fill=FALSE)
# It can also be done when specifying the scale
p + scale_fill_discrete(guide=FALSE)
# This removes all legends
p + theme(legend.position="none")
那麼如何從我的情節中刪除圖例?
謝謝,它的工作原理。 – Aeteros