"일꾼이 일을 잘하려면 먼저 도구를 갈고 닦아야 한다." - 공자, 『논어』.
첫 장 > 프로그램 작성 > Matplotlib에서 다양한 색상으로 선을 그리는 방법은 무엇입니까?

Matplotlib에서 다양한 색상으로 선을 그리는 방법은 무엇입니까?

2024-11-08에 게시됨
검색:510

How to Plot Lines with Varying Colors in Matplotlib?

다양한 색상으로 선 그리기

matplotlib에서는 여러 가지 접근 방식을 통해 고유한 색상 세그먼트로 선을 그릴 수 있습니다. 선택은 플롯할 선분의 수에 따라 다릅니다.

작은 수의 선분

궤적을 그릴 때와 같이 몇 개의 선분만 필요한 경우 다음을 고려하십시오.

import numpy as np
import matplotlib.pyplot as plt

# Generate random data
xy = (np.random.random((10, 2)) - 0.5).cumsum(axis=0)

fig, ax = plt.subplots()

# Plot each line segment with a unique color
for start, stop in zip(xy[:-1], xy[1:]):
    x, y = zip(start, stop)
    ax.plot(x, y, color=plt.cm.gist_ncar(np.random.random()))

plt.show()

많은 수의 선 세그먼트

많은 수의 선 세그먼트를 처리할 때 더 효율적인 방법은 LineCollection을 활용하는 것입니다.

import numpy as np
import matplotlib.pyplot as plt
from matplotlib.collections import LineCollection

# Generate random data
xy = (np.random.random((1000, 2)) - 0.5).cumsum(axis=0)

# Reshape data for compatibility with LineCollection
xy = xy.reshape(-1, 1, 2)
segments = np.hstack([xy[:-1], xy[1:]])

fig, ax = plt.subplots()

# Create a LineCollection with randomly assigned colors
coll = LineCollection(segments, cmap=plt.cm.gist_ncar)
coll.set_array(np.random.random(xy.shape[0]))

# Add the LineCollection to the plot
ax.add_collection(coll)
ax.autoscale_view()

plt.show()

두 방법 모두 Matplotlib 문서를 참조하여 선택한 컬러맵을 변경할 수 있습니다.

최신 튜토리얼 더>

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

Copyright© 2022 湘ICP备2022001581号-3