I want to use Python's plt.scatter
or ax.scatter
to show a car finishing times as scatterplot chart. So my x axis contains an array:
'car001','car002','car003', ...
The y axes should contain the finish time in datetime format like:
'2019-01-01 23:32:01','2019-01-01 23:32:01','2019-01-01 23:32:01', ...
Why it is so difficult to use datetime values as pandas dataframe with a scatterplot?
I don't want to use plt.plot()
with linestyle 'o'.
Thank you very much!