Page 1 of 1

regressors display in panel estimation output

Posted: Tue Jul 29, 2014 12:11 am
by BiXiC
I think I found a bug.

I have panel time series workfile. If I estimate model with command: "ls(cx = f) log(sales_units) price/cpi log(distribution)" it works good. [left output]
But if I add regressors to the group: "group regressors LOG(SALES_UNITS) PRICE/CPI LOG(DISTRIBUTION)" and then estimate same model with this group: "ls(cx = f) regressors" Eviews would give me same output but without names of variables, like in [right output]

Re: regressors display in panel estimation output

Posted: Tue Jul 29, 2014 12:16 am
by EViews Gareth

Code: Select all

create m 2010 2014m4 52 series sales_units=rnd series price=nrnd series cpi=nrnd series distribution=rnd group regressors log(sales_units) price/cpi log(distribution) equation eq1.ls(cx=f) sales_units c price/cpi log(distribution) equation eq2.ls(cx=f) regressors
Yep, looks like you're right. We'll fix it.

Re: regressors display in panel estimation output

Posted: Tue Jul 29, 2014 3:02 pm
by EViews Gareth
Latest patch should fix it.

Re: regressors display in panel estimation output

Posted: Wed Jul 30, 2014 7:39 am
by BiXiC
Latest patch should fix it.
Yes, now it is fixed. Thank you!