Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to make heatmap with seaborn, but the ylabel and the parameter is not placed in the middle, I've been trying to add vertical alignment properties (line 3), but it's not work, here is the code:

data = np.random.rand(4, 4)
heat_map = sns.heatmap(data, annot=True)
plt.yticks(va="center")
plt.show()

And the result is look like this: The result

When I make 2x2 heatmap, the result is look like this: The result 2x2

Looking forward to any tips or tricks that you have to offer to solve this problem, thanks in advance!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.5k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...