simpleappendenv: Combine tables from environment into one table by appending...

View source: R/rows_manage.R

simpleappendenvR Documentation

Combine tables from environment into one table by appending rows

Description

Combine tables from environment into one table by appending rows

Usage

simpleappendenv(x, name = "DF")

Arguments

x

data.frame or data.table to append

name

name to call database of appended x

Value

object named with name argument in .GlobalEnv with data from x appended at end

Examples

for (v in 1:3){
  df <- data.frame(a = stats::runif(3), b = c("a", "b", "c"))
  df$version <- v
  simpleappendenv(x = df, name = "DF")
}


DHatziioanou/simpleepi documentation built on Sept. 24, 2024, 5:25 a.m.