The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

Replication by rdlearn

Introduction

The R package rdlearn implements the safe policy learning under regression discontinuity designs with multiple cutoffs of Zhang et al.(2022). It provides functions to learn improved treatment assignment rules (cutoffs) which are guaranteed to yield no worse overall outcomes than the existing cutoffs.

In this vignette, we replicate some of the empirical application results from Section 6 of Zhang et al. (2022).

Installation

The rdlearn package for R can be downloaded using (requires previous installation of the remotes package).

remotes::install_github("kkawato/rdlearn@0.1.1")

Load the package after the installation is complete.

library(rdlearn)

Data

For our case study, we download the acces dataset and apply the proposed methodology to the ACCES (Access with Quality to Higher Education) program, a national-level subsidized loan initiative in Colombia. To qualify for the ACCES program, students must achieve a high score on the SABER 11, the national high school exit exam. Each student is assigned a position score ranging from 1 to 1,000, based on each student’s position in terms of 1,000 quantiles.

To select ACCES beneficiaries, the Colombian Institute for Educational Loans and Studies Abroad establishes an eligibility cutoff such that students whose position scores are higher than the cutoff become eligible for the ACCES program. The eligibility cutoff is defined separately for each department (or region) of Colombia (see Melguizo et al. (2016) for more details).

The acces dataset includes four columns. The elig column contains the outcome (eligibility for the ACCES program (1: eligible; 0: not eligible). The saber11 column contains running variable (position scores from the SABER 11 exam). The cutoff column contains the eligibility cutoff for each department, and the department column contains the names of the departments.

library(rdlearn)

# Load acces data
data(acces)
head(acces)
## # A tibble: 6 × 4
##    elig saber11 cutoff department
##   <dbl>   <dbl>  <dbl> <chr>     
## 1     1      -2   -729 ANTIOQUIA 
## 2     1      -5   -729 ANTIOQUIA 
## 3     1     -11   -729 ANTIOQUIA 
## 4     1     -12   -729 ANTIOQUIA 
## 5     1     -14   -729 ANTIOQUIA 
## 6     1     -15   -729 ANTIOQUIA

Main Analysis: Cutoff change relative to the baseline for each department under different smoothness multiplicative factors

First, we demonstrate how to output the summary of Table 1 in Zhang et al. (2022), which includes local treatment effect estimates at the baseline cutoffs. This can be done as follows:

rdestimate_result <- rdestimate(
  data = acces,
  y = "elig",
  x = "saber11",
  c = "cutoff",
  group_name = "department"
)
print(rdestimate_result)
##                 Group Sample_size Baseline_cutoff RD_Estimate   se p_value
## 1           MAGDALENA         214            -828        0.55 0.41   0.177
## 2          LA GUAJIRA         209            -824        0.57 0.31   0.062
## 3             BOLIVAR         646            -786        0.00 0.21   0.982
## 4             CAQUETA         238            -779        0.56 0.35   0.107
## 5               CAUCA         322            -774        0.02 0.78   0.977
## 6             CORDOBA         500            -764       -0.63 0.26   0.014
## 7               CESAR         211            -758        0.53 0.37   0.160
## 8               SUCRE         469            -755        0.21 0.11   0.049
## 9           ATLANTICO         448            -754        0.81 0.15   0.000
## 10             ARAUCA         214            -753       -0.70 1.11   0.526
## 11    VALLE DEL CAUCA         454            -732        0.61 0.16   0.000
## 12          ANTIOQUIA         416            -729        0.70 0.21   0.001
## 13 NORTE DE SANTANDER         233            -723       -0.08 0.43   0.858
## 14           PUTUMAYO         236            -719       -0.47 0.79   0.556
## 15             TOLIMA         347            -716        0.12 0.31   0.687
## 16              HUILA         406            -695        0.06 0.23   0.797
## 17             NARINO         463            -678        0.08 0.19   0.677
## 18       CUNDINAMARCA         403            -676        0.12 0.81   0.882
## 19          RISARALDA         263            -672        0.41 0.42   0.330
## 20            QUINDIO         215            -660       -0.03 0.11   0.824
## 21          SANTANDER         437            -632        0.74 0.25   0.003
## 22             BOYACA         362            -618        0.48 0.36   0.187
## 23   DISTRITO CAPITAL         539            -559        0.66 0.14   0.000

This provides basic information, including the sample size and baseline cutoff for each group, as well as the RD treatment effect and standard error. RD treatment effects marked with an asterisk (**) are significant at the 5% level.

Next, we demonstrate how to obtain the results of Figure 2, which shows the cutoff change relative to the baseline for each department under different smoothness multiplicative factors (M). Due to the computational time required, we are presenting a part of Figure 2. Learning safe cutoffs can be done as follows:

# set seed for replication
set.seed(12345) 
# only a subset of data is used
acces_filtered <- acces[acces$department %in% c("DISTRITO CAPITAL", "MAGDALENA"), ]

# To replicate exactly, set data = acces, fold = 20 and M = c(0, 1, 2, 4)
rdlearn_result <- rdlearn(
  data = acces_filtered, 
  y = "elig", # elig
  x = "saber11", # saber11
  c = "cutoff", # cutoff
  group_name = "department",
  fold = 2,
  M = 1,
  cost = 0,
  trace = FALSE
)
summary(rdlearn_result)
## 
## ── Basic Information ───────────────────────────────────────────────────────────
##              Group Sample_size Baseline_cutoff RD_Estimate   se p_value
## 1        MAGDALENA         214            -828        0.55 0.41   0.177
## 2 DISTRITO CAPITAL         539            -559        0.66 0.14   0.000
## 
## ── Safe Cutoffs and Original Cutoff ────────────────────────────────────────────
##                  original M=1,C=0
## MAGDALENA            -828    -806
## DISTRITO CAPITAL     -559    -584
## 
## ── Numerical Difference of Cutoffs ─────────────────────────────────────────────
##                  M=1,C=0
## MAGDALENA             22
## DISTRITO CAPITAL     -25
## 
## ── Measures of Difference ──────────────────────────────────────────────────────
##      M=1,C=0
## l1  23.50000
## l2  23.54782
## max 25.00000
plot(rdlearn_result, opt = "dif")

This plot shows the cutoff changes relative to the baseline for each department under different smoothness multiplicative factors (M).

The main function here is rdlearn. The arguments include data for the dataset, y for the column name of outcome, x for the column name of running variable, c for the column name of cutoff, and group_name for the column name of group. These arguments specify the data we analyze. The fold argument specifies the number of folds for cross-fitting.

For sensitivity analysis, the M argument specifies the multiplicative smoothness factor and cost specifies the treatment cost.

For an rdlearn_result object obtained by rdlearn, we can use summary to display the RD estimates, the obtained safe cutoffs, and the differences between the safe and original cutoffs.

The plot function provides a clear visualization of the safe cutoffs. Using plot(result, opt = "safe") shows the obtained safe cutoffs, while plot(result,opt = "dif") shows the differences between the safe and original cutoffs.

The trace argument can be set to TRUE to show progress during the learning process.

Sensitivity Analysis: Cutoff change relative to the baseline for each department with varying cost of treatment

Next, we show results for another sensitivity analysis, as shown in Figure 3 in Zhang et al.(2022). For the same reason, we are presenting only a part of Figure 3.

In the case of Zhang et al.(2022), we assume the utility function \(u(y, w) = y - C \times w\), where \(y\) is a binary outcome (representing the utility gain from enrollment), \(C\) is a cost parameter ranging from 0 to 1, and \(w\) is a binary treatment indicator (representing the offering of a loan). To explore the trade-off between cost and utility, we conduct a sensitivity analysis for the cost parameter: \(C\).

We use the sens function with the rdlearn_result object as follows:

# To replicate exactly, set cost = c(0, 0.2, 0.4, 0.6, 0.8, 1)
sens_result <- sens(
  rdlearn_result,
  M = 1,
  cost = 1,
  trace = FALSE)
plot(sens_result, opt = "dif")

This plot shows the cutoff change relative to the baseline for each department under different values of cost.

If the learning process has already been implemented and the rdlearn_result object is available, the sens function can be used to modify parameters specifically for sensitivity analysis.

References

Zhang, Y., Ben-Michael, E. and Imai, K. (2022) ‘Safe Policy Learning under Regression Discontinuity Designs with Multiple Cutoffs’, arXiv [stat.ME]. Available at: http://arxiv.org/abs/2208.13323.

Melguizo, T., F. Sanchez, and T. Velasco (2016). Credit for low-income students and access to and academic performance in higher education in Colombia: A regression discontinuity approach. World Development, 80, 61–77.

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.