what is the correct way to plot time series data where each row has a hh:mm:ss
time stamp using ggplot2? for example:
48:09:35 0.2
48:09:36 0.3
48:12:05 0.4
48:35:48 0.5
each time stamp above is of the form: hours:minutes:seconds, like 48:09:35
.
i'd like to plot this on the x-axis and the value associated with the time stamp on y axis, but have the x-axis spaced appropriately for hour-minute-second time stamps.
is there a way to do this in ggplot2 in R?