Skip to content

Commit c77920c

Browse files
committed
[FIX] Re-added ax.axis('off')
1 parent 34a7bdf commit c77920c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netneurotools/plotting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ def plot_point_brain(data, coords, views=None, cbar=False, figsize=(4, 4.8),
787787
# make the actual scatterplot and update the view / aspect ratios
788788
col = ax.scatter(x, y, z, c=data, s=size, **opts)
789789
ax.view_init(*view)
790-
# ax.axis('off')
790+
ax.axis('off')
791791
scaling = np.array([ax.get_xlim(),
792792
ax.get_ylim(),
793793
ax.get_zlim()])

0 commit comments

Comments
 (0)