Learn R Programming

chainbinomial (version 0.1.5)

tidy.cbmod: Tidy a cbmod object

Description

Tidy a cbmod object

Usage

# S3 method for cbmod
tidy(x, conf.int = FALSE, conf.level = 0.95, ...)

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 If conf.int = TRUE, the lower end of the confidence interval.

  • conf.highIf conf.int = TRUE, the upper end of the confidence interval.

Arguments

x

A cbmod object.

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.