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
getting estimates when using bayes prefix for melogitHi Stata forum members, I need some advice on how to get estimates after fitting melogit using baye…
Concatenate of a string and a numberDear statalister, I am trying to merge to database, I would like to try using a concatenate of coun…
1-to-(n) Propensity score matching without replacementHi, I was hoping if someone can help me with this. I have a data set with about 100 cases and 6000 …
Merging datesHi, I'm trying to merge two dates variables from the same dataset, but I would like to prioritize o…
Assigning variable values to observations based common values of other variables...I have a data set with 3 variables: one identifies the contract number; one identifies the type of c…
Subscribe to:
Post Comments (Atom)
0 Response to Plotting Quantile treatment effects with 95% confidence interval
Post a Comment