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

Python matplotlib에서 목록에 대한 막대 차트를 그리는 방법은 무엇입니까?

<시간/>

python matplotlib에서 목록에 대한 막대 차트를 그리기 위해 다음 단계를 수행할 수 있습니다.

단계

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

  • 데이터 포인트 목록을 만드십시오.

  • 데이터로 막대 그래프를 만드세요.

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

from matplotlib import pyplot as plt

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

# List of data points
data = [0, 1, 3, 2, 1, 5, 2, 1, 4, 2, 4, 0]

# Plot bar chart with data points
plt.bar(data, data)

# Display the plot
plt.show()

출력

다음 출력을 생성합니다 -

Python matplotlib에서 목록에 대한 막대 차트를 그리는 방법은 무엇입니까?