Description Usage Arguments Details Value Examples
subset of an equation list
1 2 |
x |
the equation list |
... |
logical expression for subsetting |
The argument ...
can contain "Educt", "Product", "Rate" and "Description".
The "
An object of class eqnlist
1 2 3 4 5 6 | reactions <- data.frame(Description = c("Activation", "Deactivation"),
Rate = c("act*A", "deact*pA"), A=c(-1,1), pA=c(1, -1) )
f <- as.eqnlist(reactions)
subset(f, "A" %in% Educt)
subset(f, "pA" %in% Product)
subset(f, grepl("act", Rate))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.