Guillaume Viejo
Guillaume Viejo
Hi all, Here is a minimal working example with fastplotlib : ``` python import numpy as np import fastplotlib as fpl fig = fpl.Figure(canvas="glfw", shape=(2,1)) fig[0,0].add_line(data=np.random.randn(1000)) fig[1,0].add_line(data=np.random.randn(1000)*1000) # Not sure...
Yes something similar with matplotlib would be ``` python plt.figure() ax = plt.subplot(211) plt.subplot(211) plt.plot(np.random.randn(1000)) plt.subplot(212, sharex = ax) plt.plot(np.random.randn(1000)*1000) plt.show() ``` Then i can move only in the x-axis
I think the issue is that the entire camera state is updated by a controller. > x axis and scaling should be synced between top and bottom > > y...
Thank you it's great.
Ok really weird error with coveralls. I have another PR where coveralls runs fine.
I can see a path for this but it will take some time since it will requires to update all the jitted functions. Right now, we are focusing on the...
Thank you @alejoe91 . This should appear soon in 0.6.6.
The idea was to use [nap.load_file(filename)](https://pynapple-org.github.io/pynapple/reference/io/misc/#pynapple.io.misc.load_file) but yes I agree this could be an extra convenient way for it.
Yes go for it
Closing this issue as we already have some calcium imaging examples in the doc.