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

matplotlib를 사용하여 Gantt 플롯을 얻는 방법은 무엇입니까?

<시간/>

Gantt 차트는 프로젝트 일정을 표시하기 위해 프로젝트 계획에서 널리 사용됩니다. 세로축에 작업을 나열하고 가로축에 시간 간격을 나열하는 일종의 막대 차트입니다. 그래프에서 가로 막대의 너비는 각 활동의 지속 시간을 나타냅니다.

matplotlib에서 Gantt 차트를 플롯하려면 broken_barh()를 사용할 수 있습니다. 방법.

단계

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

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

  • 직사각형의 수평 시퀀스를 플로팅합니다.

  • y 설정 및 x 축의 한계.

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

예시

import matplotlib.pyplot as plt

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

# Figure and set of subplots
fig, ax = plt.subplots()

# Horizontal sequence of rectangles
ax.broken_barh([(110, 30), (150, 10)], (10, 9), facecolors='tab:blue')
ax.broken_barh([(10, 50), (100, 20), (130, 10)], (20, 9), facecolors='tab:orange')

# ylim and xlim of the axes
ax.set_ylim(5, 35)
ax.set_xlim(0, 200)

# Show the plot
plt.show()

출력

다음 출력을 생성합니다 -

matplotlib를 사용하여 Gantt 플롯을 얻는 방법은 무엇입니까?