Learn R Programming

pipr (version 1.4.0)

call_aux: call a table from .pip env

Description

call a table from .pip env

Usage

call_aux(table = NULL)

Value

data frame of auxiliary table

Arguments

table

character: name of table in .pip env. If NULL, it displays the names of tables available in .pip env

Examples

Run this code
# call one table

get_aux("gdp", assign_tb = TRUE, replace = TRUE) # PR 63
call_aux("gdp")

# see the name of several tables in memory
tb <- c("cpi", "ppp", "pop")
lapply(tb, get_aux, assign_tb = TRUE, replace = TRUE) # PR 63
call_aux()

Run the code above in your browser using DataLab