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

입력 *.txt 파일을 사용하여 매우 간단한 막대 차트(Python, Matplotlib)를 그리는 방법은 무엇입니까?

<시간/>

입력 텍스트 파일에서 매우 간단한 막대 차트를 그리기 위해 다음 단계를 수행할 수 있습니다. -

  • 바 이름에 대한 빈 목록 만들기 및 높이 .

  • 텍스트 파일을 읽고 각 줄을 반복합니다.

  • 이름 추가 및 높이 목록으로.

  • 막대 플롯 목록 사용 (1단계).

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

예시

from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
bar_names = []
bar_heights = []
for line in open("test_data.txt", "r"):
   bar_name, bar_height = line.split()
   bar_names.append(bar_name)
   bar_heights.append(bar_height)
plt.bar(bar_names, bar_heights)
plt.show()

"test_data.txt "는 다음 데이터를 포함합니다 -

Javed 75
Raju 65
Kiran 55
Rishi 95

출력

입력 *.txt 파일을 사용하여 매우 간단한 막대 차트(Python, Matplotlib)를 그리는 방법은 무엇입니까?