Hi, I would like to make a graph by 2 variables, create different colour labels for 3 different groups and be able to marke some specific observations (like outliers) in final graph. So my code: proc gplot data=mydata; plot var2*var1=groupname/frame cframe=ligr legend=legend1 vaxis=axis1 haxis=axis2; run; What I get what I need - values of those 2 variables by group names, but I can’t understand is there any possibility to mark in the graph which are those outlying observations? I would appreciate if somebody of you could help. Thank you, Ieva
... View more