summarise_nls_MC: Summarize Monte Carlo simulations of linear least squares...

View source: R/functions.R

summarise_nls_MCR Documentation

Summarize Monte Carlo simulations of linear least squares models

Description

Summarizes the output of the nls_MC() function. For each fitted parameter mean, original estimate, standard deviation and confidence intervals are computed.

Usage

summarise_nls_MC(data, conf.level = 0.95)

Arguments

data

A tibble generated by nls_MC().

conf.level

Level for confidence interval calculation (defaults to 0.95).

Examples

n <- nls(mpg ~ k * e ^ wt, data = mtcars, start = list(k = 1, e = 2))
s <- nls_MC(n)
summarise_nls_MC(s, conf.level = 0.99)

Jonas-Wilhelm/jwtools documentation built on April 14, 2025, 4:10 a.m.