@@ -220,13 +220,15 @@ def RhoVolcanoPlot(
220220 hit_label_col = 'rho_label' ,
221221 x_min = - 2.5 , x_max = 2.5 , y_min = 0 , y_max = 'auto' ,
222222 return_html = True ,
223+ ** kwargs
223224 ):
224225 p = self ._plot_scatter (
225226 x_source , y_source ,
226227 xaxis_label , yaxis_label ,
227228 up_hit , down_hit ,
228229 hit_label_col ,
229230 x_min , x_max , y_min , y_max ,
231+ ** kwargs
230232 )
231233
232234 if return_html :
@@ -245,13 +247,15 @@ def GammaVolcanoPlot(
245247 hit_label_col = 'gamma_label' ,
246248 x_min = - 2.5 , x_max = 2.5 , y_min = 0 , y_max = 'auto' ,
247249 return_html = True ,
250+ ** kwargs
248251 ):
249252 p = self ._plot_scatter (
250253 x_source , y_source ,
251254 xaxis_label , yaxis_label ,
252255 up_hit , down_hit ,
253256 hit_label_col ,
254257 x_min , x_max , y_min , y_max ,
258+ ** kwargs
255259 )
256260
257261 if return_html :
@@ -268,15 +272,17 @@ def RhoGammaScatter(
268272 yaxis_label = 'gamma score' ,
269273 up_hit = 'resistance_hit' , down_hit = 'sensitivity_hit' ,
270274 hit_label_col = 'rho_label' ,
271- return_html = True ,
272275 x_min = - 2.5 , x_max = 2.5 , y_min = - 2.5 , y_max = 2.5 ,
276+ return_html = True ,
277+ ** kwargs
273278 ):
274279 p = self ._plot_scatter (
275280 x_source , y_source ,
276281 xaxis_label , yaxis_label ,
277282 up_hit , down_hit ,
278283 hit_label_col ,
279284 x_min , x_max , y_min , y_max ,
285+ ** kwargs
280286 )
281287
282288 if return_html :
0 commit comments