Entering edit mode
7 months ago
bioinfo
▴
150
Hello,
I made a heatmap with the command shown below. I was told that some of the genes are more lowly expressed that other so it s hard to see them on the same scale and was asked to row normalize the heatmap. How can I do that? For the heatmap I have already produced I used the normalized and logarithmized data.
sc.pl.matrixplot(adata, markers, groupby='leiden_0.4', cmap="Oranges", use_raw=True, swap_axes = True)
Thank you
You can give a try with the
standard_scale
argument. From the documentation:Thank you. That is what I ended up doing.