phase_space {chemdeg}R Documentation

Phase space, linearized model

Description

Given an ord_res object, this function returns the linearized model that best fits the data in the phase space. ord_res object can be obtained using the function det_order().

Usage

phase_space(x)

Arguments

x

an ord_res object

Value

Returns a lm class object.

See Also

det_order(), kin_regr(), results(), stats::lm()

Examples

t <- c(0, 4, 8, 12, 16, 20)
conc <- c(1, 0.51, 0.24, 0.12, 0.07, 0.02)
dframe <- data.frame(t, conc)
res <- det_order(dframe)

phase_space(res)

[Package chemdeg version 0.1.4 Index]