checkConv-methods {causalGel}R Documentation

Methods that returns information about convergence.

Description

Returns convergence codes and compares moments for the treated and the control groups.

Usage


## S4 method for signature 'causalGelfit'
checkConv(object, tolConv=1e-4, verbose=TRUE, ...)

Arguments

object

An object of class "causalGelfit"

tolConv

Tolerance to decide if balancing is achieved.

verbose

If FALSE nothinf is printed.

...

Arguments to pass to other methods.

Examples

data(nsw)

balm <- ~age+ed+black+hisp:married+nodeg+re75+I(re75^2)
g <- re78~treat
           
model <- causalModel(g, balm, nsw)
fit <- gelFit(model, gelType="EL")
checkConv(fit)


[Package causalGel version 0.2 Index]