Can anyone please help me how to impose a restriction in a linear model? I have the following model in that sum of the coefficients add up to one:
Code: Select all
y=c(1)*x + (1-c(1))*z.Any comments would be greatly appreciated.
Yuyi
Moderators: EViews Gareth, EViews Moderator
Code: Select all
y=c(1)*x + (1-c(1))*z.Code: Select all
ai = exp( bi ) / ( exp( b1 ) + exp( b2 ) + ... + exp( bk ) )Code: Select all
ai > 0 a1+a2+...+ak=1 Code: Select all
y=c(1)*x+(1-c(1))*zCode: Select all
y =@exp(c(1))*x + (1-@exp(c(1)))*zUsers browsing this forum: No registered users and 2 guests