Use this function to export R dataframe as an `EViews` workfile
export(source_description="",wf="",start_date = "",frequency = "",save_path = "")
An EViews workfile.
Description of the file from which the data is to be imported. The specification of the description is usually just the path and file name of the file.
Object or a character string representing the name of a workfile to be created
Object or a character string representing the start date
. It should be left blank for undated (when the frequency
is u
).
Object or a character string representing the frequency of a workfile page to be created. Only letters accepted by EViews are allowed. For example u
for undated, a
for annual, m
for monthly and so on.
Specify where to save the `EViews` workfile.
Other important functions:
EviewsR
,
create_object()
,
eng_eviews()
,
eviews_graph()
,
eviews_import()
,
eviews_pagesave()
,
eviews_wfcreate()
,
eviews_wfsave()
,
exec_commands()
,
import_table()
,
import()
,
rwalk()
,
set_eviews_path()
library(EviewsR)
if (FALSE) {
x=runif(100); y=runif(100); data=data.frame(x,y)
export(wf="EviewR_export",source_description=data,start_date = '1990',frequency = "m")
}
Run the code above in your browser using DataLab