Learn R Programming

pepr (version 0.3.2)

select-config: Access "'>Config" object elements

Description

You can subset '>Config by identifier or by position using the `[`, `[[` or `$` operator. The string will be expanded if it's a path.

Usage

# S4 method for Config
[(x, i)

# S4 method for Config [[(x, i)

# S4 method for Config $(x, name)

Arguments

x

a "'>Config" object.

i

position of the identifier or the name of the identifier itself.

name

name of the element to access.

Value

An element held in "'>Config" object

Examples

Run this code
# NOT RUN {
projectConfig = system.file("extdata", "example_peps-master",
"example_amendments1", "project_config.yaml", package="pepr")
c=Config(projectConfig)
c[[2]]
c[2]
c[["sample_table"]]
c$sample_table

# }

Run the code above in your browser using DataLab