Description Usage Arguments Examples
View source: R/describe-data.R
describe_data
provides numerous descriptive estimators and bootstrap confidence intervals for
variable x
. describe_data
function is a "wrapper" for bmbstats
function.
1 2 3 4 5 6 | describe_data(
x,
estimator_function = data_estimators,
control = model_control(),
na.rm = FALSE
)
|
x |
Numeric vector |
estimator_function |
Function that takes |
control |
Control object returned from |
na.rm |
Should NAs be removed? Default is |
1 2 3 4 5 6 7 8 | desc1 <- describe_data(
iris$Sepal.Width,
estimator_function = data_estimators_simple,
control = model_control(confidence = 0.90, boot_samples = 1000)
)
desc1
plot(desc1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.