Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

matplotlib에 첨부된 플롯 없이 컬러바를 만드는 방법은 무엇입니까?

<시간/>

matplotlib에서 첨부된 플롯 없이 컬러바를 빌드하려면 다음 단계를 수행할 수 있습니다.

단계

  • Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.

  • Figure와 서브플롯 세트를 생성합니다.

  • 서브플롯 레이아웃 매개변수를 조정합니다.

  • 쿼터니언을 제자리에 정규화합니다. 표준 반환 쿼터니언의.

  • 컬러바 인스턴스 가져오기 (cb) 기본 컬러바 및 가로 방향으로.

  • 그림을 표시하려면 Show()를 사용하세요. 방법.

import matplotlib.pyplot as plt
import matplotlib as mpl

# Set the figure size
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True

# Create a figure and a set of subplots
fig, ax = plt.subplots()

# Adjust the subplot layout parameter
fig.subplots_adjust(bottom=0.5)

# Normalize
norm = mpl.colors.Normalize(vmin=5, vmax=10)

# Get the colorbar instance
cb = mpl.colorbar.ColorbarBase(ax, cmap=mpl.cm.cool, norm=norm, orientation='horizontal')

# Display the plot
plt.show()

출력

다음 출력을 생성합니다 -

matplotlib에 첨부된 플롯 없이 컬러바를 만드는 방법은 무엇입니까?