Open
Description
When I call
fig, ax = plt.subplots(ncols=1, nrows=1, figsize=(4, 4))
(
sdata_sample2
.pl.render_labels(
"filtered_hexes",
# color="B_cells",
table_name="morphology_filtered",
)
.pl.show(ax=ax)
)
the plot takes about 15 s,
when I call
fig, ax = plt.subplots(ncols=1, nrows=1, figsize=(4, 4))
(
sdata_sample2
.pl.render_labels(
"filtered_hexes",
color="B_cells",
table_name="morphology_filtered",
)
.pl.show(ax=ax)
)
it's 2.5 min
