bind_df: Binding the Rows of Many Dataframes Together

Description Usage Arguments Examples

View source: R/bind_df.R

Description

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

Usage

1
bind_df(input)

Arguments

input

Pattern of the dataframes that you want to row bind

Examples

1
2
3
4
5
 dd1 <- data.frame(a = 1, b = 2)
 dd2 <- data.frame(a = 3, b = 4)
 dd3 <- data.frame(a = 5, b = 6) 

bind_df("dd")

ryanburge/socsci documentation built on June 6, 2020, 2:37 a.m.