기존의 노트북 파일을 python으로 모듈화 하였음. 정제된 CSV로 구축하는 모듈, EKF를 구현한 모듈, EKF를 적용한 모듈 이렇게 나누었다. 각각을 프로파일링 하기 위해서 python의 표준 라이브러리 pstat과 비 표준 라이브러리인 line_profile을 사용하여 프로파일링 해보았다.각각의 출력이 상당하기 때문에 stream을 파일로 저장하도록 구현한 몇가지 스크립트를 공유함.import pstatswith open("profile_log.txt", "w", encoding="utf-8") as f: p = pstats.Stats('profile.stats', stream=f) p.sort_stats('cumulative') p.print_stats()import sysim..