bootstrap.se: Non-parametric bootstrap Standard Error for the ATT

Description Usage Arguments Value Examples

View source: R/Bootstrap-SE.R

Description

Calculate the SE for the ATT with a non-parametric bootstrap method.

Usage

1
bootstrap.se(obj, Y, max.iter = 1000)

Arguments

obj

MatchIt Object

Y

Response Vector

max.iter

Maximum bootstrap Iterations. Default is 1000.

Value

SE for the ATT of Y

Examples

1
2
3
4
5
6
7
8
## Not run: 
  library(MatchIt)
  data("lalonde")
  m.out  <- matchit(treat ~ educ + black, data = lalonde)
  att(obj = m.out, Y = lalonde$re78)
  bootstrap.se(obj = m.out, Y = lalonde$re78)

## End(Not run)

Example output

[1] -590.0768
    mean       se 
-55.6640 952.9749 

MatchItSE documentation built on May 29, 2017, 4:30 p.m.