Learn R Programming

quickcode (version 1.0.6)

math.qt: Miscellaneous math computations: Corresponding m-m and quantile for confident intervals

Description

Compute the corresponding quantile given confident interval bounds

Usage

math.qt(ci = 0.9)

math.mm(Vmax, S, Km, V, round = NULL)

Value

vector of two numeric values for the quantile based on the confident interval chosen

result of calculation of Michaelis-Menten equation

Arguments

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

Examples

Run this code

# 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)

Run the code above in your browser using DataLab