เพื่อให้ได้สีของตัวเลขสุดท้าย เราสามารถใช้ get_color() ทุกกระบวนท่า
- กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
- สร้าง x และ ย จุดข้อมูลโดยใช้ 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