"일꾼이 일을 잘하려면 먼저 도구를 갈고 닦아야 한다." - 공자, 『논어』.
첫 장 > 프로그램 작성 > Matplotlib에서 사용자 정의 색상 맵을 만들고 색상 눈금을 추가하는 방법은 무엇입니까?

Matplotlib에서 사용자 정의 색상 맵을 만들고 색상 눈금을 추가하는 방법은 무엇입니까?

2024년 11월 16일에 게시됨
검색:690

How to Create a Custom Colormap and Add a Color Scale in Matplotlib?

사용자 정의 컬러맵 생성 및 컬러 스케일 통합

자신만의 컬러맵을 생성하려면 matplotlib.colors 모듈에서 LinearSegmentedColormap 함수를 활용하는 것이 좋습니다. 이 접근 방식은 더 간단하고 지속적인 색상 스케일을 생성합니다.

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.colors

# Generate random data points
x, y, c = zip(*np.random.rand(30, 3) * 4 - 2)

# Define lower and upper bounds for normalization
norm = plt.Normalize(-2, 2)

# Create a list of tuples representing the values and corresponding colors
tuples = [(norm(-2.), 'red'), (norm(-1.), 'violet'), (norm(2.), 'blue')]

# Generate the colormap from the list of tuples
cmap = matplotlib.colors.LinearSegmentedColormap.from_list('', tuples)

# Plot the data points using the custom colormap
plt.scatter(x, y, c=c, cmap=cmap, norm=norm)

# Add a color scale to the plot
plt.colorbar()
plt.show()

이 코드 조각은 빨간색에서 보라색, 파란색(-2~2 범위)으로 부드럽게 전환되는 컬러맵을 성공적으로 생성합니다. 색상 스케일도 플롯 오른쪽에 통합되어 있습니다. 쉽게 색상을 해석할 수 있습니다.

최신 튜토리얼 더>

부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.

Copyright© 2022 湘ICP备2022001581号-3