get | R Documentation |
config::get()
.Read from the currently active configuration, retrieving either a single named value or all values as a list.
get(
value = NULL,
config = Sys.getenv("R_CONFIG_ACTIVE", "default"),
file = Sys.getenv("R_CONFIG_FILE", "config.yml"),
use_parent = TRUE
)
value |
Name of value ( |
config |
Name of configuration to read from. Defaults to
the value of the |
file |
Configuration file to read from (defaults to
|
use_parent |
|
For additional details see https://rstudio.github.io/config/.
The requested configuration value (or all values as
a list of NULL
is passed for value
).
A list, or vector, corresponding to the contents of the config file.
We strongly recommend you use config::get()
rather than attaching the
package using library(config)
.
In fact, we strongly recommend you never use library(config)
.
The underlying reason is that the get()
and merge()
functions in
{config}
will mask these functions with the same names in base R.
is_active()
, merge()
yaml <- "
default:
trials: 5
dataset: 'data-sampled.csv'
production:
trials: 30
dataset: 'data.csv'
"
get <- base::get
with_config(yaml, config::get())
with_config(yaml, config::get("trials"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.