This function will bind the rows of all dataframes together that match a certain pattern

bind_df(input)

Arguments

input

Pattern of the dataframes that you want to row bind

Examples

dd1 <- data.frame(a = 1, b = 2) dd2 <- data.frame(a = 3, b = 4) dd3 <- data.frame(a = 5, b = 6) bind_df("dd")
#> # A tibble: 0 x 0