Hello
this is my data set
i need to draw graph like this

i used this code
but my problem is about extremes lines! i want to hide or eliminate extremes lines but i dont know how
this is my data set
Code:
clear input year str4 quintile cpm 1995 q1 28.2 1995 q2 39 1995 q3 47.1 1995 q4 52 1995 q5 57.4 2000 q1 42.7 2000 q2 50 2000 q3 54.3 2000 q4 58.3 2000 q5 61.1 2005 q1 50 2005 q2 54.4 2005 q3 57.2 2005 q4 60 2005 q5 59.6 end
i used this code
Code:
graph dot cpm, over (quintile) over (year) asyvars exclude0 yscale (range (25 65)) linetype (line) lines (lwidth (thin))
Comment