Page 1 of 1

Fix Coefficient

Posted: Wed Aug 20, 2014 4:18 am
by vishaleviews
Hi,

I want to run a regression where i want to fix one of the coefficient to 0.5 value. For ex. equation EQ1.ls @log(Y) = C(1) + 0.5*X instead of using equation EQ1.ls @log(y) = C(1) + C(2)*X. But dont think the above is the right method. Can you help me with the right method.

Thanks a lot.
Vishal

Re: Fix Coefficient

Posted: Wed Aug 20, 2014 6:36 am
by startz

Code: Select all

EQ1.ls @log(Y)-0.5*X = C(1)

Re: Fix Coefficient

Posted: Wed Aug 20, 2014 10:01 pm
by vishaleviews
Thanks much..