list_merge_df <-
function(
list,
df,
...
){
assign("envir_meta", environment(), parent.env(environment()))
list <- lapply(list, merge,
y = get("df", envir = get("envir_meta")),
...)
return(list)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.