Hi,
i use
fig.add_trace(go.Heatmap(x = spearman.columns, y = spearman.index, z = spearman.values, text = pearman.round(1).values, zmin=-1, zmax=1, texttemplate="%{text}",textfont={"color": "black"}, colorscale=sns_cs, hoverongaps = False,), row=r, col=c)
and i wonder if it is possible to use some kind of if else statements inside texttemplate="%{text}"
in order to hide a specific value or display another text?