Skip to contents

Print a synthdid object

Usage

# S3 method for class 'synthdid_estimate'
print(x, ...)

Arguments

x

The object to print

...

Additional arguments (currently ignored).

Value

Invisibly returns the original object

Examples

# \donttest{
data(california_prop99)
setup <- panel.matrices(california_prop99)
tau.hat <- synthdid_estimate(setup$Y, setup$N0, setup$T0)
print(tau.hat)
#> synthdid: -15.604 +- NA. Effective N0/N0 = 16.4/38~0.4. Effective T0/T0 = 2.8/19~0.1. N1,T1 = 1,12. [NOT CONVERGED] 
# }