100번 구동 결과

Interrupt Event 방식이 가장 빠르다InterruptFunction 방식에서만 첫번째 구동에서 이상치가 등장한다pandas와 seaborn 라이브러리 활용
%matplotlib inline
import pandas as pd
df=pd.read_csv('test_result2.csv',index_col=0)
df
df.plot()

sns.catplot(data=df, kind='strip')
