rddtools is a new R package under development, designed to offer a set of tools to run all the steps required for a Regression Discontinuity Design (RDD) Analysis, from primary data visualisation to discontinuity estimation, sensitivity and placebo testing.
This github website hosts the source code. One of the easiest ways to install the package from github is by using the R package devtools:
if (!require('devtools')) install.packages('devtools')
devtools::install_github( "bquast/rddtools" )
Note however the latest version of rddtools only works with R 3.0, and that you might need to install Rtools if on Windows.
The (preliminary) documentation is available in the help files directly, as well as in the vignettes. The vignettes can be accessed from R.
vignette("rddtools")
Simple visualisation of the data using binned-plot: plot()
rdd_bw_ik()
rdd_bw_rsw()
rdd_reg_lm()
This includes specifying the polynomial order, including covariates with various specifications as advocated in Imbens and Lemieux 2008.rdd_reg_np()
. Can also include covariates, and allows different types of inference (fully non-parametric, or parametric approximation).rdd_pred()
), or to convert to other classes, to lm ( as.lm() ), or to the package np
( as.npreg()
).clusterInf()
either using a cluster covariance matrix ( vcovCluster() ) or by a degrees of freedom correction (as in Cameron et al. 2008).plotSensi()
plotPlacebo()
dens_test()
to the function DCdensity()
from package rdd
.covarTest_mean()
covarTest_dens()
house
Contains functions to replicate the Monte-Carlo simulations of Imbens and Kalyanaraman 2012: gen_mc_ik()