Search found 13607 matches
- Fri Jun 26, 2026 7:21 am
- Forum: Bug Reports
- Topic: MIDAS fit statistics (R², SSR, etc..) estimation sample if there's a gap
- Replies: 3
- Views: 1599
- Wed Jun 24, 2026 12:40 pm
- Forum: Bug Reports
- Topic: MIDAS fit statistics (R², SSR, etc..) estimation sample if there's a gap
- Replies: 3
- Views: 1599
Re: MIDAS fit statistics (R², SSR, etc..) estimation sample if there's a gap
Yep, definitely a bug. We'll fix. Just if you're interested, here's some code that makes it concrete. close @wf wfcreate(page=q) q 1990 2030 series y=nrnd pagecreate(page=m) m 1990 2030 series x=nrnd pageselect q copy(c=split) m\x * smpl 1990 2020 2023 2030 equation eq1.midas(midwgt=umidas, fixedlag...
- Wed Jun 17, 2026 10:07 am
- Forum: Bug Reports
- Topic: stom / stomna on a large balanced panel hangs indefinitely in EViews 14 (instant in EViews 12)
- Replies: 2
- Views: 1405
- Mon Jun 01, 2026 12:50 am
- Forum: Programming
- Topic: Merging datasets
- Replies: 5
- Views: 2676
Re: Merging datasets
Here's a stab. mode quiet close @all import(page=key) .\key.txt @freq u 1 %name = @wright(@wlookup("*"), 1) rename {%name} name %name = "name" rename series* key* %keys = @wlookup("key*") %objects = @wdelim( _ @wreplace( _ "vintage year " + %keys + " &quo...
- Sat May 30, 2026 6:00 am
- Forum: Data Manipulation
- Topic: Simple pageunstack gone wrong
- Replies: 3
- Views: 2480
Re: Simple pageunstack gone wrong
Yeah, that’s not a bad way to do it.
- Fri May 29, 2026 11:17 pm
- Forum: Data Manipulation
- Topic: Simple pageunstack gone wrong
- Replies: 3
- Views: 2480
Re: Simple pageunstack gone wrong
The issue is that because there is no between cross-section variation (a and b are identical), when you stack, EViews does the "smart" thing in realising you don't need two different value series, so it condenses down to a single series, called value. Then when you do the tidyup step, you ...
- Fri May 29, 2026 11:08 pm
- Forum: Programming
- Topic: Merging datasets
- Replies: 5
- Views: 2676
Re: Merging datasets
Are you still having issues with the first case (or the second)? I took a look, but think I need more information on what you're trying to do. I put a stop right before your "attempt 1", just to load the two pages and do the renames. But after that I can't see what you're trying to accompl...
- Tue May 26, 2026 12:00 pm
- Forum: Programming
- Topic: Eviews 14 Link Command Issue
- Replies: 1
- Views: 1166
Re: Eviews 14 Link Command Issue
Yes, you cannot redeclare the link if it already exists. We'll take a look to see if we can improve that behaviour.
In the meantime, yes, you'd have to delete it first.
In the meantime, yes, you'd have to delete it first.
- Mon May 25, 2026 11:35 am
- Forum: Programming
- Topic: @logmode?
- Replies: 1
- Views: 1350
Re: @logmode?
You mean determine what it is currently set to? No, unfortunately not.
- Sat May 16, 2026 3:02 pm
- Forum: Programming
- Topic: Get date format for active page?
- Replies: 7
- Views: 3122
Re: Get date format for active page?
@dateval usually just figures it out without needing a format
- Sat May 16, 2026 5:44 am
- Forum: Programming
- Topic: Get date format for active page?
- Replies: 7
- Views: 3122
Re: Get date format for active page?
No, it is a global setting in EViews.
I think there's probably an easy way to do what you want, but I don't understand, yet, what you're trying to do.
I think there's probably an easy way to do what you want, but I don't understand, yet, what you're trying to do.
- Thu May 14, 2026 3:37 pm
- Forum: General Information and Tips and Tricks
- Topic: Get Series with DisplayNames while using Show
- Replies: 3
- Views: 3989
Re: Get Series with DisplayNames while using Show
No, the spreadsheet view of a group does not allow you to use displaynames instead of actual names. You could write a quick add in that does it for you. Freeze the spreadsheet view of the group into a table, loop through the columns replacing the text in the first row with the displayname of the ser...
- Thu May 14, 2026 3:34 pm
- Forum: Programming
- Topic: Get date format for active page?
- Replies: 7
- Views: 3122
Re: Get date format for active page?
format or frequency? @pagefreq give the frequency.
Format is machine based, not page/file based.
Format is machine based, not page/file based.
- Tue May 12, 2026 8:57 am
- Forum: Data Manipulation
- Topic: Export to excel with equation/formula
- Replies: 1
- Views: 2493
Re: Export to excel with equation/formula
Not built in, no
- Tue May 12, 2026 8:56 am
- Forum: General Information and Tips and Tricks
- Topic: Get Series with DisplayNames while using Show
- Replies: 3
- Views: 3989
Re: Get Series with DisplayNames while using Show
I don't follow what you want here.
The show command is used to display a view of an object.
You could use
which would display the label view, that has the displayname as one of the entries?
The show command is used to display a view of an object.
You could use
Code: Select all
show object.label
