[R] Strange R squared, possible error
derek
jan.kacaba at gmail.com
Wed Mar 16 20:49:27 CET 2011
k=lm(y~x)
summary(k)
returns R^2=0.9994
lm(y~x) is supposed to find coef. a anb b in y=a*x+b
l=lm(y~x+0)
summary(l)
returns R^2=0.9998
lm(y~x+0) is supposed to find coef. a in y=a*x+b while setting b=0
The question is why do I get better R^2, when it should be otherwise?
Im sorry to use the word "MS exel" here, but I verified it in exel and it
gives:
R^2=0.9994 when y=a*x+b is used
R^2=0.99938 when y=a*x+0 is used
--
View this message in context: http://r.789695.n4.nabble.com/Strange-R-squared-possible-error-tp3382818p3382818.html
Sent from the R help mailing list archive at Nabble.com.
More information about the R-help
mailing list