python
1コード 2import matplotlib.pyplot as plt 3import numpy as np 4import seaborn as sns 5 6 7X, Y = np.mgrid[:5, :5] 8C = np.array( 9 [[2.9,2.1,1.4,1.5,4.7], 10 [0.69,0.24,2.0,1.0,-0.74], 11 [1.5,0.55,-2.0,-4.4,-4.2], 12 [-0.56,0.94,-1.6,-0.7,-0.63]] 13) 14#print(f"X: shape={X.shape}", X, sep="\n") 15#print(f"Y: shape={Y.shape}", Y, sep="\n") 16#print(f"C: shape={C.shape}", C, sep="\n") 17 18fig, ax = plt.subplots(figsize=(20, 10)) 19ax.pcolormesh(X, Y, C,edgecolors="w",alpha=0.5) 20 21sns.heatmap(C, annot=True,cmap='coolwarm', linewidths=.5) 22sns.set(font_scale=2) 23ax.set_xticks([0, 1, 2, 3, 4]) 24ax.set_xticklabels(['A', 'B', 'C', 'D', 'E'],fontsize='small') 25 26 27ax.set_yticks([0, 1, 2, 3, 4]) 28ax.set_yticklabels(['0', '200', '400', '600', '800'],rotation=45,fontsize='small') 29 30ax.set_title('figure') 31ax.set_xlabel('area') 32ax.set_ylabel('distance') 33 34plt.show()
以上のコードから表示できたのは下記に示しています。
このx軸のABCDEを各メッシュの中央に移動したいのですが、どのようにすればよいか分かりません。
ただ、x軸のみを変えたいと考えています。y軸は中央に寄せないつもりです。
ご教授ください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/18 05:12