Description Usage Arguments Value Examples
calculate Michealis-Menten relation between x and velocity and rate
1 | getMMCurve(x, Vmax, kappaMM, constantValue = NA)
|
x |
numeric vector, independent variable in Michaelis-Menten function representing a concentration or dose |
Vmax |
is the maximum rate ( x * Vmax / (kappaMM + x ) ) with increasing x |
kappaMM |
scalar representing Michaelis-Menten constant wich is the x at the rate reaches half of Vmax |
constantValue |
mumeric constant if not |
data.frame given te relation between concentration and velocity and rate with columns
x
velocity wich is rate/concentration
rate rate ( x * Vmax / (kappaMM + x )
Vmax input value
kappaMM input value
1 2 3 | getMMCurve( x = seq( 0 , 1 , 0.01 ) , Vmax = 5 , kappaMM = 0.3 )
getMMCurve( x = seq( 0 , 3 , 0.01 ) , Vmax = 5 , kappaMM = 0.3 )
getMMCurve( x = seq( 0 , 1 , 0.01 ) , Vmax = 5 , kappaMM = 0.3 , constantValue = 3 )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.