I am computing multiple regression coefficients for these variables (for several cases):
y,x1,x2,x3
log(y)= a(log(x1))+b(log(x2))+c(x3)+d
res=lm.fit(log(y)~log(x1)+log(x2)+(x3))
All values of y,x1,x2,x3
are between 0 and 1
.
The values of the coefficients range between -10 to 10
for a
The values of the coefficients range between -5 to 5
for b
The values of the coefficients range between -5
to 5
for c
The values of the coefficients range between -3
to 3
for d
I wonder if we should expect a certain range for each coefficient.or in other words,how to know that my regression analyses did a good job.