tidy.cbmod {chainbinomial} | R Documentation |
Tidy a cbmod object
Description
Tidy a cbmod object
Usage
## S3 method for class 'cbmod'
tidy(x, conf.int = FALSE, conf.level = 0.95, ...)
Arguments
x |
A |
conf.int |
Logical indicating whether or not to include a confidence interval in the tidied output. Defaults to FALSE. |
conf.level |
The confidence level to use for the confidence interval if conf.int = TRUE. Defaults to 0.95, which corresponds to a 95 percent confidence interval. |
... |
Unused. |
Value
Returns a tibble with the following columns:
-
term
The coefficients name. -
estimate
The point estimates of the coefficients. -
std.error
Standard error of the regression coefficient estimates. -
p.value
P-values of the null hypothesis that the regression regression coefficient estimate is 0. -
conf.low
Ifconf.int = TRUE
, the lower end of the confidence interval. -
conf.high
Ifconf.int = TRUE
, the upper end of the confidence interval.
[Package chainbinomial version 0.1.5 Index]