Hola Rafael:
Un ejemplo:
> x<-1:5
> x
[1] 1 2 3 4 5
> y<-x^3+1
> y
[1] 2 9 28 65 126
> lm(y~I(x^3))
Call:
lm(formula = y ~ I(x^3))
Coefficients:
(Intercept) I(x^3)
1 1
> lm(y~0+I(x^3))
Call:
lm(formula = y ~ 0 + I(x^3))
Coefficients:
I(x^3)
1.011
El primer modelo ajusta con término independiente, el segundo sin él.
Saludos.
Un ejemplo:
> x<-1:5
> x
[1] 1 2 3 4 5
> y<-x^3+1
> y
[1] 2 9 28 65 126
> lm(y~I(x^3))
Call:
lm(formula = y ~ I(x^3))
Coefficients:
(Intercept) I(x^3)
1 1
> lm(y~0+I(x^3))
Call:
lm(formula = y ~ 0 + I(x^3))
Coefficients:
I(x^3)
1.011
El primer modelo ajusta con término independiente, el segundo sin él.
Saludos.