[Python] txt 파일을 시계열 그래프로 추출
[Python] txt 파일을 시계열 그래프로 추출 파이썬으로 시계열 그래프 만들기 txt 파일을 입력을 시키면 그래프 그림이 jpg 파일 형태로 출력되는 프로그램입니다. 파이썬 – 파이참 (Pycharm)으로 제작했습니다. import matplotlib.pyplot as plt import numpy as np import os def raw2analysis(fileList, dir): for file in fileList: if (“.txt” not in file): print(file, ” 텍스트 파일이 아닙니다.”) continue #fw = open() data = np.loadtxt(dir+”\\”+file) # data = open(dir+”\\1. “+file.split(“.txt..
Tech
2019. 6. 23. 09:47