I have 3 columns v1, v2, and v3 with 10,000 entries and I want to plot v1, v2, and v3 on the y-axis.
In the x-axis, I want to plot v1, v2, v3 points every 500 seconds until the length of column entries is reached (i.e 10,000 entries).
y-axis=['v1','v2', 'v3']
x-axis=[0,500,1000,1500... ,len(v1)]
I tried setting xticks:
length = len(df.axes[0]) #number of rows
x = np.arange(0,length,500)
y = ["v1", "v2", "v3"]
df.plot = (x,y)
plt.show()
but I am getting an error.
