본문 바로가기

matplotlib2.8

Python 각 서브플롯에 제목을 추가하는 방법, How to add a title to each subplot 질문 나는 여러 개의 서브플롯을 포함한 하나의 그림을 가지고 있습니다. fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k') fig.canvas.set_window_title('창 제목') # Axes 인스턴스를 반환합니다 ax = fig.add_subplot(311) ax2 = fig.add_subplot(312) ax3 = fig.add_subplot(313) 서브플롯에 제목을 추가하는 방법은 무엇인가요? fig.suptitle은 모든 그래프에 제목을 추가하며, ax.set_title()은 존재하지만 후자는 서브플롯에 제목을 추가하지 않습니다. 도움을 주셔서 감사합니다. 편집: set_title()에 대한 .. 2023. 11. 24.
Python 맷플롯립 범례 추가, Adding a matplotlib legend 질문 Matplotlib의 PyPlot에서 추가 변수를 생성하지 않고 선 그래프에 범례를 생성하는 방법은 무엇인가요? 아래의 그래프 스크립트를 고려해주세요: if __name__ == '__main__': PyPlot.plot(length, bubble, 'b-', length, ins, 'r-', length, merge_r, 'g+', length, merge_i, 'p-', ) PyPlot.title("Combined Statistics") PyPlot.xlabel("Length of list (number)") PyPlot.ylabel("Time taken (seconds)") PyPlot.show() 보시다시피, 이는 Matplotlib의 PyPlot의 매우 기본적인 사용법입니다. 이렇게 하면 .. 2023. 10. 26.
Python 틱 라벨 글꼴 크기를 변경하는 방법, How to change tick label font size 질문 matplotlib 그림에서 ax1.set_xticklabels()를 사용하여 눈금 레이블의 글꼴 크기를 작게 만들 수 있을까요? 또한, 수평에서 수직으로 어떻게 회전시킬 수 있을까요? 답변 실제로 간단한 방법이 있습니다. 방금 찾았어요: import matplotlib.pyplot as plt # 그림을 준비합니다. fig, ax = plt.subplots() # 작은 눈금 레이블의 글꼴 크기를 변경합니다. ax.tick_params(axis='both', which='major', labelsize=10) ax.tick_params(axis='both', which='minor', labelsize=8) 하지만 이것은 질문의 label 부분에 대한 크기만 대답합니다. 2023. 10. 26.
matplotlib Python 설치 문제 [중복], Installation Issue with matplotlib Python [duplicate] 질문 matplotlib 패키지를 설치한 후에 import matplotlib.pyplot as plt를 할 수 없는 문제가 있습니다. 어떤 제안이든 크게 감사하게 받겠습니다. >>> import matplotlib.pyplot as plt Traceback (most recent call last): File "", line 1, in File "//anaconda/lib/python2.7/site-packages/matplotlib-1.3.1-py2.7-macosx-10.5-x86_64.egg/matplotlib/pyplot.py", line 98, in _backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup() File .. 2023. 10. 16.