已关闭,此问题需要更focused。目前不接受答复。**想改善这个问题吗?**更新问题,使其仅通过editing this post关注一个问题。
17小时前关闭Improve this question我想知道这个颜色图的名字是什么
xggvc2p61#
如果你没有找到它,请制作你自己的 colormap 并register它:
register
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
1条答案
按热度按时间xggvc2p61#
如果你没有找到它,请制作你自己的 colormap 并
register
它: