select-config | R Documentation |
"Config"
object elementsYou can subset Config by identifier or by position using the
`[`
, `[[`
or `$`
operator.
The string will be expanded if it's a path.
## S4 method for signature 'Config'
x[i]
## S4 method for signature 'Config'
x[[i]]
## S4 method for signature 'Config'
x$name
x |
a |
i |
position of the identifier or the name of the identifier itself. |
name |
name of the element to access. |
An element held in "Config"
object
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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.