Skip to contents

Returns a one-row summary of an event_study() result: sample sizes, estimator, and VCOV type.

Usage

glance.es_result(x, ...)

Arguments

x

An es_result object.

...

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)
} # }