I use qplot to build a function, and I want to place a legend in the plot. I used
opts( legend.position = c(0.7,0.7) )
to move the legend where I want it to be.
However, around the legend there is a white frame that appears on a gray background.
For instance:
library(ggplot2)
x = c(1:20)
y = c(1:20)
p <- qplot(x,y, color = "blue")
p <- p + scale_colour_identity("Example", breaks=c("blue"), labels=c("dots"))
p <- p + opts(legend.position = c(0.6, 0.4))
print(p)
I would like to know how to remove this border from the legend. Thank.
source
share