Description Usage Arguments Value Examples
Merge list file (From config package), list.right will overwrite the element also existed in list.left
1 | config.list.merge(list.left = list(), list.right = list())
|
list.left |
One list be merged left |
list.right |
One list be merged right |
A list
1 2 3 4 5 6 7 | config.json <- system.file('extdata', 'config.json', package='configr')
list.left <- list()
list.right <- eval.config(file = config.json)
config.list.merge(list.left, list.right)
list.left <- list(a=c(123,456))
list.right <- list(a=c(4,5,6))
config.list.merge(list.left, list.right)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.