Hello,
A fix will be included in the new EViews patch.
Search found 583 matches
- Wed Apr 15, 2026 4:15 pm
- Forum: Bug Reports
- Topic: Model solve with stochastic simulations crashes if bootstrap sample discontinuous
- Replies: 9
- Views: 1553
- Mon Jun 16, 2025 3:03 pm
- Forum: Bug Reports
- Topic: VAR forecast
- Replies: 1
- Views: 27514
Re: VAR forecast
Hello,
It's indeed a bug. It'll be fixed in the next patch.
It's indeed a bug. It'll be fixed in the next patch.
- Fri Jun 13, 2025 1:56 pm
- Forum: Programming
- Topic: Ensuring "Include titles" checked in .CSV output dump
- Replies: 1
- Views: 26327
Re: Ensuring "Include titles" checked in .CSV output dump
Hello,
Include the "title" option with the save procedure, e.g.,
Include the "title" option with the save procedure, e.g.,
Code: Select all
tblSR.save(t=csv,title) "C:\Data\Fit\PMG\OUT\STUukPG\STUukPG_srCOEFFS.csv"
- Thu Jun 12, 2025 10:28 am
- Forum: Programming
- Topic: Incomplete string of equation info
- Replies: 1
- Views: 22887
Re: Incomplete string of equation info
Hello, Are you storing/viewing the result of @varlist or @subst via an alpha series? Alpha series have a adjustable character limit (Options -> General Options... -> Series and Alphas -> Alpha truncation) that would explain the issue you describe. However, if you simply avoid an alpha series, for ex...
- Thu Apr 17, 2025 10:25 am
- Forum: Estimation
- Topic: Lambda tunning
- Replies: 1
- Views: 32869
Re: Lambda tunning
Hello,
You can perform a Lasso regression as a special case using EViews' ENET estimator. The documentation has all the details, but you can easily evaluate multiple lambda values as part of the estimation.
You can perform a Lasso regression as a special case using EViews' ENET estimator. The documentation has all the details, but you can easily evaluate multiple lambda values as part of the estimation.
- Tue Mar 11, 2025 2:46 pm
- Forum: Programming
- Topic: Check if control variable is defined
- Replies: 4
- Views: 44141
Re: Check if control variable is defined
Hello, The setmaxerrs command specifies which error will halt the program, e.g. setmaxerrs 4 stopping at the 4th error, not the number of allowed errors, e.g. setmaxerrs 4 stopping at the 5th error. A difference of only one error, but I understand how the description of setmaxerrs could be ambiguous...
- Tue Feb 25, 2025 4:52 pm
- Forum: Models
- Topic: changes to addfactors?
- Replies: 2
- Views: 94313
Re: changes to addfactors?
Hello,
There have been updates to various model procedures, but nothing that I believe would cause such a fundamental change to add factor behavior. I haven't been able to replicate the issue you describe, would you be able to provide a workfile demonstrating the problem?
There have been updates to various model procedures, but nothing that I believe would cause such a fundamental change to add factor behavior. I haven't been able to replicate the issue you describe, would you be able to provide a workfile demonstrating the problem?
- Fri Feb 14, 2025 12:19 pm
- Forum: Suggestions and Requests
- Topic: Make the @first function properly taking account of panel data
- Replies: 3
- Views: 49294
Re: Make the @first function properly taking account of panel data
Hello,
The function you describe already exists: @firstsby. For your example, I believe "@firstsby(x, @crossid)" would produce the results you want.
The function you describe already exists: @firstsby. For your example, I believe "@firstsby(x, @crossid)" would produce the results you want.
- Tue Dec 10, 2024 7:27 pm
- Forum: Models
- Topic: Model solve
- Replies: 4
- Views: 73699
Re: Model solve
Hello, Given the situation you describe, I'd consider it very unlikely that the solution changes you've observed are a consequence of the underlying solver used, e.g. Broyden vs Newton. While changing the number of equations in the model will affect the sequence of innovations used across the stocha...
- Fri Nov 22, 2024 10:46 am
- Forum: Bug Reports
- Topic: setbounds
- Replies: 4
- Views: 45001
Re: setbounds
You're right. That should've been fixed in the most recent patch, but the next patch will correct this issue.
- Mon Nov 18, 2024 12:28 pm
- Forum: Bug Reports
- Topic: setbounds
- Replies: 4
- Views: 45001
Re: setbounds
Hello,
Yes, that's a small reporting error. Fixed in the next patch.
Yes, that's a small reporting error. Fixed in the next patch.
- Mon Nov 04, 2024 6:09 pm
- Forum: Programming
- Topic: Legal names for subroutines?
- Replies: 4
- Views: 42611
Re: Legal names for subroutines?
Hello,
Subroutine names follow the same general name rules as variables in EViews program. Specifically, subroutine names can be alphanumeric strings, not beginning with a numerical digit, and may include the symbols _ and $.
Subroutine names follow the same general name rules as variables in EViews program. Specifically, subroutine names can be alphanumeric strings, not beginning with a numerical digit, and may include the symbols _ and $.
- Mon Nov 04, 2024 5:47 pm
- Forum: Models
- Topic: Speed up model.control proc
- Replies: 8
- Views: 53439
Re: Speed up model.control proc
Hello, Elaborating on Gareth's response, there was a major update to the Model::control procedure in EView 12 when we introduced the ability for multivariate controls. While I'd describe the new algorithm as numerically superior overall, it can be more computationally intensive even in the univariat...
- Thu Oct 17, 2024 5:12 pm
- Forum: Estimation
- Topic: bootstrapping a model
- Replies: 3
- Views: 41642
Re: bootstrapping a model
Hello, No, at least not easily, as the model always internally generates the residuals for bootstrapping and there is no facility to provide your own series/group of custom residuals. Technically, you could alter the actual series so that the internally generated residuals would match your desired r...
- Fri Sep 27, 2024 3:23 pm
- Forum: Programming
- Topic: Try and Except in EViews
- Replies: 2
- Views: 20576
Re: Try and Except in EViews
Hello, EViews doesn't provide exception-style error handling, but a program can detect that an error has occurred and react rather than simply stopping. For example: setmaxerrs 2 fetch(d="x:\<path-to-a -database\somedatabase.edb") {%CONCEPTS} !error_occurred = @errorcount > 0 clearerrs set...
