brm_tab: Generate Coefficient Significance tables from brm model

View source: R/brm_tab.R

brm_tabR Documentation

Generate Coefficient Significance tables from brm model

Description

Generate Coefficient Significance tables from brm model

Usage

brm_tab(fit, digits = 2, predlabs, ...)

Arguments

fit

model fit by brm function

digits

number of digits to round

predlabs

optional vetor of labels for each predictor

Value

Tibble with 4 columns: Name, Prob, 95

Examples

require(brms)
x = 1:100
y = x^2 + rnorm(length(x))
z = runif(length(x),0,length(x))
g = rep(1:4,each = 25)
df = tibble(x = x,y = y,z = z, g = g)
brmfit = brm(y ~ x^2 + z + (1|g), data = df)
brm_tab(brmfit)

Ajfrick/ajfhelpR documentation built on June 30, 2023, 12:56 a.m.