Hello all,
I have the attached data set that I use for a two-way graph.
Although it is not in the data set, I get an extra data label on the x-axis. I could not eliminate it by putting limits on the axis with xscale(range(252 255).
Why does this unwanted data label appear? What do you suggest I do?
Here is my do file:
gen Year_CYQ = qofd(EventDate)
format Year_CYQ %tq
collapse (sum) T_CallsOffered T_CallsAnswered, by(Year_CYQ)
twoway (line T_CallsOffered Year_CYQ, sort lcolor(teal) lwidth(thick) cmissing(n)) ///
(line T_CallsAnswered Year_CYQ, sort lcolor(dknavy) lwidth(thick) cmissing(n)), yscale(range(0 .)) yla(0(500) 6000) xscale(range(252 255))
Thanks!
I have the attached data set that I use for a two-way graph.
Although it is not in the data set, I get an extra data label on the x-axis. I could not eliminate it by putting limits on the axis with xscale(range(252 255).
Why does this unwanted data label appear? What do you suggest I do?
Here is my do file:
gen Year_CYQ = qofd(EventDate)
format Year_CYQ %tq
collapse (sum) T_CallsOffered T_CallsAnswered, by(Year_CYQ)
twoway (line T_CallsOffered Year_CYQ, sort lcolor(teal) lwidth(thick) cmissing(n)) ///
(line T_CallsAnswered Year_CYQ, sort lcolor(dknavy) lwidth(thick) cmissing(n)), yscale(range(0 .)) yla(0(500) 6000) xscale(range(252 255))
Thanks!
Comment