@@ -478,16 +478,16 @@ def gain2level(gain):
478478 if plot_backend == 'matplotlib' :
479479 _ , axs = plt .subplots (1 , 2 , gridspec_kw = {'width_ratios' : [.95 , .05 ]}, figsize = (16 , 9 ))
480480 eqcs .append (Density (butt , fs = fs , taxis = 1 , ax = axs [0 ], title = 'highpass' , vmin = eqc_levels [0 ], vmax = eqc_levels [1 ],
481- cmap = 'Greys' ))
481+ cmap = 'Greys-r ' ))
482482
483483 if destripe :
484484 dest = voltage .destripe (raw , fs = fs , channel_labels = channel_labels )
485485 _ , axs = plt .subplots (1 , 2 , gridspec_kw = {'width_ratios' : [.95 , .05 ]}, figsize = (16 , 9 ))
486486 eqcs .append (Density (dest , fs = fs , taxis = 1 , ax = axs [0 ], title = 'destripe' , vmin = eqc_levels [0 ], vmax = eqc_levels [1 ],
487- cmap = 'Greys' ))
487+ cmap = 'Greys-r ' ))
488488 _ , axs = plt .subplots (1 , 2 , gridspec_kw = {'width_ratios' : [.95 , .05 ]}, figsize = (16 , 9 ))
489489 eqcs .append (Density ((butt - dest ), fs = fs , taxis = 1 , ax = axs [0 ], title = 'difference' , vmin = eqc_levels [0 ],
490- vmax = eqc_levels [1 ], cmap = 'Greys' ))
490+ vmax = eqc_levels [1 ], cmap = 'Greys-r ' ))
491491
492492 for eqc in eqcs :
493493 y , x = np .meshgrid (ioutside , np .linspace (0 , rl * 1e3 , 500 ))
@@ -618,7 +618,7 @@ def raw_destripe(raw, fs, t0, i_plt, n_plt,
618618 Tplot = Xs .shape [1 ] / fs
619619
620620 # PLOT RAW DATA
621- d = Density (- Xs , fs = fs , taxis = 1 , ax = axs [i_plt ], vmin = MIN_X , vmax = MAX_X , cmap = 'Greys' ) # noqa
621+ d = Density (- Xs , fs = fs , taxis = 1 , ax = axs [i_plt ], vmin = MIN_X , vmax = MAX_X , cmap = 'Greys-r ' ) # noqa
622622 axs [i_plt ].set_ylabel ('' )
623623 axs [i_plt ].set_xlim ((0 , Tplot * 1e3 ))
624624 axs [i_plt ].set_ylim ((0 , nc ))
0 commit comments