Generate a plot of three variables that produces a legend. 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= citytemp;
   plot faren*month=city / hminor=0;
run;