Search found 12820 matches
- Wed Apr 14, 2021 8:08 am
- Forum: Add-in Writing area
- Topic: How to use "_this"
- Replies: 3
- Views: 10958
Re: How to use "_this"
Unfortunately not - there is no way to name an unnamed object. That's why _this is provided.
- Tue Apr 13, 2021 8:48 am
- Forum: Bug Reports
- Topic: Why me, why always me
- Replies: 6
- Views: 140
- Mon Apr 12, 2021 10:30 am
- Forum: Bug Reports
- Topic: Why me, why always me
- Replies: 6
- Views: 140
Re: Why me, why always me
Try now.
- Mon Apr 12, 2021 9:14 am
- Forum: Add-in Writing area
- Topic: Issue with addin command
- Replies: 5
- Views: 470
Re: Issue with addin command
Yep, its a bug. Will be fixed next patch (EV12, poss. 11)
- Wed Apr 07, 2021 2:00 pm
- Forum: Models
- Topic: Model solver producing inaccurate results
- Replies: 1
- Views: 208
Re: Model solver producing inaccurate results
email support@eviews.com the workfile.
- Tue Apr 06, 2021 5:33 am
- Forum: Programming
- Topic: Plot links at workfile frequency
- Replies: 4
- Views: 459
- Mon Apr 05, 2021 8:03 pm
- Forum: Programming
- Topic: Plot links at workfile frequency
- Replies: 4
- Views: 459
Re: Plot links at workfile frequency
Which command are you using to do the plot?
- Mon Apr 05, 2021 5:49 pm
- Forum: Econometric Discussions
- Topic: Dummy Variable (near matrix error)
- Replies: 2
- Views: 321
Re: Dummy Variable (near matrix error)
Run this code:
Code: Select all
wfcreate u 100
series y=@nrnd
series x1=@nrnd
series x2=@nrnd
series x3 = x1+x2
group g x1 x2 x3
show g.corr
equation eq1.ls y c x1 x2 x3
- Mon Apr 05, 2021 8:20 am
- Forum: Estimation
- Topic: GARCH Eviews calculation of forecast questions
- Replies: 2
- Views: 173
Re: GARCH Eviews calculation of forecast questions
Hit the forecast button and enter a name in the garch box
- Mon Apr 05, 2021 7:34 am
- Forum: Add-in Writing area
- Topic: Best way to set up user dialogs for add-in conditional on GUI execution
- Replies: 2
- Views: 239
Re: Best way to set up user dialogs for add-in conditional on GUI execution
Typical way is to check whether any inputs were given as options or arguments. If none were, then it was executed via menu.
- Mon Apr 05, 2021 7:10 am
- Forum: Bug Reports
- Topic: Single string counted as two
- Replies: 4
- Views: 345
Re: Single string counted as two
Parenthesis can act as word breaks too
- Sun Apr 04, 2021 4:01 pm
- Forum: Add-in Writing area
- Topic: Issue with addin command
- Replies: 5
- Views: 470
Re: Issue with addin command
I’m reasonably confident (although on vacation currently so can’t check definitively) that strong objects can’t have add-ins.
- Wed Mar 31, 2021 9:50 am
- Forum: Programming
- Topic: Negative values after interpolation and seasonal adjustment
- Replies: 2
- Views: 177
Re: Negative values after interpolation and seasonal adjustment
I think this is first an economic question (i.e. what exactly do you want to do with those negative values), and then a programming question.
- Wed Mar 31, 2021 5:59 am
- Forum: Programming
- Topic: Table for data releases
- Replies: 3
- Views: 138
Re: Table for data releases
ok, got it. Not easy. There's two ways I can think of. One would be to stack the data in a new page with each group being a row on the new page. This is complex. The other way is to manually create a table object and copy the data into the cells of the table one by one. Something like: table mytable...
- Tue Mar 30, 2021 4:13 pm
- Forum: Programming
- Topic: programming MLE using data series at different frequencies
- Replies: 8
- Views: 2544
Re: programming MLE using data series at different frequencies
As far as I know all univariate MIDAS estimation (with the exception of GARCH) requires lower frequency dependent variable.