영역분할 (1) 썸네일형 리스트형 [plot]gridspec: subplots 업그레이드 버전 Introduction Figure를 그릴 때, subplot만으로는 뭔가 아쉬울 때, 영역을 내마음대로 나누고 싶을 때, 그럴때 필요한게 바로 gridspec Features Figure를 그릴 때 영역을 내 자유자재로 나눌 수 있음 Usage import matplotlib.gridspec as gridspec # define gridspec spec = gridspec.GridSpec(ncols=3, nrows=5, figure=fig) # draw specific grid ax = fig.add_subplot(spec[i//3,i%3]) ax = fig.add_subplot(spec[i:i+1,i:i+2]) Example code import matplotlib.pyplot as plt impor.. 이전 1 다음