Description Usage Arguments Details Value Examples
Combine several data.frames by rowbind
1 |
... |
data.frames or matrices with not necessarily overlapping colnames |
This function is useful when separating models into independent csv model files,
e.g.~a receptor model and several downstream pathways. Then, the models can be recombined
into one model by combine()
.
A data.frame
1 2 3 | data1 <- data.frame(Description = "reaction 1", Rate = "k1*A", A = -1, B = 1)
data2 <- data.frame(Description = "reaction 2", Rate = "k2*B", B = -1, C = 1)
combine(data1, data2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.