Page 1 of 1

SUR with different sample

Posted: Tue Jan 16, 2018 5:40 am
by ccheong
Hi All,
I am using Eviews10. Beginner user. Learning how to use the Seemingly Unrelated Regression (SUR).

Is it possible have different sample within a system (SUR)?
Example:
y = c(1) + c(2)*x {sample 1}
y = c(3) + c(4)*x {sample 2}

The main purpose is to compare C(2) against C(4). i.e. C(2)-C(4)=0

Kind regards,
Chee

Re: SUR with different sample

Posted: Tue Jan 16, 2018 9:00 am
by EViews Gareth
No.

Of course you can always lag your variables.

Re: SUR with different sample

Posted: Tue Jan 16, 2018 9:28 am
by startz
Copy x into x1 for the first sample, leaving NA elsewhere. Then the same for x into x2 for the second sample.

Note that all that's really going on is a fancy way of doing least squares on each equation.

Re: SUR with different sample

Posted: Tue Jan 16, 2018 5:09 pm
by ccheong
Hi Startz,

Can you provide a bit more clarification about your suggestion.
Sample 1 doesn't overlap with sample 2.

y = c(1) + c(2)*x {sample 1: large firms}
y = c(3) + c(4)*x {sample 2: small firms}

Kind regards,
Chee

Re: SUR with different sample

Posted: Tue Jan 16, 2018 6:31 pm
by startz
smpl 1 100
series x1 = x
smpl 101 200
series x2 = x
smpl @all

y = c(1) + c(2)*x1
y = c(3) + c(4)*x2