results {chemdeg}R Documentation

Summary of 'ord_res' object

Description

Returns the results of the analyses performed by det_order() function.

Usage

results(object)

Arguments

object

an 'ord_res' object

Details

The function prints:

  1. the linear regression performed in the phase space, together with the estimated n value and its 95% confidence interval

  2. a brief conclusion on the results obtained in the phase space stating which reaction order should be preferred

  3. the (non-)linear regression performed with parameters associated statistics. If a non-linear regression has been performed, the most common goodness-of-fit measures calculated with goodness_of_fit() are printed

Value

It prints a summary of the analysis in the phase space, the reaction order, and the regression results.

See Also

det_order(), kin_regr(), phase_space()

Examples

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

results(res)

[Package chemdeg version 0.1.4 Index]