Search found 13315 matches

by EViews Gareth
Mon Mar 25, 2024 10:32 am
Forum: Programming
Topic: Customizing Lags in ARDL Models
Replies: 4
Views: 142

Re: Customizing Lags in ARDL Models

Ah, you want separate lags for different regressors. Yeah, no :(
by EViews Gareth
Mon Mar 25, 2024 9:53 am
Forum: Programming
Topic: Customizing Lags in ARDL Models
Replies: 4
Views: 142

Re: Customizing Lags in ARDL Models

Use fixed lags.
by EViews Gareth
Fri Mar 22, 2024 9:45 am
Forum: Estimation
Topic: SARIMA INTEGRATED FACTORS
Replies: 6
Views: 5299

Re: SARIMA INTEGRATED FACTORS

It would choose the best ARIMA orders for the given seasonal difference of one.
by EViews Gareth
Wed Mar 20, 2024 2:34 pm
Forum: Programming
Topic: Simulation Issue in ARDL Model with EViews 13
Replies: 4
Views: 274

Re: Simulation Issue in ARDL Model with EViews 13

If you open the qe_sc2 series, over which dates does it have data?
by EViews Gareth
Wed Mar 20, 2024 2:00 pm
Forum: Programming
Topic: Simulation Issue in ARDL Model with EViews 13
Replies: 4
Views: 274

Re: Simulation Issue in ARDL Model with EViews 13

qe_sc2 needs values for the pre-sample periods (due to lags in the model).
by EViews Gareth
Tue Mar 19, 2024 11:11 am
Forum: Estimation
Topic: Inquiry Regarding Graphs and Regression Analysis in EViews
Replies: 1
Views: 135

Re: Inquiry Regarding Graphs and Regression Analysis in EViews

Recommend starting with the online tutorials:
https://eviews.com/Learning/index.html

Lesson 12 most appropriate.
by EViews Gareth
Wed Mar 06, 2024 8:43 am
Forum: Programming
Topic: subsets of model equations
Replies: 6
Views: 277

Re: subsets of model equations

Ah, now I see the issue.

Perhaps:

Code: Select all

%eqn = mod1.@spec("y400")
mod2.append {%eqn}


in a loop to loop through the variables you want.
by EViews Gareth
Tue Mar 05, 2024 8:26 pm
Forum: Programming
Topic: subsets of model equations
Replies: 6
Views: 277

Re: subsets of model equations

So just create a new empty model, and add the equations you want in it? What am I missing?
by EViews Gareth
Tue Mar 05, 2024 3:24 pm
Forum: Programming
Topic: Sum by Iterating through Variables by Name
Replies: 4
Views: 298

Re: Sum by Iterating through Variables by Name

Still not 100% sure I follow, but perhaps create the group with all the amuse*_area series, then loop through the series in that group, extract the numbers, and then create groups for the buckets. Roughly: group mygroup amuse*_area group mygroup12 group mygroup35 for !i mygroup.@count %j = mygroup.@...
by EViews Gareth
Tue Mar 05, 2024 3:12 pm
Forum: Programming
Topic: subsets of model equations
Replies: 6
Views: 277

Re: subsets of model equations

Not sure I understand the logic behind what gets included. Do you just have a list of equations you want included?
by EViews Gareth
Tue Mar 05, 2024 9:39 am
Forum: Programming
Topic: Sum by Iterating through Variables by Name
Replies: 4
Views: 298

Re: Sum by Iterating through Variables by Name

I'm not sure I follow exactly, but I think the way to go is to create groups using the group wildcard constructor, and then use the @rsum function to generate the sums. So, for example, if you want to create a sum of all the series who match the pattern "amuseXX_area", you'd have: group my...
by EViews Gareth
Wed Feb 28, 2024 12:09 pm
Forum: Data Manipulation
Topic: import data with the delimiter |
Replies: 5
Views: 3469

Re: import data with the delimiter |

I think you're out of luck.
by EViews Gareth
Tue Feb 27, 2024 1:56 pm
Forum: Estimation
Topic: Maximum Group Size for Regression
Replies: 5
Views: 5470

Re: Maximum Group Size for Regression

Create a new coefficient vector (not a vector, but a coef) called G, then use g instead of c
by EViews Gareth
Tue Feb 27, 2024 12:27 pm
Forum: Programming
Topic: maximum number of coefficients in a system
Replies: 5
Views: 9434

Re: maximum number of coefficients in a system

Use

Code: Select all

coef
instead of

Code: Select all

vector
by EViews Gareth
Fri Feb 23, 2024 2:13 pm
Forum: Estimation
Topic: Seasonal adjustment with national calendar
Replies: 1
Views: 201

Re: Seasonal adjustment with national calendar

The EViews implementation of X-13 allows you to assign a workfile series as a user-variable in the X-13 pre-adjustment regression. You can create at calendar variable similar to those built in to X-13, but supporting you specific calendar. Recommend reading the X-13 documentation to see how they def...

Go to advanced search