simpleappendenv | R Documentation |
Combine tables from environment into one table by appending rows
simpleappendenv(x, name = "DF")
x |
data.frame or data.table to append |
name |
name to call database of appended x |
object named with name argument in .GlobalEnv with data from x appended at end
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")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.