An open API service indexing awesome lists of open source software.

https://github.com/igutierrezm/blopmatch

Treatment-effects estimation by blop-matching in Stata
https://github.com/igutierrezm/blopmatch

blop-matching causal-inference matching stata treatment-effects

Last synced: 5 months ago
JSON representation

Treatment-effects estimation by blop-matching in Stata

Awesome Lists containing this project

README

          

# blopmatch

blopmatch estimates the average treatment effect and average treatment
effect on the treated from observational data by *blop-matching*, as proposed
by Díaz et al. (2015).

## Installation

To install this package in Stata, run the following commands:
```stata
// Uninstall any previous version of the packages lp and blopmatch
capture : ado uninstall lp
capture : ado uninstall blopmatch

// Install the new version of the package
local url "https://raw.githubusercontent.com/igutierrezm"
net install blopmatch, from("`url'/blopmatch/master")
```
After installation, type
```stata
help blopmatch
```
for additional details and examples.

## Usage

```stata
// Load a sample dataset
webuse cattaneo2

// Estimate the average treatment effect of mbsmoke on bweight
blopmatch (bweight mage prenatal1 mmarried fbaby) (mbsmoke)

// Refit the above model, but require exact matches on the binary variables
blopmatch (bweight mage) (mbsmoke), ematch(prenatal1 mmarried fbaby)
```