knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
options(digits = 2)

estimatr is a package in R dedicated to providing fast estimators that take into consideration designs often used by social scientists. Estimators are statistical methods for estimating quantities of interest like treatment effects or regression parameters. Many of the estimators included with the R programming language or popular R packages are slow and have default settings that lead to statistically inappropriate estimates. Certain estimators that reflect cutting-edge advances in statistics are not yet implemented in R packages for convenient use. estimatr is designed to solve these problems and provide estimators tuned for design-based inference.

The most up-to-date version of this vignette can be found on the DeclareDesign website here.

Estimators

The current estimators we provide are:

I first create some sample data to demonstrate how to use each of these estimators.

library(estimatr)

# Example dataset to be used throughout built using fabricatr and randomizr
set.seed(42)
library(fabricatr)
library(randomizr)
dat <- fabricate(
  N = 100,                        # sample size
  x = runif(N, 0, 1),             # pre-treatment covariate
  y0 = rnorm(N, mean = x),        # control potential outcome
  y1 = y0 + 0.35,                 # treatment potential outcome
  z = complete_ra(N),             # complete random assignment to treatment
  y = ifelse(z, y1, y0),          # observed outcome

  # We will also consider clustered data
  clust = sample(rep(letters[1:20], each = 5)),
  z_clust = cluster_ra(clust),
  y_clust = ifelse(z_clust, y1, y0)
)

head(dat)
knitr::kable(head(dat))

lm_robust

The estimatr package provides lm_robust() to quickly fit linear models with the most common variance estimators and degrees of freedom corrections used in social science. You can easily estimate heteroskedastic standard errors, clustered standard errors, and classical standard errors.

Usage largely mimics lm(), although it defaults to using Eicker-Huber-White robust standard errors, specifically "HC2" standard errors. More about the exact specifications used can be found in the mathematical notes and more about the estimator can be found on its reference page: lm_robust().

lmout <- lm_robust(y ~ z + x, data = dat)
summary(lmout)

Users can also easily get the output as a data.frame by using tidy().

tidy(lmout)
knitr::kable(tidy(lmout))

It is straightforward to do cluster-robust inference, by passing the name of your cluster variable to the clusters = argument. The default variance estimator with clusters is dubbed 'CR2' because it is analogous to 'HC2' for the clustered case, and utilizes recent advances proposed by @pustejovskytipton2016 to correct hypotheses tests for small samples and work with commonly specified fixed effects and weights. Note that lm_robust() is quicker if your cluster variable is a factor!

# Standard estimator with clustered assignment 'z_clust'
lmout <- lm_robust(
  y_clust ~ z_clust + x,
  data = dat
)
knitr::kable(tidy(lmout))
# With clustered standard errors
lmout_cl <- lm_robust(
  y_clust ~ z_clust + x,
  data = dat,
  clusters = clust
)
tidy(lmout_cl)
knitr::kable(tidy(lmout_cl))

Researchers can also replicate Stata's standard errors by using the se_type = argument both with and without clusters:

lmout_stata <- lm_robust(
  y_clust ~ z_clust + x,
  data = dat,
  clusters = clust,
  se_type = "stata"
)
tidy(lmout_stata)
knitr::kable(tidy(lmout_stata))

Furthermore, users can take advantage of the margins package to get marginal effects, average marginal effects and their standard errors, and more. Similarly, the prediction package from the same author also provides a suite of software for different kinds of predictions.

library(margins)

lmout_int <- lm_robust(y ~ x * z, data = dat)
mar_int <- margins(lmout_int, vce = "delta")
summary(mar_int)

library(prediction)
prediction(lmout_int)
prediction(lmout_int, at = list(x = c(-0.5, 0.5)))

Users who want their regression output in LaTeX or HTML can use the texreg package, which we extend for the output of both the lm_robust() and lm_lin() functions.

library(texreg)

texreg(lmout)

lm_lin

Adjusting for pre-treatment covariates when using regression to estimate treatment effects is common practice across scientific disciplines. However, @freedman2008 demonstrated that pre-treatment covariate adjustment biases estimates of average treatment effects. In response, @lin2013 proposed an alternative estimator that would reduce this bias and improve precision. @lin2013 proposes centering all pre-treatment covariates, interacting them with the treatment variable, and regressing the outcome on the treatment, the centered pre-treatment covariates, and all of the interaction terms. This can require a non-trivial amount of data pre-processing.

To facilitate this, we provide a wrapper that processes the data and estimates the model. We dub this estimator the Lin estimator and it can be accessed using lm_lin(). This function is a wrapper for lm_robust(), and all arguments that work for lm_robust() work here. The only difference is in the second argument covariates, where one specifies a right-sided formula with all of your pre-treatment covariates. Below is an example, and more can be seen on the function reference page lm_lin and some formal notation can be seen in the mathematical notes.

lml_out <- lm_lin(
  y ~ z,
  covariates = ~ x,
  data = dat
)
tidy(lml_out)
knitr::kable(tidy(lml_out))

The output of a lm_lin() call can be used with the same methods as lm_robust(), including the margins package.

iv_robust

We also implement a two-stage least squares instrumental variables estimator. This estimator provides a simple syntax and fast estimation of standard errors (users can select from the same set of standard error estimators as in lm_robust()).

# `x` is endogenous variable and `z` is the instrument
iv_out <- iv_robust(y ~ x | z, data = dat)
summary(iv_out)

difference_in_means

While estimating differences in means may seem straightforward, it can become more complicated in designs with blocks or clusters. In these cases, estimators need to average over within-block effects and estimates of variance have to appropriately adjust for features of a design. We provide support for unit-randomized, cluster-randomized, block-randomized, matched-pair randomized, and matched-pair clustered designs. Usage is similar to usage in regression functions. More examples can be seen on the function reference page, difference_in_means(), and the actual estimators used can be found in the mathematical notes.

# Simple version
dim_out <- difference_in_means(
  y ~ z,
  data = dat
)
tidy(dim_out)
knitr::kable(tidy(dim_out))
# Clustered version
dim_out_cl <- difference_in_means(
  y_clust ~ z_clust,
  data = dat,
  clusters = clust
)
tidy(dim_out_cl)
knitr::kable(tidy(dim_out_cl))

You can check which design was learned and which kind of estimator used by examining the design in the output.

data(sleep)
dim_mps <- difference_in_means(extra ~ group, data = sleep, blocks = ID)
dim_mps$design

horvitz_thompson

Horvitz-Thompson estimators yield unbiased treatment effect estimates when the randomization is known. This is particularly useful when there are clusters of different sizes being randomized into treatment or when the treatment assignment is complex and there are dependencies across units in the probability of being treated. Horvitz-Thompson estimators require information about the probability each unit is in treatment and control, as well as the joint probability each unit is in the treatment, in the control, and in opposite treatment conditions.

The estimator we implement here, horvitz_thompson() estimates treatment effects for two-armed trials. The easiest way to specify your design and recover the full set of joint and marginal probabilities is to declare your randomization scheme by using declare_ra() from the randomizr package. I show some examples of how to do that below. Again, the technical details for this estimator can be found here and in references in those notes.

# Complete random assignment declaration
crs_decl <- declare_ra(
  N = nrow(dat),
  prob = 0.5,
  simple = FALSE
)

ht_comp <- horvitz_thompson(
  y ~ z,
  data = dat,
  ra_declaration = crs_decl
)
tidy(ht_comp)
knitr::kable(tidy(ht_comp))

We can also easily estimate treatment effects from a cluster randomized experiment. Letting horvitz_thompson know that the design is clustered means it uses a collapsed estimator for the variance, described in @aronowmiddleton2013.

# Clustered random assignment declaration
crs_clust_decl <- declare_ra(
  N = nrow(dat),
  clusters = dat$clust,
  prob = 0.5,
  simple = FALSE
)

ht_clust <- horvitz_thompson(
  y_clust ~ z_clust,
  data = dat,
  ra_declaration = crs_clust_decl
)
tidy(ht_clust)
knitr::kable(tidy(ht_clust))

You can also build the condition probability matrix (condition_prob_mat =) that horvitz_thompson() needs from a declaration from the randomizr package---using declaration_to_conditional_pr_mat()---or from a matrix of permutations of the treatment vector---using permutations_to_conditional_pr_mat(). This is largely intended for use by experienced users. Note, that if one passes a condition_prob_mat that indicates clustering, but does not specify the clusters argument, then the collapsed estimator will not be used.

# arbitrary permutation matrix
possible_treats <- cbind(
  c(1, 1, 0, 1, 0, 0, 0, 1, 1, 0),
  c(0, 1, 1, 0, 1, 1, 0, 1, 0, 1),
  c(1, 0, 1, 1, 1, 1, 1, 0, 0, 0)
)
arb_pr_mat <- permutations_to_condition_pr_mat(possible_treats)

# Simulating a column to be realized treatment
dat <- data.frame(
  z = possible_treats[, sample(ncol(possible_treats), size = 1)],
  y = rnorm(nrow(possible_treats))
)

ht_arb <- horvitz_thompson(
  y ~ z,
  data = dat,
  condition_pr_mat = arb_pr_mat
)
tidy(ht_arb)
knitr::kable(tidy(ht_arb))

References



graemeblair/DDestimate documentation built on April 2, 2024, 2:07 p.m.