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
Related Posts with Plotting Quantile treatment effects with 95% confidence interval
Finding "new" occurrences in panel dataDear Stata Users, I am trying to identify when an observation is a "new "occurrence in within a pan…
Trouble with nested option in synthHi all, I am trying to use the user-contributed synth to estimate with synthetic control method. I a…
Problem with stcox hazard modelHi all, I am trying to use stcox to create a multivariable cox proportional hazard model. I am runni…
marginal effects after Heckman Probit modelHi all, can anyone recall the command that one can use to estimate the marginal effects after a Heck…
Trend analysisI am interested in comparing a linear trend model with 1) power trend, 2) exponential trend, and 3) …
Subscribe to:
Post Comments (Atom)
0 Response to Plotting Quantile treatment effects with 95% confidence interval
Post a Comment