subplot zip을 사용해서 쉽게 나열해서 시각화하기 (seaborn boxplot)
아래 그림처럼 a , a.1 같은 데이터를 다르게 처리한 후 옆에 시각화해서 보고 싶을 때가 있다. 사실 전체 루프를 돌려도 되지만, 쉬운 방법이 있어서 공유한다. import matplot.pyplot as plt pair = list(zip(['a', 'b', 'c', 'd', 'e'], ['a.1', 'b.1', 'c.1', 'd.1', 'e.1'])) ## 이미지 크기 및 subplots 개수 조절 fig , ax = plt.subplots(len(pair),2,figsize=(5,10)) ## 여백 조정 plt.subplots_adjust(left=0.2, bottom=0.05, right=0.99, top=0.99, wspace=0.6, hspace=0.3) axes = ax.flatten()..
2020.04.08