Search found 13328 matches

by EViews Gareth
Wed May 01, 2024 12:30 pm
Forum: Estimation
Topic: Simultaneous Equation with Identity
Replies: 2
Views: 28

Re: Simultaneous Equation with Identity

There's nothing to estimate in an identity. What's the goal?
by EViews Gareth
Tue Apr 30, 2024 4:36 pm
Forum: Bug Reports
Topic: Excel Corruption Issue (EViews 13, windows)
Replies: 9
Views: 159

Re: Excel Corruption Issue (EViews 13, windows)

It is probably related to Excel being open, yes. If Excel is open, we ask Excel to handle the file read. If Excel is closed, EViews does it. (Roughly).

We'll poke around, but in the meantime recommend having Excel closed.
by EViews Gareth
Tue Apr 30, 2024 3:38 pm
Forum: Bug Reports
Topic: Excel Corruption Issue (EViews 13, windows)
Replies: 9
Views: 159

Re: Excel Corruption Issue (EViews 13, windows)

Does all this occur with a specific file, or are you having issues reading all Excel files?
by EViews Gareth
Tue Apr 30, 2024 3:04 pm
Forum: Bug Reports
Topic: Excel Corruption Issue (EViews 13, windows)
Replies: 9
Views: 159

Re: Excel Corruption Issue (EViews 13, windows)

Yes, deleting the files when EViews is running could cause a crash.

EViews should delete the files itself after 30 days (Options->General Options->File Locations).

If you want to manually delete them, doing so when EViews is not open should be fine.
by EViews Gareth
Tue Apr 30, 2024 2:43 pm
Forum: Bug Reports
Topic: Excel Corruption Issue (EViews 13, windows)
Replies: 9
Views: 159

Re: Excel Corruption Issue (EViews 13, windows)

Could you describe what you mean by "This seems to cause an EViews crash"?

Also, what's the build date of your copy of EViews 13 (Help->About EViews).
by EViews Gareth
Thu Apr 25, 2024 2:18 pm
Forum: Estimation
Topic: VARSEL - Auto-search / GETS
Replies: 8
Views: 304

Re: VARSEL - Auto-search / GETS

The problem is that it is selecting the "empty model" as the best model in your case for these countries (and in the other cases it is selecting the GUM). But the empty model is non-valid.

You could get around it by using the "noempty" option to not include the empty model.
by EViews Gareth
Thu Apr 25, 2024 1:27 pm
Forum: Estimation
Topic: VARSEL - Auto-search / GETS
Replies: 8
Views: 304

Re: VARSEL - Auto-search / GETS

I tried running default settings, and it seemed to go through every country: %list = @wflookup("dp*") %list = @replace(%list, "DP", "") for %temp {%list} equation tmp_model{%temp}.varsel(method=auto) dp{%temp} @ c dp{%temp}(-1) dp{%temp}(-2) dp{%temp}(-3) dp{%temp}(-4) ...
by EViews Gareth
Thu Apr 25, 2024 1:16 pm
Forum: Estimation
Topic: VARSEL - Auto-search / GETS
Replies: 8
Views: 304

Re: VARSEL - Auto-search / GETS

Presumably %temp is changing in some sort of loop - what's it equal to when the program fails?
by EViews Gareth
Thu Apr 25, 2024 12:27 pm
Forum: Estimation
Topic: VARSEL - Auto-search / GETS
Replies: 8
Views: 304

Re: VARSEL - Auto-search / GETS

Any chance you could provide the workfile?
by EViews Gareth
Thu Apr 18, 2024 2:29 pm
Forum: Data Manipulation
Topic: number of workdays
Replies: 6
Views: 433

Re: number of workdays

Show off.
by EViews Gareth
Thu Apr 18, 2024 10:21 am
Forum: Estimation
Topic: GVAR
Replies: 4
Views: 3898

Re: GVAR

Not at the moment.
by EViews Gareth
Wed Apr 17, 2024 10:09 am
Forum: Data Manipulation
Topic: number of workdays
Replies: 6
Views: 433

Re: number of workdays

Create a series equal to @date on the daily page. Copy it over to the monthly page using "first" as the frequency conversion. Then copy it again using "last" as the frequency conversion. That will give you a series of the dates of the first workday and last weekday of each month.
by EViews Gareth
Wed Apr 17, 2024 7:32 am
Forum: Data Manipulation
Topic: number of workdays
Replies: 6
Views: 433

Re: number of workdays

I'd do it just by creating a temporary monthly page.

Code: Select all

wfcreate(page=daily) d5 2000 2024

pagecreate(page=monthly) m 2000 2024
series days = @daycount("Mon-Fri")
copy monthly\days daily\days
pageselect daily

Go to advanced search