In [9]:
import vispy.plot as vplt

In [10]:
import numpy as np

In [11]:
x=np.linspace(0,1,100000)
y = x**2

In [ ]:


In [ ]:


In [12]:
vplt.plotwidget.LinePlot(x,y)
fig = vplt.Fig(show=False)
fig1= fig[0,0]
fig1.plot(y)


Out[12]:
<LinePlot at 0x1159c5750>

In [13]:
fig.show(run=True)

In [ ]: