So I'm new to Pyplot and I was able to show a standard x,y plot.
Now my issue is that I have a series of point in the form of (time,percentage) but I have multiple percentage with the same time. For istance:
x(time) y(percentage)
0:0:1 3
0:0:1 4
0:0:1 2
0:0:1 1
0:0:2 1
0:0:2 3
0:0:2 2
For some reason plt.plot plot only one value for 0:0:1 and 0:0:2 but I would like to plot every value on the x axis, even if they have the same value.
I'm using plt.gcf().autofmt_xdate() for the x axis
Is there a way to do that?
plt.plotplots everything, tryplt.plot(x, y, "-*")…