summarise_nls_MC | R Documentation |
Summarizes the output of the nls_MC() function. For each fitted parameter mean, original estimate, standard deviation and confidence intervals are computed.
summarise_nls_MC(data, conf.level = 0.95)
data |
A tibble generated by nls_MC(). |
conf.level |
Level for confidence interval calculation (defaults to 0.95). |
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.