% Generated by roxygen2: do not edit by hand % Please edit documentation in R/tidy_glmmtmb.R \name{extract_fixed_effect} \alias{extract_fixed_effect} \title{Extract Fixed Effects from a GLMMTMB Model Summary} \usage{ extract_fixed_effect(x) } \arguments{ \item{x}{A glmmTMB model object.} } \value{ A dataframe containing the fixed effects and their corresponding statistics. } \description{ This function extracts fixed effects from the summary of a glmmTMB model. } \examples{ model <- glmmTMB::glmmTMB(Sepal.Length ~ Sepal.Width + Petal.Length, data = iris) fixed_effects <- extract_fixed_effect(model) }