I'm trying to plot the coefficients of rdrobust estimates using coefplot: Here is what I'm trying to do:
Code:
 foreach depvar of varlist var1 var2 var3 var4{  
rdrobust `depvar' running_variable, kernel(triangular) bwselect(cerrd) p(1) estimates store  `depvar'
 }  
coefplot _est_var1 _est_var2 _est_var3 _est_var4 , replace xline(0)


But Im receiving the following error message: "estimation result _est_var1 not found.

Anyone Knows how to solve this? Or how to use coefplot with rdrobust. Thanks!