本文整理汇总了Python中animal.Animal.load方法的典型用法代码示例。如果您正苦于以下问题:Python Animal.load方法的具体用法?Python Animal.load怎么用?Python Animal.load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类animal.Animal
的用法示例。
在下文中一共展示了Animal.load方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Animal
# 需要导入模块: from animal import Animal [as 别名]
# 或者: from animal.Animal import load [as 别名]
"""Create a SpikeCorr.shifts() plot for lots of recordings.
Run by calling `%run -i scripts/shifts.py` within neuropy"""
from pylab import get_current_fig_manager as gcfm
from animal import Animal
try: ptc22;
except NameError: ptc22 = Animal('/home/mspacek/data/ptc22')
ptc22.load('tr1')
for i in range(4, 23):
s = 'ptc22.tr1.r%02d.sc().shifts(-12000, 12000, 50)' % i
exec(s)
title(s)
gcfm().window.setWindowTitle(s)
print(s)
show()
ptc22.load('tr2')
for i in range(23, 37):
s = 'ptc22.tr2.r%02d.sc().shifts(-12000, 12000, 50)' % i
exec(s)
title(s)
gcfm().window.setWindowTitle(s)
print(s)
show()