I have prepared a data frame ordered according to date and time as.POSIXlt:
Date_Time A1 B2 C1 E2
46 24/06/2012 12:20:00 NA 5.515 20 NA
47 24/06/2012 13:20:00 41 NA NA 3.519
48 25/06/2012 14:00:00 NA NA NA NA
49 25/06/2012 14:20:00 30 NA 30 NA
50 27/06/2012 15:20:00 NA 71 NA NA
51 28/06/2012 18:00:00 11 NA 55 11
... ...
As you can see it contains a lot of 'NA' values. Is it possible to plot all data in a single plot with the 'x-axis' showing month-year and different colors assigned for different data (e.g. green for A1, blue for C1)? I tried 'ggplot2' package which removes all missing values. Trying 'zoo' package doesn't allow x-axis to be plotted as month-year. Any suggestion?
