(Deprecated) Calculate confidence interval as a tidy data frame
Source:R/deprecated-0-7-0.R
confint_tidy.Rd
This function is now deprecated and will be removed from a future release of broom.
Usage
confint_tidy(x, conf.level = 0.95, func = stats::confint, ...)
Arguments
- x
a model object for which
confint()
can be calculated- conf.level
confidence level
- func
A function to compute a confidence interval for
x
. Callingfunc(x, level = conf.level, ...)
must return an object coercible to a tibble. This dataframe like object should have to columns corresponding the lower and upper bounds on the confidence interval.- ...
extra arguments passed on to
confint
Details
Return a confidence interval as a tidy data frame. This directly wraps the
confint()
function, but ensures it follows broom conventions:
column names of conf.low
and conf.high
, and no row names.
confint_tidy
See also
Other deprecated:
bootstrap()
,
data.frame_tidiers
,
finish_glance()
,
fix_data_frame()
,
summary_tidiers
,
tidy.density()
,
tidy.dist()
,
tidy.ftable()
,
tidy.numeric()