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

ชื่อใดที่ใช้ใน plt.cm.get_cmap ได้บ้าง


Matplotlib มีแผนที่สีจำนวนหนึ่ง และส่วนอื่นๆ สามารถเพิ่มได้โดยใช้ :func:'~matplotlib.cm.register_cmap' . ฟังก์ชันนี้จะบันทึก colormap ในตัว และจะส่งคืนรายการ colormaps ที่ลงทะเบียนทั้งหมด หากเรียกใช้

ตัวอย่าง

from matplotlib import pyplot as plt

cmaps = plt.colormaps()

print("Possible color maps are: ")

for item in cmaps:
   print(item)

ผลลัพธ์

Accent
Accent_r
Blues
...
...
...
viridis_r
winter
winter_r