Hi all,
I am trying to get rdrobust results with the mserd bandwidth, half of it, and double it. I am running the following code. It tells me that bwselect is incorrectly specified. Any ideas on this? Thanks!
rdbwselect call_accept riskx, kernel(tri) p(1) c(0) bwselect(mserd)
local bandwidth=e(h_mserd)
local bandhalf=`bandwidth'/2
local banddouble=`bandwidth'*2
rdrobust call_accept riskx, p(1) c(0) bwselect(mserd)
outreg2 using "table2.xls", replace
rdrobust call_accept riskx, p(1) c(0) bwselect(`bandhalf')
outreg2 using "table2.xls", append
rdrobust call_accept riskx, p(2) c(0) bwselect(mserd)
outreg2 using "table2.xls", append
rdrobust call_accept riskx, p(2) c(0) bwselect(`banddouble')
outreg2 using "table2.xls", append
I am trying to get rdrobust results with the mserd bandwidth, half of it, and double it. I am running the following code. It tells me that bwselect is incorrectly specified. Any ideas on this? Thanks!
rdbwselect call_accept riskx, kernel(tri) p(1) c(0) bwselect(mserd)
local bandwidth=e(h_mserd)
local bandhalf=`bandwidth'/2
local banddouble=`bandwidth'*2
rdrobust call_accept riskx, p(1) c(0) bwselect(mserd)
outreg2 using "table2.xls", replace
rdrobust call_accept riskx, p(1) c(0) bwselect(`bandhalf')
outreg2 using "table2.xls", append
rdrobust call_accept riskx, p(2) c(0) bwselect(mserd)
outreg2 using "table2.xls", append
rdrobust call_accept riskx, p(2) c(0) bwselect(`banddouble')
outreg2 using "table2.xls", append
Comment