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.