search for: rdd_reg_lm

Displaying 2 results from an estimated 2 matches for "rdd_reg_lm".

2018 Feb 09
0
Covariates in fuzzy RDD with rddtools
..._data(x=data.complete2$GDPpc.rel, y=data.complete2$GR.rate, z=data.complete2$FitTreat, covar=dummytime, cutpoint = 0.75) data.RDD1<-rdd_data(x=data.complete2$GDPpc.rel, y=data.complete2$GR.rate, z=data.complete2$FitTreat, covar=cbind(dummytime, dummyreg), cutpoint = 0.75) reg_para <- rdd_reg_lm(rdd_object=data.RDD, covar.opt = list(strategy= "include"), order = 4) reg_para1 <- rdd_reg_lm(rdd_object=data.RDD1, covar.opt = list(strategy = "include"), order = 4) where dummytime and dummyreg are two dummy variables considering time and regional effects. The probl...
2018 Feb 18
0
Instrument in rddtools
Hello! I have encountered some problems in implementing the function "rdd_reg_lm" (for the fuzzy case) in the rddtools R package. By looking at the function, I understood that an IV regression is actually implemented automatically by the function but I did not understand where to specify the instrument to be used to clear my treatment variable from endogeneity. The command...