Seaborn Heatmap Axis Format меняет график - PullRequest
2 голосов
/ 20 марта 2019

Когда я добавляю в форматирование оси x, график остается прежним.Когда я форматирую метки на оси Y, график переворачивается, и я не могу понять, почему.

Тепловая карта перед форматом оси Y

heatmap before y-axis format

Вотграфик после формата оси X

heatmap after y-axis format

ax = sns.heatmap(All_new, linewidths=.5, annot=True, cmap="RdYlGn")
plt.tight_layout()
plt.xlabel('Losing Digit')
plt.ylabel('Winning Digit')
plt.title('Total Distribution of Final Digits (%)')
ax.get_xaxis().set_major_formatter(matplotlib.ticker.FuncFormatter(lambda x, p: format(int(x))))
ax.get_yaxis().set_major_formatter(matplotlib.ticker.FuncFormatter(lambda x, p: format(int(x))))
#ax.invert_yaxis()
plt.show()
...