Search found 592 matches
- Tue Aug 04, 2026 1:35 pm
- Forum: Data Manipulation
- Topic: Unexpected result with function @datediff
- Replies: 2
- Views: 404
Re: Unexpected result with function @datediff
Hello, The confusion actually originates from the expression @date(lag1), not the @datediff function. "Dynamic" per-observation lags are only available for series (and perhaps some special cases I don't recall at the moment). Instead of raising an error, EViews is just using the first valu...
- Tue Jul 28, 2026 10:49 am
- Forum: Bug Reports
- Topic: Fan chart in Stochastinc simulation
- Replies: 1
- Views: 654
Re: Fan chart in Stochastinc simulation
Hello,
What steps are you following to create the fan charts?
What steps are you following to create the fan charts?
- Thu Jul 23, 2026 10:28 am
- Forum: Models
- Topic: Model targetting (via model.control) always delivers 0.01
- Replies: 1
- Views: 990
Re: Model targetting (via model.control) always delivers 0.01
Hello, The value 0.01 is one of the possible fixed starting values used during the control procedure, so it sounds like the procedures is silently failing without any feedback as to why. You appear to be using the control procedure to adjust just a single series, which means you can use the older (p...
- Tue Jul 07, 2026 9:43 am
- Forum: Models
- Topic: EViews 14: stochastic simulations with linked vs unlinked equations
- Replies: 3
- Views: 1755
Re: EViews 14: stochastic simulations with linked vs unlinked equations
Hello, Your understanding appears to be correct. You can use the 'rndseed' command to set the internal state of EViews' random number generators and create reproducible simulations. As an aside, be aware that the order in which equations are specified in the model may still interact with the fixed r...
- Mon Jul 06, 2026 2:45 pm
- Forum: Models
- Topic: EViews 14: stochastic simulations with linked vs unlinked equations
- Replies: 3
- Views: 1755
Re: EViews 14: stochastic simulations with linked vs unlinked equations
Hello, Plenty to answer here... 1. If I use linked equation objects in the model, they are automatically loaded in as stochastic objects with specific standard deviation 2. If I use the equation representation which provides substituted coefficients and load in into the model as text, it loads in th...
- Thu Jun 25, 2026 11:13 am
- Forum: Bug Reports
- Topic: Tables with empty cells: unexpected results from a loop search for a string
- Replies: 1
- Views: 1578
Re: Tables with empty cells: unexpected results from a loop search for a string
Hello, You're correct that comparisons with the empty string can be a bit unintuitive (we actually had this discussion 9 years ago 8)). Your basic comparison expression, tab(!i,1) <> "c", is one in which an empty table cell will be treated as a missing value rather than an empty string, an...
- Thu Jun 25, 2026 10:53 am
- Forum: Bug Reports
- Topic: function @rinstr not working properly
- Replies: 1
- Views: 1548
Re: function @rinstr not working properly
Hello, The @rinstr function is behaving as intended. While the @rinstr function performs a right-to-left search for a matching substring, in contrast to @instr's left-to-right search, both functions return a character location for the match, which is numbered left-to-right starting at 1. The search ...
- Tue Jun 09, 2026 1:48 pm
- Forum: Bug Reports
- Topic: stom / stomna on a large balanced panel hangs indefinitely in EViews 14 (instant in EViews 12)
- Replies: 2
- Views: 2922
Re: stom / stomna on a large balanced panel hangs indefinitely in EViews 14 (instant in EViews 12)
Hello,
You're correct, a severe performance loss issue is present in the stom/stomna commands for the recent versions of EViews. The next patch for EViews 14 will restore the commands' performance.
You're correct, a severe performance loss issue is present in the stom/stomna commands for the recent versions of EViews. The next patch for EViews 14 will restore the commands' performance.
- Mon Jun 01, 2026 4:23 pm
- Forum: Bug Reports
- Topic: PNG graph.save(t=png,d=300) exports at ~96 DPI metadata, not 300 DPI
- Replies: 1
- Views: 2913
Re: PNG graph.save(t=png,d=300) exports at ~96 DPI metadata, not 300 DPI
Hello,
You're correct that the DPI information wasn't being recorded correctly. The next patch to EViews 14 will include a fix for this issue.
You're correct that the DPI information wasn't being recorded correctly. The next patch to EViews 14 will include a fix for this issue.
- Wed Apr 15, 2026 4:15 pm
- Forum: Bug Reports
- Topic: Model solve with stochastic simulations crashes if bootstrap sample discontinuous
- Replies: 9
- Views: 5903
Re: Model solve with stochastic simulations crashes if bootstrap sample discontinuous
Hello,
A fix will be included in the new EViews patch.
A fix will be included in the new EViews patch.
- Mon Jun 16, 2025 3:03 pm
- Forum: Bug Reports
- Topic: VAR forecast
- Replies: 1
- Views: 30748
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: 29515
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: 26178
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: 40657
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: 50744
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...
