mathmisc: Miscellaneous math computations: Corresponding m-m and...

math.qtR Documentation

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)

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

Value

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

result of calculation of Michaelis-Menten equation

Examples


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


quickcode documentation built on April 11, 2025, 5:49 p.m.