Hello everyone,
I have the following problem; I have created a scatter plot of displaying medians of a treatment and a control group from 1997 to 20012 with a visual cutpoint in 2004. To make it easier to read I now want to reduce the coefficients on both sides of the cutpoint to the mean value. I have been able to calculate the mean value before 2004 and after but I don't know which command to use to reduce the scatterplot to display the mean values devided by a visual cutpoint in 2004.
I used this to produce the scatterplot with medians in each year:
twoway (scatter med_inc_t year, xlabel(1997(3)2012) xtitle("Years") ytitle("Median Income in EUR") title("Wage Employment: Treated vs. Control") xline(2004, lcolor (red)) connect(line) lcolor(black) mcolor(black) legend(label(1 "Treated"))) ///
(scatter med_inc_c year , connect(line) lpattern(dash) lcolor(black) mcolor(black) legend(label(2 "Control")) msymbol(Oh))
graph save scatter_treated_control, replace
and I used this to calculate the mean of the medians before 2004 and after:
egen mean_inc_male_t_post=mean(med_inc_male_t) if year>2004
egen mean_inc_male_t_pre=mean(med_inc_male_t) if year<2004
egen mean_inc_male_c_post=mean(med_inc_male_c) if year>2004
egen mean_inc_male_c_pre=mean(med_inc_male_c) if year<2004
egen mean_inc_fem_t_post=mean(med_inc_fem_t) if year>2004
egen mean_inc_fem_t_pre=mean(med_inc_fem_t) if year<2004
egen mean_inc_fem_c_post=mean(med_inc_fem_c) if year>2004
egen mean_inc_fem_c_pre=mean(med_inc_fem_c) if year<2004
Thank you for your help!
Related Posts with Scatterplot only displaying means
Never allow Stata to replace datasetI have ingrained in my muscle memory to press "ctrl+s" every time before I run a .do file in case St…
Problem with saving graphs with wildcard in namesHi there! I'm having some difficulties saving and combining graphs that I have created using a fore…
Writing GMM moment conditions for IPWHi all, I am trying to estimate the ATE of an IPW model by writing a GMM code. I am having trouble …
Stata evalautes what comes after an if statement that it's not trueHi all, I have a do-file (Testing ceqef.do, attached) which I'm using to test an ado-file (ceqef.ad…
Merging dataHello, I am trying to merge variables from the original Demographic and Health surveys (DHS) with t…
Subscribe to:
Post Comments (Atom)
0 Response to Scatterplot only displaying means
Post a Comment