@@ -61,8 +61,8 @@ def fig_02c(save_path, plot=False):
6161def fig_02d_01 (save_path , plot = False ):
6262 """Box plot showing the counts for SGN and IHC per (mouse) cochlea in comparison to literature values.
6363 """
64- main_tick_size = 12
65- main_label_size = 16
64+ main_tick_size = 16
65+ main_label_size = 24
6666
6767 rows = 1
6868 columns = 2
@@ -81,12 +81,13 @@ def fig_02d_01(save_path, plot=False):
8181
8282 ylim0 = 9500
8383 ylim1 = 12500
84- y_ticks = [i for i in range (ylim0 , ylim1 + 1 , 500 )]
84+ y_ticks = [i for i in range (10000 , 12000 + 1 , 1000 )]
8585
8686 ax [0 ].set_ylabel ('Count per cochlea' , fontsize = main_label_size )
8787 ax [0 ].set_yticks (y_ticks )
8888 ax [0 ].set_yticklabels (y_ticks , rotation = 0 , fontsize = main_tick_size )
8989 ax [0 ].set_ylim (ylim0 , ylim1 )
90+ ax [0 ].yaxis .set_ticks_position ('left' )
9091
9192 # set range of literature values
9293 xmin = 0.5
@@ -100,14 +101,15 @@ def fig_02d_01(save_path, plot=False):
100101
101102 ylim0 = 750
102103 ylim1 = 950
103- y_ticks = [i for i in range (ylim0 , ylim1 + 1 , 50 )]
104+ y_ticks = [i for i in range (800 , 900 + 1 , 100 )]
104105
105106 ax [1 ].set_xticklabels (["IHC" ], fontsize = main_label_size )
106107
107- ax [1 ].set_ylabel ('Count per cochlea' , fontsize = main_label_size )
108108 ax [1 ].set_yticks (y_ticks )
109109 ax [1 ].set_yticklabels (y_ticks , rotation = 0 , fontsize = main_tick_size )
110110 ax [1 ].set_ylim (ylim0 , ylim1 )
111+ ax [1 ].yaxis .tick_right ()
112+ ax [1 ].yaxis .set_ticks_position ('right' )
111113
112114 # set range of literature values
113115 xmin = 0.5
0 commit comments