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 EViews workfile.

page

Object or a character string representing the name of an EViews workfile page.

action

Any valid EViews command for EViews object declaration, like freeze, do, equation, table.

action_opt

An option that modifies the default behaviour of the EViews action.

object_name

The name of the EViews object to be acted upon.

view_or_proc

The EViews object view or procedure to be performed.

options_list

An option that modifies the default behaviour of the EViews view or procedure.

arg_list

A list of EViews view or procedure arguments.

object_type

EViews object type such as series, equation.

options

Options for the object_type.

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)


[Package EviewsR version 0.1.6 Index]