Search found 9 matches
- Wed May 14, 2025 11:22 pm
- Forum: Programming
- Topic: Error while trying to access Eviews Application in Python
- Replies: 1
- Views: 43630
Error while trying to access Eviews Application in Python
I am using Eviews 13. I am trying to access Eviews Application from python code using both the below methods import win32com.client eviews_mgr = win32com.client.Dispatch("EViews.Manager.13") eviews_app = eviews_mgr.GetApplication() eviews_app.show() import py2eviews as pv eviewsapp = pv.Ge...
- Thu Mar 27, 2025 5:44 am
- Forum: Programming
- Topic: Save Eviews data in CSV file
- Replies: 3
- Views: 40388
Re: Save Eviews data in CSV file
Thanks, I finally got my answer from some earlier post and Eviews documentation as well.
Replying, if anyone is looking for such reference
It goes like :
alpha mydates = @datestr(@date, "YYYY")
wfsave(type=text) d:\output.csv byrow @keep mydates gdp_* @drop _date_
Replying, if anyone is looking for such reference
It goes like :
alpha mydates = @datestr(@date, "YYYY")
wfsave(type=text) d:\output.csv byrow @keep mydates gdp_* @drop _date_
- Thu Mar 27, 2025 2:43 am
- Forum: Programming
- Topic: Save Eviews data in CSV file
- Replies: 3
- Views: 40388
Re: Save Eviews data in CSV file
wfsave(type=text) d:\output.csv @keep crude_brent gdp_gr_*
Thanks it worked, but the first column is _date_ which has date (1990-01-01,) by default in csv.... i want it to be only year (1990).
How to do that.
Kindly help
Thanks it worked, but the first column is _date_ which has date (1990-01-01,) by default in csv.... i want it to be only year (1990).
How to do that.
Kindly help
- Thu Mar 27, 2025 2:41 am
- Forum: Programming
- Topic: Save Eviews data in CSV file
- Replies: 3
- Views: 40388
Re: Save Eviews data in CSV file
Thanks Steve for you reply on this as :
I would recommend not using SHOW but instead use WFSAVE(type=text). To limit it to just a few series, add the @keep (or @drop) argument:
Code: Select all
wfsave(type=text) output.csv @keep series1 series2
I would recommend not using SHOW but instead use WFSAVE(type=text). To limit it to just a few series, add the @keep (or @drop) argument:
Code: Select all
wfsave(type=text) output.csv @keep series1 series2
- Thu Mar 27, 2025 2:40 am
- Forum: Programming
- Topic: Save Eviews data in CSV file
- Replies: 3
- Views: 40388
Save Eviews data in CSV file
I am Eviews 13 user. I am working on creating a UI on top of Eviews using python. for performance increase, i am trying to load data in UI from CSV file, which is prepared as : 1. I ran "show" statement with selective series in Eviews 2. data is displayed in table format, 3. Rt click on ta...
- Wed Feb 28, 2018 1:28 am
- Forum: Installation and Registration
- Topic: Copying data from Workfile into Excel file by row
- Replies: 1
- Views: 21763
Copying data from Workfile into Excel file by row
I have a work file having series with data from 1990 to 2050. Now i want to copy the data from work file into excel file and that too by row means each series will be displayed in one row in excel and 1990 to 2050 will be displayed in column. First column of the excel is the name of the series. I am...
- Thu Jan 18, 2018 10:22 pm
- Forum: Programming
- Topic: How to run the program for Sampled year only and get result
- Replies: 4
- Views: 10644
Re: How to run the program for Sampled year only and get result
Thanks a lot. It is working now. :D
- Wed Jan 17, 2018 11:23 pm
- Forum: Programming
- Topic: How to run the program for Sampled year only and get result
- Replies: 4
- Views: 10644
Re: How to run the program for Sampled year only and get result
But in that case as well,how to check data only for sample years, like i want to check data for only 2022 to 2050. But each time i put a check, it runs on the entire set of data and not on sample years and gives pass or fail according to that.
- Wed Jan 17, 2018 2:13 am
- Forum: Programming
- Topic: How to run the program for Sampled year only and get result
- Replies: 4
- Views: 10644
How to run the program for Sampled year only and get result
I am an EViews10 user. I have a series from 1990 to 2050, which has mix set of values, 0, positive and negative.(attached work file). I want to check the values inside series for each year from 2022 to 2050 separately and publish result as passed if value is positive and failed if negative. I have t...
