Search found 13307 matches

by EViews Gareth
Thu Mar 28, 2024 10:30 am
Forum: Estimation
Topic: STL Forecasting
Replies: 3
Views: 36

Re: STL Forecasting

I'm not sure I understand what you're asking, sorry. Are you asking how to do the seasonal forecast, or how EViews does it? If the latter, the Help section has details here: https://eviews.com/help/helpintro.html#page/content%2Fseries-Seasonal_Adjustment.html%23ww161272 (scroll down to the paragraph...
by EViews Gareth
Thu Mar 28, 2024 6:42 am
Forum: Estimation
Topic: STL Forecasting
Replies: 3
Views: 36

Re: STL Forecasting

EViews doesn't support forecasting from its STL routine as a built in feature.
by EViews Gareth
Tue Mar 26, 2024 2:50 pm
Forum: Data Manipulation
Topic: Problem with frequency conversion
Replies: 3
Views: 92

Re: Problem with frequency conversion

It sounds like you're pasting in the wrong place.
by EViews Gareth
Tue Mar 26, 2024 9:24 am
Forum: Data Manipulation
Topic: Problem with frequency conversion
Replies: 3
Views: 92

Re: Problem with frequency conversioin

What does "rewrite in monthly" mean?

Perhaps you could include some screenshots of what you're doing?
by EViews Gareth
Mon Mar 25, 2024 1:52 pm
Forum: Programming
Topic: Passing Variable to "R"
Replies: 5
Views: 135

Re: Passing Variable to "R"

Don't put it in braces.
by EViews Gareth
Mon Mar 25, 2024 11:19 am
Forum: Programming
Topic: Passing Variable to "R"
Replies: 5
Views: 135

Re: Passing Variable to "R"

If you have something like: %fcast_series = "X" xput {%fcast_series} xon fcst_series<-ts({%fcst_series}) xoff that will be passed into R as: fcast_series<-ts("x") which will cause the error because R is not expecting the quotes. So you'd need to use R to remove the quotes. Perhap...
by EViews Gareth
Mon Mar 25, 2024 10:57 am
Forum: Programming
Topic: Passing Variable to "R"
Replies: 5
Views: 135

Re: Passing Variable to "R"

Presumably you've already used XPUT to transfer the data across, and the issue is referencing that variable in R?
by EViews Gareth
Mon Mar 25, 2024 10:32 am
Forum: Programming
Topic: Customizing Lags in ARDL Models
Replies: 4
Views: 76

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: 76

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: 4847

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: 185

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: 185

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: 97

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: 214

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: 214

Re: subsets of model equations

So just create a new empty model, and add the equations you want in it? What am I missing?

Go to advanced search