> 백엔드 개발 > 파이썬 튜토리얼 > Matplotlib에서 다양한 색상으로 선을 그리는 방법은 무엇입니까?

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

Patricia Arquette
풀어 주다: 2024-10-29 08:58:02
원래의
881명이 탐색했습니다.

How to Plot Lines with Varying Colors in Matplotlib?

다양한 색상으로 선 그리기

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

소량의 선분

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

<code class="python">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()</code>
로그인 후 복사

많은 수의 선분

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

<code class="python">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()</code>
로그인 후 복사

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

위 내용은 Matplotlib에서 다양한 색상으로 선을 그리는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿