Can anyone help me graph enumerated values vs dates?
I have data that contains a date and an emumerated value.
Typical data looks like this:
10-21-00 Green;
10-22-00 Yellow;
10-23-00 Red;
10-24-00 Yellow;
10-24-00 Green;
10-25-00 Green.
Think of this as the air quality level [Green, Yellow, Red] by day. The enumerated data is the air quality level.
I would like the dates to appear across the bottom and the enumerated values [Green, Yellow, Red] to appear on the vertical y-axis. Above each date would be bullets indicating the enumerated values for that day.
I defined the enumerated values with indexes of 1, 2, 3 and names of “Green”, “Yellow”, and “Red”.
My graph needs to use the enumerated value index as the plot value but use the enumerated value name as the y-axis label.
Any thoughts would be most welcomed.