Learn R Programming

EviewsR (version 0.1.2)

import: Import EViews series to R as dataframe

Description

Use this function to import EViews series to R as dataframe

Usage

import(object_name="",wf="",page="",options="",source_description="",
table_description="",keep_list="",drop_list="",keepmap_list="",dropmap_list="",
smpl_spec="")

Value

An EViews workfile

Arguments

object_name

Object name to be to store the imported EViews series.

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.

options

Object or a character string of any of the acceptable `EViews` pagesave options, such as noid, nomapval, nonames.

source_description

The path and name of the file to be saved.

table_description

Further description of the source_description such as specifying the range=arg, byrow.

keep_list

Optional. Specify the list of `EViews` object to be saved.

drop_list

Optional. Specify the list of `EViews` object to be dropped.

keepmap_list

Optional. Specify the list of patterns of `EViews` object to be saved.

dropmap_list

Optional. Specify the list of patterns of `EViews` object to be dropped.

smpl_spec

Optional. Specify the `EViews` sample string

See Also

Other important functions: EviewsR, create_object(), eng_eviews(), eviews_graph(), eviews_import(), eviews_pagesave(), eviews_wfcreate(), eviews_wfsave(), exec_commands(), export(), import_table(), rwalk(), set_eviews_path()

Examples

Run this code
library(EviewsR)
if (FALSE) {
demo(exec_commands)

import(object_name="importedDataFrame",wf="EviewsR_exec_commands",drop_list = "y")

eviews$importedDataFrame

knitr::kable(head(eviews$importedDataFrame),format="pandoc",caption="Table from EviewsR")
}

Run the code above in your browser using DataLab