Dear all,
I am performing a RDD analysis and would like to plot point estimates of treatment effect and respective confidence intervals against chosen bandwidth.
I am not using rdrobust, rather a linear regression with a dummy for the observation being above the cutoff.
I am running a loop for each bandwidth size I want to plot, each time estimating
where more300 is 1[st_pc01>=0], st_pc01 is the standardized population (running variable) and 0 is the cutoff.
The command which gets me closer to what I want is coefplot.
I am running
This gives me the graph below:

This almost looks like what I want, but if I try to rename the xaxis "RD bandwidth" and label the ticks from 50 to 300, the graph squeezes to the left and nothing can be seen.
I guess I am not using the right command? Is somebody able to help me with this?
What I would like is something like this:

Thank you very much,
Marianna
I am performing a RDD analysis and would like to plot point estimates of treatment effect and respective confidence intervals against chosen bandwidth.
I am not using rdrobust, rather a linear regression with a dummy for the observation being above the cutoff.
I am running a loop for each bandwidth size I want to plot, each time estimating
Code:
reg TOT2011 more300 x_vs , [iweights=kernel] vce(robust) estimates store bw`size'
The command which gets me closer to what I want is coefplot.
I am running
Code:
coefplot bw50 bw60 bw70 bw80 bw90 bw100 bw110 bw120 bw130 bw140 bw150 bw160 bw170 \\\ bw180 bw190 bw200 bw210 bw220 bw230 bw240 bw250 bw260 bw270 bw280 bw290 bw300 , \\\ keep(more300) vertical yline(0) legend(off) replace mcolor(black) \\\ ciopts(lcolor(black) recast(rcap)) xtick(#25)
This almost looks like what I want, but if I try to rename the xaxis "RD bandwidth" and label the ticks from 50 to 300, the graph squeezes to the left and nothing can be seen.
I guess I am not using the right command? Is somebody able to help me with this?
What I would like is something like this:
Thank you very much,
Marianna
Comment