create_object {EviewsR} | R Documentation |
Create an EViews
object on an existing workfile
Description
Use this function in R, R Markdown or Quarto to create an EViews
object on an existing workfile.
Usage
create_object(
wf = "",
page = "",
action = "",
action_opt = "",
object_name = "",
view_or_proc = "",
options_list = "",
arg_list = "",
object_type = "",
options = "",
expression = ""
)
Arguments
wf |
Object or a character string representing the name of an |
page |
Object or a character string representing the name of an |
action |
Any valid |
action_opt |
An option that modifies the default behaviour of the |
object_name |
The name of the |
view_or_proc |
The |
options_list |
An option that modifies the default behaviour of the |
arg_list |
A list of |
object_type |
EViews object type such as |
options |
Options for the |
expression |
Value to be assigned to the object |
Value
An EViews workfile
See Also
Other important functions:
EviewsR
,
eng_eviews()
,
eviews_graph()
,
eviews_import()
,
eviews_pagesave()
,
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)
create_object(wf="exec_commands",action="equation",
object_name="create_object",view_or_proc="ls",arg_list="y ar(1)")
create_object(wf="exec_commands",object_name="x1",
object_type="series",expression="y^2")
## End(Not run)