Search found 13312 matches

by EViews Gareth
Tue Nov 07, 2023 5:08 pm
Forum: Bug Reports
Topic: A bug in the DID?
Replies: 4
Views: 6368

Re: A bug in the DID?

Great. You can verify that is the correct number by estimating a two-way fixed effects Least Squares model with a constant and Treated as the regressor.

Command:

Code: Select all

equation eq_test.ls(cx=f, per=f) lemp c treated
show eq_test
by EViews Gareth
Tue Nov 07, 2023 10:23 am
Forum: Bug Reports
Topic: A bug in the DID?
Replies: 4
Views: 6368

Re: A bug in the DID?

Patch released
by EViews Gareth
Mon Nov 06, 2023 10:33 pm
Forum: Bug Reports
Topic: A bug in the DID?
Replies: 4
Views: 6368

Re: A bug in the DID?

Bug in EViews for that initial estimate - thanks for reporting, we'll issue a fix asap.
by EViews Gareth
Thu Nov 02, 2023 10:58 am
Forum: Programming
Topic: Replacing variable names in a model
Replies: 1
Views: 3560

Re: Replacing variable names in a model

No. You would need to break the link of the equation to convert it to text, and then replace.
by EViews Gareth
Wed Oct 25, 2023 6:01 am
Forum: Bug Reports
Topic: ECB SDMX database
Replies: 12
Views: 25844

Re: ECB SDMX database

You should update to the latest version.
by EViews Gareth
Mon Oct 23, 2023 9:32 am
Forum: Estimation
Topic: Data Type for Sample Inputs in autoarma
Replies: 2
Views: 5061

Re: Data Type for Sample Inputs in autoarma

Store the sample end points into string variables, and then use the string variables in the autoarma command.

Code: Select all

%first = @ilast(series_name)
%last = @ilast(series_name)
%smpl = %first + " " + %last
series_name.autoarma(smpl=%smpl)
by EViews Gareth
Mon Oct 23, 2023 9:30 am
Forum: Estimation
Topic: ARIMA robust standard error estimation
Replies: 1
Views: 3767

Re: ARIMA robust standard error estimation

Change the ARMA method to CLS.
by EViews Gareth
Fri Oct 20, 2023 12:57 pm
Forum: Bug Reports
Topic: ECB SDMX database
Replies: 12
Views: 25844

Re: ECB SDMX database

Is your copy of EViews 13 up to date?
by EViews Gareth
Fri Oct 20, 2023 9:34 am
Forum: Suggestions and Requests
Topic: Subroutine Local Program Vars
Replies: 2
Views: 6154

Re: Subroutine Local Program Vars

Tricky to implement the hybrid approach between local subroutines and local variables.

Of course in your trivial examples, local subroutines will do what you want, but presumably your actual code is a tad more complicated.
by EViews Gareth
Wed Oct 18, 2023 10:57 am
Forum: Programming
Topic: saving a transposed workfile as an excel file
Replies: 3
Views: 6025

Re: saving a transposed workfile as an excel file

You can only save one page at a time.
by EViews Gareth
Wed Oct 18, 2023 10:23 am
Forum: Programming
Topic: saving a transposed workfile as an excel file
Replies: 3
Views: 6025

Re: saving a transposed workfile as an excel file

The "byrow" part does the transposing.
by EViews Gareth
Tue Oct 17, 2023 8:46 am
Forum: Data Manipulation
Topic: Changing date format in graphs
Replies: 5
Views: 23941

Re: Changing date format in graphs

Unfortunately not, other than temporarily via optset

Go to advanced search