heatmap 글을 쓰다보니 양이 많아 포스팅을 새로 합니다. 데이터는 heatmap 그리기 포스팅에서 했던 예제를 그대로 쓰겠습니다. import pandas as pd import matplotlib.pyplot as plt import numpy as np data = np.random.randn(10,10) columns = ['X' + str(x).zfill(1) for x in range(10)] df = pd.DataFrame(data,columns=columns) df.index = ['Y' + str(x).zfill(1) for x in range(10)] matplotlib에서 제공되는 컬러맵 matplotlib에는 다양한 색상군이 있는데 아래 링크에서 볼 수 있습니다. https://..