I keep getting coefficients that don't make any sense.
class([FORMULANAME]<-[Y]~[X1]+[X2]+[X3])
summary(lm([FORMULANAME],[DATASET]))
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 373158 303593 1.229 0.220
X1 -372960 303593 -1.228 0.220
X2 -372952 303596 -1.228 0.220
X3 -372989 303593 -1.229 0.220
These are totally wrong. What is wrong with my code? Thanks!
class([FORMULANAME]<-[Y]~[X1]+[X2]+[X3])
summary(lm([FORMULANAME],[DATASET]))
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 373158 303593 1.229 0.220
X1 -372960 303593 -1.228 0.220
X2 -372952 303596 -1.228 0.220
X3 -372989 303593 -1.229 0.220
These are totally wrong. What is wrong with my code? Thanks!