잘린 히트맵 행: Matplotlib 및 Seaborn의 함정
질문:
사용자가 관찰한 내용 Seaborn을 사용하여 생성된 히트맵의 첫 번째 행과 마지막 행이 잘립니다. 반. 이 문제는 아래와 같이 최소 코드 예제를 실행할 때에도 지속됩니다.
import pandas as pd import seaborn as sns import matplotlib.pyplot as plt data = pd.read_csv('https://raw.githubusercontent.com/resbaz/r-novice-gapminder-files/master/data/gapminder-FiveYearData.csv') plt.figure(figsize=(10,5)) sns.heatmap(data.corr()) plt.show()
답변:
안타깝게도 matplotlib 3.1.1은 다음과 호환되지 않는 것으로 확인되었습니다. Seaborn 히트맵과 고정 틱이 있는 반전 축. 이 문제를 해결하려면:
ax.set_ylim(bottom, top) # set the ylim to bottom, top
위 내용은 내 Seaborn 히트맵이 첫 번째 행과 마지막 행을 자르는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!