ci | R Documentation |
Returns a data frame with the columns 'mean', 'lower', and 'upper' reflecting the mean and lower and upper bounds of a confidence interval for every column in the data frame
ci(df, ci = 0.95)
df |
A data frame with all numeric columns. |
ci |
The sensitivity of the computed confidence interval (CI).
Defaults to |
df <- data.frame( unif = runif(1000, 0, 1), norm = rnorm(1000, 0, 1), lnorm = rlnorm(1000, 0, 1) ) ci(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.