Generate a plot of three variables. The plot request draws one plot on the graph for each value of CITY and produces a legend that defines CITY values.
proc gplot data=reflib.citytemp;
   plot faren*month=city / hminor=0;
run;