plt.cm.get_cmap 中可以使用哪些名称?
Matplotlib 提供了许多配色图,还可以使用 :func:'~matplotlib.cm.register_cmap' 添加其他配色图。此函数记录了内置配色图,如果调用该函数,它还将返回所有已注册配色图的列表。
示例
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
广告