I have started with vispy but I cannot plot a line of data.
I see a lot of examples which have used package but that doesn't work either.
I have a white window and my line does not appear, why?
This is my code:
import numpy as np
from vispy import plot as vp
fig = vp.Fig(size=(600, 500), show=True)
x=[0,1,2,3,4,5,6]
y=x
line = fig[0, 0].plot((x, y), width=3, color='k')
fig.show()