tidy.asym | R Documentation |
fdm
and asym
modelspanelr
provides methods to access fdm
and asym
data in a
tidy format
## S3 method for class 'asym'
tidy(x, conf.int = FALSE, conf.level = 0.95, ...)
## S3 method for class 'fdm'
tidy(x, conf.int = FALSE, conf.level = 0.95, ...)
## S3 method for class 'fdm'
glance(x, ...)
x |
An |
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 |
if (requireNamespace("clubSandwich")) {
data("WageData")
wages <- panel_data(WageData, id = id, wave = t)
model <- fdm(lwage ~ wks + union, data = wages)
if (requireNamespace("generics")) {
generics::tidy(model)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.