Learn R Programming

pepr (version 0.5.0)

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)

Value

An element held in "Config" object

Arguments

x

a "Config" object.

i

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

name

name of the element to access.

Examples

Run this code
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