eviews_pagesave {EviewsR} | R Documentation |
Save an EViews
workfile page.
Description
Use this function in R, R Markdown and Quarto to save an EViews
workfile page.
Usage
eviews_pagesave(
wf = "",
page = "",
options = "",
source_description = "",
table_description = "",
keep_list = "",
drop_list = "",
keepmap_list = "",
dropmap_list = "",
smpl_spec = "",
save_path = dirname(source_description)
)
Arguments
wf |
Object or a character string representing the name of an |
page |
Object or a character string representing the name of an |
options |
Object or a character string of any of the acceptable |
source_description |
The path and name of the file to be saved. |
table_description |
Further description of the |
keep_list |
Optional. Specify the list of |
drop_list |
Optional. Specify the list of |
keepmap_list |
Optional. Specify the list of patterns of |
dropmap_list |
Optional. Specify the list of patterns of |
smpl_spec |
Optional. Specify the |
save_path |
Object or a character string representing the path to the folder to save the |
Value
An EViews workfile.
See Also
Other important functions:
EviewsR
,
create_object()
,
eng_eviews()
,
eviews_graph()
,
eviews_import()
,
eviews_wfcreate()
,
eviews_wfsave()
,
exec_commands()
,
export_dataframe()
,
export()
,
import_equation()
,
import_graph()
,
import_kable()
,
import_series()
,
import_table()
,
import_workfile()
,
import()
,
rwalk()
,
set_eviews_path()
Examples
library(EviewsR)
## Not run:
demo(exec_commands)
eviews_pagesave(wf="exec_commands",source_description = "eviews_pagesave.csv",
drop_list = "y")
## End(Not run)