matplotlib 这个颜色图的名称是什么[关闭]

ct2axkht  于 2023-05-01  发布在  其他
关注(0)|答案(1)|浏览(87)

已关闭,此问题需要更focused。目前不接受答复。
**想改善这个问题吗?**更新问题,使其仅通过editing this post关注一个问题。

17小时前关闭
Improve this question
我想知道这个颜色图的名字是什么

xggvc2p6

xggvc2p61#

如果你没有找到它,请制作你自己的 colormapregister它:

import matplotlib.pyplot as plt
import matplotlib as mpl

cmap = mpl.colors.ListedColormap(["#4a2199", "#5300a9", "#38289f", "#00708d",
                                  "#00996f", "#24a338", "#6faf15", "#b4ae00",
                                  "#f99700", "#faab1b", "#faa694", "#ffc4ac"])

mpl.colormaps.register(cmap, name="the_missing_cmap") # <-- change the name here

相关问题