Description Usage Arguments Value Author(s) Examples
compare two lists using the first list as a base; update the values of the first list if the second one has different values; add varibles to the first if they doe not exist in the first list.
1 | merge_lists(a, b)
|
a |
the 1st list |
b |
the 2nd list |
a list containing the merged configuration
Hanming Tu
1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run:
a <- "https://github.com/phuse-org/phuse-scripts/raw/master"
b <- "development/R/scripts"
c <- "Draw_Dist1_R.yml"
f1 <- paste(a,b,c, sep = '/')
dr <- resolve(system.file("examples", package = "phuse"), "02_display")
f2 <- paste(dr, "www", "Draw_Dist_R.yml", sep = '/')
r1 <- read_yml(f1)
r2 <- read_yml(f2)
r3 <- merge_lists(r1, r2)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.