n_small <- 10
# Individual treatment effects: β_i ~ N(-0.5, 1)
# Negative on average: hospitalization helps (lower score = better health)
beta <- rnorm(n_small, mean = -0.5, sd = 1)
# Y(0): health score if NOT hospitalised (higher = worse health)
Y0 <- rnorm(n_small, mean = 3, sd = 0.5)
# Y(1): health score if hospitalised
Y1 <- Y0 + beta


