カラーバーの大きさをヒートマップの縦幅と同じにしたいのですが,方法がわかりません
python
1import pandas as pd 2import numpy as np 3import matplotlib as mpl 4import matplotlib.pyplot as plt 5 6heat = [[1,1,0.997050976,0.997539013,0.993040369,0.974253976,0.942366882,0.905319796],[1,0.5,0.999971986,0.999927235,0.997181063,0.993258331,0.983775894,0.971285339],[1,0.9,0.99991054,0.999782198,0.999391379,0.997797481,0.994833392,0.992249091],[1]] 7df = pd.DataFrame(data=heat, columns=['1','2','3','4', '5', '6','7','8'], index=['1','2','3','4']) 8fig, ax = plt.subplots(figsize=(8,8)) 9sns.heatmap(df,cmap='Blues',annot=True,square = True,fmt="1.5f",vmax=1.0,cbar = True) 10ax.set_xlabel('x') 11ax.set_ylabel('y') 12plt.show()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。