Hello everyone,
I have a data showing the quality of observations before and after a certain ste. (Sample data below)
i am trying to generate a graph showing the general trend in change in quality (I've attached a sample here)

i tried using xtline with the following code
but the graph that is generated makes it look like there are only 6 observations - is there a way to somehow "jitter" the lines to somehow show the number of lines that are overlaid?
Thanks in advance
regards
Ahmed
I have a data showing the quality of observations before and after a certain ste. (Sample data below)
Code:
* Example generated by -dataex-. For more info, type help dataex clear input byte(serial_number Quality process_step) 1 0 3 1 3 3 2 2 2 2 0 1 3 1 1 3 3 3 4 1 1 4 2 2 5 0 0 5 0 0 end
i am trying to generate a graph showing the general trend in change in quality (I've attached a sample here)

i tried using xtline with the following code
Code:
xtline Quality , /// overlay /// xsc(r(0.95 2.05) ) /// xlabel(1 2, valuelabel labsize(small)) ylabel(, valuelabel labsize(small) ) /// i(serial_number) t(process_step) /// legend(off)
Thanks in advance
regards
Ahmed
Comment