| cdb_rbind | R Documentation |
Merges one or more CompadreDB objects via a row-bind of the data slots.
cdb_rbind(..., fill = FALSE)
... |
CompadreDB objects |
fill |
Logical indicating whether data-slot columns should be unioned
across inputs and missing columns filled with |
A CompadreDB object created by binding the rows of all supplied CompadreDB objects
Sam Levin <levisc8@gmail.com>
Owen R. Jones <jones@biology.sdu.dk>
Other data management:
cdb_export_matlab(),
cdb_flatten(),
cdb_id(),
cdb_id_stages(),
cdb_id_studies(),
cdb_mean_matF(),
cdb_unflatten(),
cdb_unnest(),
mpm_elementwise_apply(),
mpm_mean(),
mpm_median(),
mpm_sd(),
string_representation
Compadre1 <- subset(Compadre, Continent == "Asia")
Compadre2 <- subset(Compadre, Continent == "Africa")
Compadre3 <- subset(Compadre, Continent == "Europe")
cdb_rbind(Compadre1, Compadre2)
cdb_rbind(Compadre1, Compadre2, Compadre3)
cdb_rbind(Compadre1, Compadre2[, names(Compadre2) != "CommonName"], fill = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.