파이썬으로 시계열 그래프 만들기
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”)[0]+”_IPD.txt”,’w’)
t = data[:, 0]
Acceleration = data[:, 1]
plt.figure(num=1, dpi=100, facecolor=’white’)
# first suplot …….
# plt.subplot(2, 1, 1)
plt.plot(t, Acceleration, color=”blue”, linewidth=1.0, linestyle=”-“, label=”measure”)
#plt.title(‘Peek ground acceleration’)
plt.xlabel(‘time’)
plt.ylabel(‘measure’)
# plt.xlim( 0, 5)
plt.ylim(1.2 * np.min(Acceleration), 1.2 * np.max(Acceleration))
# plt.xticks(np.arange(0,5.5,0.5))
plt.grid()
# Clipping and SAVE data ..
plt.savefig(dir+”\\”+file.split(“.txt”)[0]+”_graph.png”, dpi=300)
plt.show()
if __name__ == “__main__”:
dir = input(“경로를 입력해 주세요 : “)
print(dir)
filenames = os.listdir(dir)
print(“파일 리스트”)
print(filenames)
raw2analysis(filenames,dir)
오큘러스 고 유니티에 세팅하기 (0) | 2019.07.05 |
---|---|
내 블로그 노출시키기! 사이트 맵을 등록해보자. (0) | 2019.07.01 |
내 홈페이지 빙(Bing) 웹 마스터 도구 설정하기의 모든 것! (0) | 2019.06.21 |
티스토리에서 "구글 웹 마스터 도구" 사용하기의 모든 것! (0) | 2019.06.21 |
아주 간단한 닷홈에서 네이버 웹마스터 사용하기 (0) | 2019.06.21 |
댓글 영역