select-config {pepr} | R Documentation |
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 signature 'Config'
x[i]
## S4 method for signature 'Config'
x[[i]]
## S4 method for signature 'Config'
x$name
Arguments
x |
a |
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
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
[Package pepr version 0.5.0 Index]