math.qt | R Documentation |
Compute the corresponding quantile given confident interval bounds
math.qt(ci = 0.9)
math.mm(Vmax, S, Km, V, round = NULL)
ci |
confident interval eg. 0.9 for 90 percent confident intervals |
Vmax |
The maximum velocity of the enzymatic reaction. |
S |
The substrate concentration. |
Km |
The substrate concentration at which the reaction rate is half of Vmax. |
V |
The current velocity of the enzymatic reaction |
round |
round result to number of decimal places |
vector of two numeric values for the quantile based on the confident interval chosen
result of calculation of Michaelis-Menten equation
# Get the bounds for 90% confident intervals
math.qt(0.9)
# Get the bounds for 95% confident intervals
# use the bounds to obtain quartile
values = number(100)
values
ci = math.qt(0.95)
getquart = quantile(values, probs = ci)
getquart
math.mm(3,500,0.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.