combine: Combine several data.frames by rowbind

View source: R/tools.R

combineR Documentation

Combine several data.frames by rowbind

Description

Combine several data.frames by rowbind

Usage

combine(...)

Arguments

...

data.frames or matrices with not necessarily overlapping colnames

Details

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().

Value

A data.frame

Examples

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)

dkaschek/dMod documentation built on July 27, 2023, 11:45 p.m.