R/glue_dfs.R

Defines functions glue_dfs

glue_dfs <- function(x,
                     y,
                     glue = "") {

  return(
    rbind_df_list(
      list(
        x,
        create_glue_df(x, glue=glue),
        y
      )
    )
  );

}

Try the rock package in your browser

Any scripts or data that you put into this service are public.

rock documentation built on Dec. 28, 2022, 1:55 a.m.