Matplotlib은 다양한 컬러맵을 제공하며 다른 컬러맵은 :func:'~matplotlib.cm.register_cmap'을 사용하여 추가할 수 있습니다. . 이 함수는 내장된 컬러맵을 문서화하고 호출되는 경우 등록된 모든 컬러맵의 목록도 반환합니다.
예시
from matplotlib import pyplot as plt cmaps = plt.colormaps() print("Possible color maps are: ") for item in cmaps: print(item)
출력
Accent Accent_r Blues ... ... ... viridis_r winter winter_r