R/lrbind.R

Defines functions lrbind

Documented in lrbind

#' list row bind
#'
#' @param List list where each object is a data.frame
#'
#' @return single data.frame where each object is row bound
#' @export
#'

lrbind <- function(List){
  return(do.call("rbind", List))
}
jlivsey/livsey documentation built on Oct. 17, 2024, 3:18 a.m.