formula.wbm {panelr} | R Documentation |
Retrieve model formulas from wbm
objects
Description
This S3 method allows you to retrieve the formula used to
fit wbm
objects.
Usage
## S3 method for class 'wbm'
formula(x, raw = FALSE, ...)
Arguments
x |
A |
raw |
Return the formula used in the call to |
... |
further arguments passed to or from other methods. |
Examples
data("WageData")
wages <- panel_data(WageData, id = id, wave = t)
model <- wbm(lwage ~ lag(union) + wks, data = wages)
# Returns the original model formula rather than the one sent to lme4
formula(model)
[Package panelr version 0.7.8 Index]