마지막 그림의 색상을 얻으려면 get_color()를 사용할 수 있습니다. 모든 플롯에 대한 방법.
- 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
- x 만들기 및 y numpy를 사용하는 데이터 포인트.
- 플롯 (x, x), (x, x2) 및 (x, x3) plot() 메서드를 사용합니다.
- 모든 줄거리에 범례를 배치합니다.
- get_color()를 사용하여 각 플롯의 색상 가져오기 방법.
- 그림을 표시하려면 show()를 사용하세요. 방법.
예시
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.arange(10) y = np.arange(10) p = plt.plot(x, y, x, y ** 2, x, y ** 3) plt.legend([p[0], p[1], p[2]], ["$y=x$", "$y=x^2$", "$y=x^3$"]) print("Color of the first plot: ", p[0].get_color()) print("Color of the second plot: ", p[1].get_color()) print("Color of the third plot: ", p[2].get_color()) plt.show()
출력
플롯과 함께 콘솔에 다음 출력이 인쇄됩니다.
Color of the first plot: #1f77b4 Color of the second plot: #ff7f0e Color of the third plot: #2ca02c