Description Usage Arguments Value Examples
Performs rbind on SQLDataFrame objects.
1 2 |
... |
One or more |
deparse.level |
See ‘?base::cbind’ for a description of this argument. |
A SQLDataFrame object.
1 2 3 4 5 6 7 8 9 10 11 12 13 | obj1 <- SQLDataFrame(dbname = "inst/extdata/test.db",
dbtable = "state",
dbkey = c("region", "population"))
obj2 <- SQLDataFrame(dbname = "inst/extdata/test1.db",
dbtable = "state1",
dbkey = c("region", "population"))
obj1_sub <- obj1[1:10, 2:3]
obj2_sub <- obj2[8:15,2:3]
## rbind
res_rbind <- rbind(obj1_sub, obj2_sub)
res_rbind
dim(res_rbind)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.