knitr::opts_chunk$set( message = FALSE, warnings = FALSE, collapse = TRUE, comment = "#>", fig.path = "man/figures/README-" ) is_online = curl::has_internet() # knitr::include_graphics(.png) chunk: out.width = x%
This repository hosts the code underlying the R package SpatialRDD
. The workhorse functions in a nutshell are:
assign_treated()
border_segment()
discretise_border()
spatialrd()
plotspatialrd()
printspatialrd()
shift_border()
cutoff2polygon()
SpatialRDD
is the first (geo-)statistical package that unifies the geographic tasks needed for spatial RDDs with all potential parametric and non-parametric estimation techniques that have been put forward [see @Lehner2023a]. It makes it easy to understand critical assumptions regarding bandwidths, sparse border points, and border segment fixed effects. The package can estimate heterogeneous treatment effects alongside an RD cutoff. Moreover it provides powerful spatial functions to carry out placebo exercises (move borders and reassign (placebo) treatment status). These functionalities are also useful for different empirical identification strategies that rely on flexibly changing geographic boundaries.
For full guidance check out the different vignettes on the package website or with
vignette(spatialrdd_vignette)
vignette(shifting_borders)
in the R console. The functions that are presented in the latter are potentially useful for other research designs that rely on (randomly) shifting (many) borders.
# From CRAN install.packages("SpatialRDD") # For the latest stable development version install.packages("devtools") devtools::install_github("axlehner/SpatialRDD") # add build_vignettes = TRUE if you want to have access to them via R, otherwise just look at the .Rmd on github in \vignettes
What you need to run you own spatial RD with SpatialRDD
:
read.csv()
or with readstata13::read.dta13()
. Make them an sf object with st_as_sf(data, coords = c("x", "y"), crs = 4326)
if you have longitude/latitude as coordinates (which is reflected by the 4326 EPSG). Note: In case your data comes as a shapefile/geopackage/etc. directly, just read it in with st_read("path/to/file.shp")
. If these are polygons it is advised to work with the centroids straightaway (extract with st_centroid()
). If you need zonal statistics (on elevation/ruggednes etc.) for e.g. checking identifying assumptions, do these before converting to centroids.cutoff2polygon
though).sf::st_transform()
. See the reference below for more details.You could verify the "geographic validity" of your objects with e.g. mapview::mapview()
.
library(SpatialRDD); data(cut_off, polygon_full, polygon_treated); library(tmap) # simulate some data set.seed(1088) # set a seed to make the results replicable points_samp.sf <- sf::st_sample(polygon_full, 1000) points_samp.sf <- sf::st_sf(points_samp.sf) # make it an sf object bc st_sample only created the geometry list-column (sfc) points_samp.sf$id <- 1:nrow(points_samp.sf) # add a unique ID to each observation points_samp.sf$treated <- assign_treated(points_samp.sf, polygon_treated, id = "id") # assign treated # first we define a variable for the number of "treated" and control which makes the code more readable in the future NTr <- length(points_samp.sf$id[points_samp.sf$treated == 1]) NCo <- length(points_samp.sf$id[points_samp.sf$treated == 0]) points_samp.sf$education[points_samp.sf$treated == 1] <- 0.7 points_samp.sf$education[points_samp.sf$treated == 0] <- 0.6 points_samp.sf$education[points_samp.sf$treated == 1] <- rnorm(NTr, mean = 0, sd = .1) + points_samp.sf$education[points_samp.sf$treated == 1] points_samp.sf$education[points_samp.sf$treated == 0] <- rnorm(NCo, mean = 0, sd = .1) + points_samp.sf$education[points_samp.sf$treated == 0]
Adding border segment for transparent fixed effect category creation:
points_samp.sf$segment5 <- border_segment(points_samp.sf, cut_off, 5) tm_shape(points_samp.sf) + tm_dots("segment5", size = 0.1) + tm_shape(cut_off) + tm_lines()
If you want, you can create boundarypoints alongside the border to, inter alia, explore heterogeneity:
borderpoints.sf <- discretise_border(cutoff = cut_off, n = 50) results <- spatialrd(y = "education", data = points_samp.sf, cutoff.points = borderpoints.sf, treated = "treated", minobs = 30) plotspatialrd(results, map = T)
Lehner (2024) A Note On Spatial Regression Discontinuity Designs, mimeograph.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.