Dear statalist,

I am using the following code to plot the QTE along with 95 % CI.


capture postutil clear
program QTE
tempname cicqte
postfile `cicqte' quantile coefficient lb ub using holding, replace
quietly {
forvalues i=1/9 {
local ii = `i'/10
cic non_zero_el cloud_daily temp_daily, group(TREAT) time(POST) reps(5000)
post `cicqte' (`ii') (_b[TREAT_POST])
}

}
postclose `cicqte'
end
use holding, clear
graph twoway connected coefficient lb ub quantile


But I am not getting the output when I finally execute the code use cicqte, clear and Stata gives me the following error.file holding.dta not found

Anyone helping me out is really appreciated.



Kindly,
Fissha