I'm attempting to plot a categorical variable on the x axis and a time on the y axis. I also have a categorical variable called run used to set line colour.
I have a time object created using the hms package object on the y axis. Even after stripping the ms from this object, they come back in when creating plots in ggplot.
ggplot(df, aes(x = category,y=plot_real_time),group = run,colour=run)) +
geom_line(linewidth=2)
creates the above plot. I don't need the .0000000 at the end.