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

matplotlib를 사용하여 .txt 파일에서 데이터 플롯

<시간/>

matplotlib를 사용하여 .txt 파일에서 데이터를 플롯하려면 다음 단계를 수행할 수 있습니다. -

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • bar_names 및 bar_heights에 대한 빈 목록을 초기화합니다.
  • 읽기 "r" 모드에서 샘플 .txt 파일을 열고 막대 이름 및 높이 목록에 추가합니다.
  • 막대 플롯을 만듭니다.
  • 그림을 표시하려면 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  12
Raju   14
Rishi  15
Kiran  10
Satish 17
Arun   23

출력

다음 출력을 생성합니다.

matplotlib를 사용하여 .txt 파일에서 데이터 플롯 matplotlib를 사용하여 .txt 파일에서 데이터 플롯