Suppose I have the following data
x<-rnorm(100,1,10000)
y<-rnorm(100,1,10000)+2*x+x^2
If I use the lm function as follows:
model1<-lm(y~x+x^2)
The R does not understand that it is to put between the independent variables the t...
asked on
18.02.2014 / 12:53