tidy.asym_gee {panelr} | R Documentation |
Tidy methods for wbgee
models
Description
panelr
provides methods to access wbgee
data in a tidy format
Usage
## S3 method for class 'asym_gee'
tidy(x, conf.int = FALSE, conf.level = 0.95, ...)
## S3 method for class 'wbgee'
tidy(x, conf.int = FALSE, conf.level = 0.95, ...)
## S3 method for class 'wbgee'
glance(x, ...)
Arguments
x |
A |
conf.int |
Logical indicating whether or not to include a confidence
interval in the tidied output. Defaults to |
conf.level |
The confidence level to use for the confidence interval if
|
... |
Ignored |
Examples
if (requireNamespace("geepack")) {
data("WageData")
wages <- panel_data(WageData, id = id, wave = t)
model <- wbgee(lwage ~ lag(union) + wks, data = wages)
if (requireNamespace("generics")) {
generics::tidy(model)
}
}
[Package panelr version 0.7.8 Index]