2016-03-29 7 views
4

Haben Sie ein Problem, Legende zu verschiedenen glatten in ggplot hinzuzufügen.Wie man eine Legende zu geom_smooth in ggplot in R hinzufügen

library(splines) 
    library(ggplot2) 
    temp <- data.frame(x = rnorm(200, 20, 15), y = rnorm(200, 30, 8)) 

    ggplot(data = temp, aes(x, y)) + geom_point() + 
     geom_smooth(method = 'lm', formula = y ~ bs(x, df=5, intercept = T), col='blue') + 
     geom_smooth(method = 'lm', formula = y ~ ns(x, df=2, intercept = T), col='red') 

Ich habe zwei Splines: rot und blau. Wie kann ich eine Legende für sie hinzufügen?

Antwort

8

Legen Sie die Farbe in aes() und fügen scale_colour_manual():

ggplot(data = temp, aes(x, y)) + geom_point() + 
    geom_smooth(method = 'lm', formula = y ~ bs(x, df=5, intercept = T), aes(colour="A")) + 
    geom_smooth(method = 'lm', formula = y ~ ns(x, df=2, intercept = T), aes(colour="B")) + 
    scale_colour_manual(name="legend", values=c("blue", "red")) 

enter image description here

+0

Dank! Sehr schöne Lösung! –

+0

Und natürlich können Sie die Eigenschaft labels in scale_colour_manual verwenden, um die Beschriftung von A und B zu ändern. – Sid