Skip to content
Prev 255678 / 398506 Next

Linear Model with curve fitting parameter?

Steven:

You are exactly right sorry I was confused.


#######################################################
so log(y-intercept)+log(K) is a constant called b0 (is this right?)

lm(log(Q)~log(A)+log(R)+log(S)-1)

is fitting the model

log(Q)=a*log(A)+r*log(R)+s*log(S) (no beta 0)

and

lm(log(Q)~log(A)+log(R)+log(S))


is fitting the model

log(Q)=b0+a*log(A)+r*log(R)+s*log(S)

######################################################

These are the models I am trying to fit and if I have reasoned
correctly above then I should be able to fit the below models
similarly.

manning
log(Q)=log(b0)+log(K)+log(A)+r*log(R)+s*log(S)

dingman
log(Q)=log(b0)+log(K)+a*log(A)+r*log(R)+s*(log(S))^2

bjerklie
log(Q)=log(b0)+log(K)+a*log(A)+r*log(R)+s*log(S)

#######################################################

Thank you for all of your help!

Stephen
On Fri, Apr 1, 2011 at 2:44 PM, Steven McKinney <smckinney at bccrc.ca> wrote: