Returns a one-row summary of an event_study() result: sample sizes,
estimator, and VCOV type.
Arguments
- x
An
es_resultobject.- ...
Unused; kept for compatibility with the
broom::glance()generic.
Value
A one-row tibble with columns nobs, n_units, n_treated,
n_nevertreated, estimator, and vcov_type.
Examples
if (FALSE) { # \dontrun{
res <- event_study(df, outcome = y, time = year, timing = g,
unit = id, estimator = "cs")
broom::glance(res)
} # }