Thanks Jason.
Your suggestion worked fine
Search found 11 matches
- Fri Feb 17, 2012 3:50 am
- Forum: Programming
- Topic: Precision control for table.save
- Replies: 2
- Views: 2989
- Fri Feb 10, 2012 4:04 am
- Forum: Programming
- Topic: Precision control for table.save
- Replies: 2
- Views: 2989
Precision control for table.save
Hi folks,
I am searching for a mechanism to control precesion of numeric values when I execute
I searched and found some option in wfsave, but I want to save just a single table object and not the entire workfile
Any help will be appreciated
I am searching for a mechanism to control precesion of numeric values when I execute
Code: Select all
table.save temp.csv Any help will be appreciated
- Fri Sep 30, 2011 6:02 am
- Forum: Suggestions and Requests
- Topic: PMML
- Replies: 2
- Views: 4411
Re: PMML
Hi Moderators,
Does someone have an update on this?
Thanks Ravi
Does someone have an update on this?
Thanks Ravi
- Mon May 30, 2011 10:07 pm
- Forum: Programming
- Topic: com automation and makeresid
- Replies: 4
- Views: 4226
Re: com automation and makeresid
updated to 7.2 but still getting the same outputFirst thing to do is to ensure your copy of EViews is fully up to date. We had a recent bug that might make makeresid screwy.
- Mon May 30, 2011 2:16 am
- Forum: Programming
- Topic: com automation and makeresid
- Replies: 4
- Views: 4226
com automation and makeresid
when I execute makeresid via a vb script by executing command = equation & ".makeresid temp_resid" app.Run(command) command = "freeze(mode=overwrite,temp_resid2) temp_resid" app.Run(command) command = "temp_resid2.save " & output & "\\ACT_FIT_RES\\"...
- Fri May 06, 2011 1:02 am
- Forum: Programming
- Topic: can we check existance of fixed effects?
- Replies: 4
- Views: 4011
Re: can we check existance of fixed effects?
Thanks Gareth, that was helpful. My current working code snippet looks some thing like : temp = app.Get(equation & ".@options") If Left(temp,4) = "CX=F" then If Not objFSO.FolderExists(output & "\\Effects") Then objFSO.CreateFolder(output & "\\Effects&q...
- Wed May 04, 2011 10:51 am
- Forum: Programming
- Topic: Com Automation, VB Script, System Objects
- Replies: 7
- Views: 6844
Re: Com Automation, VB Script, System Objects
Hi Steve,
Thanks for your help.
I will try out your script soon and get back with the results
Also if it helps you debug I am running the script as extract.vbs and executing it along cscript.exe and my eviews version in 7.2
Thanks for your help.
I will try out your script soon and get back with the results
Also if it helps you debug I am running the script as extract.vbs and executing it along cscript.exe and my eviews version in 7.2
- Wed May 04, 2011 9:50 am
- Forum: Programming
- Topic: can we check existance of fixed effects?
- Replies: 4
- Views: 4011
can we check existance of fixed effects?
I am trying to extract fixed effects associated with all the existing equation objects in my workfile equations = app.Lookup("*","equation",1) For Each equation In equations command = "freeze(mode=overwrite,script_temp_fe) " & equation & ".effects" app...
- Tue May 03, 2011 4:03 am
- Forum: Programming
- Topic: Com Automation, VB Script, System Objects
- Replies: 7
- Views: 6844
Re: Com Automation, VB Script, System Objects
Hi Gareth,
Any Updates?
Any Updates?
- Fri Apr 29, 2011 10:46 am
- Forum: Programming
- Topic: Com Automation, VB Script, System Objects
- Replies: 7
- Views: 6844
Re: Com Automation, VB Script, System Objects
A pop up titled Make Residuals pops up
with options for ordinary,cholesky of covariance,square root of covariance and square root of corelation pops up.
When i select ordinary and select OK , I do get the residual series.
Why is it not working from COM? any Ideas?
with options for ordinary,cholesky of covariance,square root of covariance and square root of corelation pops up.
When i select ordinary and select OK , I do get the residual series.
Why is it not working from COM? any Ideas?
- Fri Apr 29, 2011 6:46 am
- Forum: Programming
- Topic: Com Automation, VB Script, System Objects
- Replies: 7
- Views: 6844
Com Automation, VB Script, System Objects
I am using EViews COM automation in order to invoke EViews from a VB script. I am using the script to extract the residuals of a system object. for that I have the following lines in my script equations = app.Lookup("*","system",1) For Each equation In equations command = "&...
