Hi all!
I was working on editing my twoway scatterplots, when moving on to the next one, stata gave the following error:
<istmt>: 3499 st_local() not found
The code I use is as follows:
twoway (scatter bf078 year if treat == 1 & lowincomelimit == 1 & bf078 < 6595, msize(vsmall) mcolor(red)) (scatter bf078 year if treat == 1 & lowincomelimit == 0 & bf078 < 6595, msize(vsmall) mcolor(blue)) (qfitci bf078 year if year < 2011 & treat == 1 & lowincomelimit == 1 & bf078 < 6595, sort lcolor(black)) (qfitci bf078 year if year > 2011 & treat == 1 & lowincomelimit == 1 & bf078 < 6595, sort lcolor(black)) (qfitci bf078 year if year < 2011 & treat == 1 & lowincomelimit == 0 & bf078 < 6595, sort lcolor (green)) (qfitci bf078 year if year > 2011 & treat == 1 & lowincomelimit == 0 & bf078 < 6595, sort lcolor(green)), xline(2011)
The code worked fine before. I don't know what happened that I do not get output anymore. Does someone know what to do?
I was working on editing my twoway scatterplots, when moving on to the next one, stata gave the following error:
<istmt>: 3499 st_local() not found
The code I use is as follows:
twoway (scatter bf078 year if treat == 1 & lowincomelimit == 1 & bf078 < 6595, msize(vsmall) mcolor(red)) (scatter bf078 year if treat == 1 & lowincomelimit == 0 & bf078 < 6595, msize(vsmall) mcolor(blue)) (qfitci bf078 year if year < 2011 & treat == 1 & lowincomelimit == 1 & bf078 < 6595, sort lcolor(black)) (qfitci bf078 year if year > 2011 & treat == 1 & lowincomelimit == 1 & bf078 < 6595, sort lcolor(black)) (qfitci bf078 year if year < 2011 & treat == 1 & lowincomelimit == 0 & bf078 < 6595, sort lcolor (green)) (qfitci bf078 year if year > 2011 & treat == 1 & lowincomelimit == 0 & bf078 < 6595, sort lcolor(green)), xline(2011)
The code worked fine before. I don't know what happened that I do not get output anymore. Does someone know what to do?
Comment