Plot_topo doesnt display correct without baseline

Hi everyone,

I want to get a topo plot from my data. It works fine when I include a baseline but I want to plot them without baseline.

When plotting with baseline I get the following plot
image

# SENSOR MAP PLOT
figure=gandAvg.plot_topo(title='CS+ forgotten',
                                      baseline=[-0.75,-0.25], mode='ratio',
                                      tmin=0, tmax=4, show=True, vmin=0.4, vmax=1.6, cmap='viridis')

When I uncommend the baseline I get the following plot
image

I looked about the magnitude of the values and found the values to be about 5e-09 to 6e-09
I know tried to set vmin to 5e-09 and vmax to 6e-09.
But it seems to not change anything

image

What can be the issue?

Thanks a lot!
Best
Franziska

if you pass vmin=0.4, vmax=1.6 then you it’s how colorbar is scaled.

don’t pass vmin=0.4, vmax=1.6 when not baselining.

Alex

Thanks a lot Alex for you quick response! This was very useful :grinning: