sd_conf_intervals | R Documentation |
Calculate confidence intervals
sd_conf_intervals(estimates, par_list, hsn, conf_level = 0.95)
estimates |
A list or data frame |
par_list |
A list |
hsn |
Hessian matrix |
conf_level |
A numeric input indicating the confidence level |
A data frame.
estimates <- c(-0.2630303, 1.5788579)
par_list <- list(list(par_name = "par_inv_R0",
par_trans = "expit"),
list(par_name = "I0",
par_trans = "exp"))
hsn <- matrix(c(3513.10521, -493.5469626,
-493.5469626, 88.4871290), ncol = 2)
sd_conf_intervals(estimates, par_list, hsn)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.