## 特定の凡例(colour)を消す1
p + guides(colour=FALSE)
## 特定の凡例(colour)を消す2
p + scale_colour_discrete(guide=FALSE)
## 全ての凡例を消す
p + theme(legend.position = 'none')
例
library(ggplot2)
p <- ggplot(mtcars, aes(wt, mpg)) + geom_point(aes(colour = factor(cyl)))
## 凡例あり
p
## 凡例なし
p + guides(colour=FALSE)
p + scale_colour_discrete(guide=FALSE)
p + theme(legend.position = 'none')
mtcarsは自動車の燃費等に関するデータセット(32台分)。wt: Weight (1000 lbs)、mpg: Miles/(US) gallon、cyl: Number of cylinders。