Skip to contents

This function extracts fixed effects from the summary of a glmmTMB model.

Usage

extract_fixed_effect(x)

Arguments

x

A glmmTMB model object.

Value

A dataframe containing the fixed effects and their corresponding statistics.

Examples


model <- glmmTMB::glmmTMB(Sepal.Length ~ Sepal.Width + Petal.Length, data = iris)
fixed_effects <- extract_fixed_effect(model)