@Stdev and DB
Posted: Sun Mar 04, 2012 2:52 pm
Hi Guys, how are you doing?
I am trying to calculate the statistics of a bunch of independent variables located in the DB, and it seems to me that if I do the calculation with variables directly from the database, EViews would give me a "Syntax Error" response.
e.g.,
Tchaithonov
I am trying to calculate the statistics of a bunch of independent variables located in the DB, and it seems to me that if I do the calculation with variables directly from the database, EViews would give me a "Syntax Error" response.
e.g.,
Any ideas?scalar z = @stdev(abc) ' This one is okay, but ...
scalar z = @stdev(abc::abc) ' This one would give me a syntax error
series z = @stdev(abc::abc) ' This one is okay too, but I only want 1 number....
Tchaithonov