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
Stata shows "wrong" valueHey, I have a dta file with several variables. The properties of the variables in the dta file are …
Generating a new variable from one variable and part of anotherHello, I am looking to create a variable for the total health expenditure for females. I currently h…
Difficulty in stata codesI have three dta files for three sectors of an economy (and these are the only three sectors that co…
In a fixed effects logit regression does Stata only drop observations that have no variation in the outcome variable? Or also the controls?I have a 3 wave panel of children's height and weight and parents employment or unemployment (binary…
convergence not achieved in qregHi I am trying to do qreg of x variables on Y. one of my X(Return ID-1) variable is a part of the Y…
Subscribe to:
Post Comments (Atom)
0 Response to Plotting Quantile treatment effects with 95% confidence interval
Post a Comment