In [1]:
%matplotlib inline
In [2]:
import os
os.chdir('../')
import timevis
from timevis.plugin import Plugin
In [3]:
class Ext_1(Plugin): pass
class Ext_2(Plugin): pass
In [4]:
p1 = Ext_1()
In [5]:
p1.experiment.head()
Out[5]:
In [8]:
p1.layout.sort('well').head()
Out[8]:
In [10]:
p1.plate.sort(['well', 'channel', 'time']).head()
Out[10]:
In [11]:
p1.plate[p1.plate.well == 'A01'].plot(x='time', y='measure')
Out[11]:
In [13]:
p1.plate.measure.plot(subplots=True, kind='hist')
Out[13]:
In [15]:
p1.plate.groupby('well').measure.size().head()
Out[15]:
In [16]:
timevis.plugin.plugins
Out[16]:
In [ ]: