import_table: Import 'EViews' table objects(s) into R, R Markdown or...

View source: R/import_table.R

import_tableR Documentation

Import EViews table objects(s) into R, R Markdown or Quarto.

Description

Use this function to import EViews table objects(s) into R, R Markdown or Quarto.

Usage

import_table(wf = "", page = "*", table = "*")

Arguments

wf

Object or a character string representing the name of a workfile to be created

page

Object or a character string representing the name of a workfile page to be created

table

Name(s) or wildcard expressions for EViews table object(s) in an EViews workfile

Value

An EViews workfile

See Also

Other important functions: EviewsR-package, create_object(), eng_eviews(), eviews_graph(), eviews_import(), eviews_pagesave(), eviews_wfcreate(), eviews_wfsave(), exec_commands(), export(), export_dataframe(), import(), import_equation(), import_graph(), import_kable(), import_series(), import_workfile(), rwalk(), set_eviews_path()

Examples

library(EviewsR)
## Not run: 
demo(exec_commands)

# To import all table objects across all pages

import_table(wf="exec_commands")

# To import specific table objects, for example for example `OLSTable`

import_table(wf="exec_commands",table="OLStable")

# To import table objects on specific pages

import_table(wf="exec_commands",page="eviewspage")

# To access the table in base R

eviews$eviewspage_olstable

# To get the values above in R Markdown or Quarto

# chunkLabel$eviewspage_olstable


## End(Not run)

sagirumati/EviewsR documentation built on April 27, 2024, 7:06 a.m.