123456789101112131415161718 |
- """Figure 1S4 Ntsr scatter plot versions of parts of fig1.py and fig3.py,
- use run -i fig1S4.py"""
- assert EXPTYPE == 'ntsrmvis'
- print("Calling fig1.py to generate movie plots")
- get_ipython().run_line_magic('run', '-i fig1.py')
- plt.show()
- fig1S4mvi = fig1[['trialis', 'rates', 'burstratios',
- 'meanrate', 'meanburstratio', 'spars', 'rel']]
- print("Calling fig3.py to generate grating plots")
- get_ipython().run_line_magic('run', '-i fig3.py')
- plt.show()
- fig1S4grt = fig3[['trialis', 'rates', 'burstratios',
- 'meanrate', 'meanburstratio', 'f1f0', 'phi']]
- print('Now save all the figures and the two fig1S4* dataframes')
|