2009-09-25 9 views
11

J'ai des données,Comment superposer une ligne pour un objet lm sur un nuage de points de ggplot2

calvarbyruno.1<-structure(list(Nominal = c(1, 3, 6, 10, 30, 50, 150, 250), Run = structure(c(1L, 
1L, 1L, 1L, 1L, 1L, 1L, 1L), .Label = c("1", "2", "3"), class = "factor"), 
    PAR = c(1.25000000000000e-05, 0.000960333333333333, 0.00205833333333334, 
    0.00423333333333333, 0.0322333333333334, 0.614433333333334, 
    1.24333333333333, 1.86333333333333), PredLin = c(-0.0119152187070942, 
    0.00375925114245899, 0.0272709559167888, 0.0586198956158952, 
    0.215364594111427, 0.372109292606959, 1.15583278508462, 1.93955627756228 
    ), PredQuad = c(-0.0615895732702735, -0.0501563307416599, 
    -0.0330831368244257, -0.0104619953693943, 0.100190275883806, 
    0.20675348710041, 0.6782336426345, 1.04748729725370)), .Names = c("Nominal", 
"Run", "PAR", "PredLin", "PredQuad"), row.names = c(NA, 8L), class = "data.frame") 
calweight <- -2 

pour laquelle je l'ai créé à la fois linéaire et un modèle de film du second degré

callin.1<-lm(PAR~Nominal,data=calvarbyruno.1,weight=Nominal^calweight) 
calquad.1<-lm(PAR~Nominal+I(Nominal^2),data=calvarbyruno.1,weight=Nominal^calweight) 

I peut alors tracer mes valeurs de données à l'aide ggplot2

qplot(PAR,Nominal,data=calvarbyruno.1) 

Mais ne peut pas travailler sur la façon de superposer une ligne représentant les deux objets lm ... Toutes les idées ?

Répondre

29

L'option la plus simple est d'utiliser geom_smooth() et de laisser ggplot2 s'adapter au modèle pour vous.

ggplot(calvarbyruno.1, aes(y = PAR, x = Nominal, weight=Nominal^calweight)) + 
    geom_smooth(method = "lm") + 
    geom_smooth(method = "lm", formula = y ~ poly(x, 2), colour = "red") + 
    geom_point() + 
    coord_flip() 

Illustration using geom_smooth

Ou vous pouvez créer un nouvel ensemble de données avec les valeurs prévues.

newdata <- data.frame(Nominal = pretty(calvarbyruno.1$Nominal, 100)) 
newdata$Linear <- predict(callin.1, newdata = newdata) 
newdata$Quadratic <- predict(calquad.1, newdata = newdata) 
require(reshape2) 
newdata <- melt(newdata, id.vars = "Nominal", variable.name = "Model") 
ggplot(calvarbyruno.1, aes(x = PAR, y = Nominal, weight=Nominal^calweight)) + 
    geom_line(data = newdata, aes(x = value, colour = Model)) + 
    geom_point() 
+0

Thierry, l'esprit vous affichant une image des résultats? Merci! –

9

Plus tôt, j'ai posé une question connexe et Hadley avait this good answer. En utilisant la fonction de prédiction de ce poste, vous pouvez ajouter deux colonnes à vos données. Un pour chaque modèle:

calvarbyruno.1$calQuad <- predict(calquad.1) 
calvarbyruno.1$callin <- predict(callin.1) 

Ensuite, il est question de tracer le point et en ajoutant chaque modèle comme une ligne:

ggplot() + 
geom_point(data=calvarbyruno.1, aes(PAR, Nominal), colour="green") + 
geom_line(data=calvarbyruno.1, aes(calQuad, Nominal), colour="red") + 
geom_line(data=calvarbyruno.1, aes(callin, Nominal), colour="blue") + 
opts(aspect.ratio = 1) 

et que les résultats dans cette belle image (oui les couleurs peuvent utiliser certains travail):

alt text http://www.cerebralmastication.com/wp-content/uploads/2009/09/ggplot2.png