Thank you for this nice tool! I would like to use it to plot surfaces, but I seem to have a slight problem while repeating the steps of the tutorial in "Visualise Vertex-level data".....
I ran the code on jupyter lab; There no output of figure after "p.build()", and the code is shown below:
from surfplot import Plot
from surfplot.datasets import load_example_data
from neuromaps.datasets import fetch_fslr
from brainspace.mesh.mesh_io import read_surface
surfaces = fetch_fslr()
lh, rh = surfaces['inflated']
effect = load_example_data(dataset = 'default_mode', join=True)
p = Plot(lh, rh, views=['lateral','medial','anterior', 'dorsal'], zoom=1.2)
p.add_layer(effect, cbar=True, cmap='inferno')
p.build()


Looking forward to getting your answer, thank you!