Skip to contents

Print method for synthdid convergence info

Usage

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

Arguments

x

A synthdid_convergence object

...

Additional arguments (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)
conv_info <- synthdid_convergence_info(tau.hat)
print(conv_info)
#> Synthdid Convergence Diagnostics
#> =================================
#> 
#> Overall Status: NOT CONVERGED 
#> 
#> Lambda weights optimization:
#>  converged iterations max_iter utilization
#>      FALSE      10000    10000      100.0%
#> 
#> Omega weights optimization:
#>  converged iterations max_iter utilization
#>      FALSE      10000    10000      100.0%
#> 
#> Recommendation: Consider increasing max.iter or relaxing min.decrease threshold.
# }