prints a summary of a LLIGE object

summary_LLIGE(object, ...)

Arguments

object

an LLIGE object

...

extra arguments

Value

summary of LLIGE

Examples

data(igm) igm$hs=ifelse(igm$HEDUC=="HS",1,0) igm$col=ifelse(igm$HEDUC=="COL",1,0) formla=lcfincome~lfincome xformla=~hs+col tvals=seq(quantile(igm$lfincome,probs = 0.1),quantile(igm$lfincome,probs = 0.9),length.out = 10) h=1.2 data=igm B=7 cl=1 object=LLIGE(B,formla=formla, xformla=xformla, data=data,tvals=tvals,h=h,cl=cl) summary_LLIGE(object)
#> #> Reference: Callaway, Brantly and Huang, Weige "Local Intergenerational Elasticities" Working Paper <https://bcallaway11.github.io/files/Callaway-Huang-LIGE/lige.pdf>, 2018.
#> $llige #> [1] 0.4615451 0.4646090 0.4703728 0.4508735 0.4597155 0.4568141 0.4541572 #> [8] 0.4169723 0.4288262 0.3931531 #> attr(,"class") #> [1] "localIGE" #> #> $SD #> [1] 0.07893394 0.05625735 0.08447672 0.09297584 0.08260800 0.08673934 #> [7] 0.07292445 0.03544097 0.04311918 0.08449898 #> attr(,"class") #> [1] "sdF" #> #> attr(,"class") #> [1] "LLIGE"