Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะรับสีของเส้นที่พล็อตล่าสุดใน Python ได้อย่างไร


เพื่อให้ได้สีของเส้นที่วางแผนล่าสุด เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • สร้างจุด x และ y โดยใช้ numpy

  • พล็อตเส้นโดยใช้ x และ y โดยมีสีแดงและ linewidth 2

  • เพื่อให้ได้สีของเส้น ให้ใช้ get_color() วิธีการ และพิมพ์ออกมา

  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.linspace(1, 10, 1000)
y = np.linspace(10, 20, 1000)
line, = plt.plot(x, y, c="red", lw=2)
print("Color of the most recent plot line: ", line.get_color())
plt.show()

ผลลัพธ์

Color of the most recent plot line: red