Search found 53 matches

by nupogodi
Mon May 21, 2018 3:44 am
Forum: Suggestions and Requests
Topic: @wfind and asterisk
Replies: 3
Views: 7940

Re: @wfind and asterisk

This syntax is not valid currently:

if @isobject({%n}_{%y}) = 1 then

nor is:

if @isobject(%n_%y) = 1 then

However, @isobject should allow variables names insertion in parenthesis.
by nupogodi
Thu Feb 01, 2018 5:28 am
Forum: Suggestions and Requests
Topic: @wfind and asterisk
Replies: 3
Views: 7940

Re: @wfind and asterisk

@wlookup function could be augmented by search capability of attributes. This similar to @wquery function

@wlookup("name matches GDP* and freq=Q", "name")
by nupogodi
Thu Jan 25, 2018 12:08 pm
Forum: Suggestions and Requests
Topic: @wfind and asterisk
Replies: 3
Views: 7940

@wfind and asterisk

It would be useful to add asterisk feature to word search function

@wfind("I didx it", "did*") should return 2
by nupogodi
Thu Jan 04, 2018 6:40 am
Forum: Bug Reports
Topic: for loop syntax error
Replies: 3
Views: 4191

Re: for loop syntax error

Apparently it's valid in any other programming language in the world. In case of Python for example:

for c in "":
print c
by nupogodi
Thu Jan 04, 2018 6:15 am
Forum: Bug Reports
Topic: for loop syntax error
Replies: 3
Views: 4191

for loop syntax error

An empty list yields "Syntax error in control statement" but it's actually a valid statement

Code: Select all

%mylist = "A B C"    'this is ok
%mylist = " "       'this should also be valid

for %s {%mylist}
   %t = %s
next
by nupogodi
Thu Dec 21, 2017 7:58 am
Forum: Bug Reports
Topic: ardl syntax error
Replies: 4
Views: 5078

Re: ardl syntax error

LOG(@MOVAVC(ser,3)) still yields error message
by nupogodi
Wed Dec 20, 2017 2:36 am
Forum: Bug Reports
Topic: ARDL syntax error
Replies: 1
Views: 3079

ARDL syntax error

ARDL estimation yields syntax error when series are linked to a database

Code: Select all

_eq.ardl(trend=uconst) log(db::ser1) log(db::ser2)  @
freeze(req) _eq.ecreg


Syntax error in "<"syntax error: ')' not found after function
arguments">".
by nupogodi
Mon Nov 27, 2017 1:31 pm
Forum: Bug Reports
Topic: Model copy problem
Replies: 0
Views: 2384

Model copy problem

The list of excluded and overridden variables is not retained after making a copy of the model object

Code: Select all

workfile m 1998 2020

model mod
mod.exclude b e

copy mod copy_mod

show copy_mod
by nupogodi
Fri Nov 24, 2017 3:27 am
Forum: Bug Reports
Topic: ardl syntax error
Replies: 4
Views: 5078

ardl syntax error

Using functions (@pcy, @movav) in ARDL estimation yields syntax error

workfile m 1998 2020
series a = nrnd
series b =nrnd

equation ecm.ardl @pcy(a) @pcy(b) @
freeze(req) ecm.ecreg
by nupogodi
Tue Mar 28, 2017 1:35 am
Forum: Bug Reports
Topic: Eviews crash
Replies: 3
Views: 4500

Re: Eviews crash

Could this be another bug in case of ARDL in logs? ARDLs should only contain dlogs in short term part. I attached the data file...

equation eq.ardl(deplags=12,reglags=12) log(a) log(b)
freeze(coint) eq.cointrep

img.png
img.png (24.69 KiB) Viewed 4439 times
by nupogodi
Mon Mar 27, 2017 1:15 am
Forum: Bug Reports
Topic: Eviews crash
Replies: 3
Views: 4500

Eviews crash

The program crashes by:

equation eq
eq.boundstest
eq.cointrep
by nupogodi
Mon Oct 03, 2016 8:34 am
Forum: Bug Reports
Topic: matplace crash
Replies: 1
Views: 3485

matplace crash

Eviews crashes when { } is missing.

Code: Select all


wfcreate(wf=forecast,page=data) M 1995 2020

matrix(1,200) x  = na
matrix(1,4) y  = 2

%n = "x"

matplace(%n,y,1,1)
by nupogodi
Wed Sep 28, 2016 2:37 pm
Forum: Bug Reports
Topic: Eviews equation crashes
Replies: 2
Views: 3542

Re: Eviews equation crashes

After installing update of 21 Sept the problem disappeared.
by nupogodi
Wed Sep 28, 2016 11:53 am
Forum: Bug Reports
Topic: Eviews equation crashes
Replies: 2
Views: 3542

Eviews equation crashes

First create a workfile wfcreate(wf=forecast,page=data) M 1995 2020 series a = nrnd series b = nrnd Then enter a regression in command window and leave the equation window open ls a b c Enter the regression in command window again. ls a b c You will be asked "Delete the EQUATION?". Press o...
by nupogodi
Wed Sep 28, 2016 1:55 am
Forum: Bug Reports
Topic: stackedbar crash
Replies: 1
Views: 2796

stackedbar crash

Eviews crashes by:

Code: Select all

wfcreate(wf=forecast,page=data) M 1995 2020
matrix(5,1) _a =@nrnd
%s = ""
freeze(_a_ch) _a.mixed line(1) stackedbar({%s})

Go to advanced search