mne-tools / mne-gsoc2018-3d

Sandbox for GSoC 2018 3D Viz
BSD 3-Clause "New" or "Revised" License
9 stars 4 forks source link

API: fmin in ipysurfer, min in pysurfer #41

Open kingjr opened 5 years ago

kingjr commented 5 years ago

In pysurfer the min value of the colormap is defined by min

brain.add_data(
    ['array', 'min=None', 'max=None', 'thresh=None', ...

In ipysurfer, it is defined by fmin:

brain.add_data(rdata, hemi='rh', colormap='inferno_r',
               vertices=rvert, fmin=fmin, fmax=fmax)