使用matplotlib在多个折线图中重复的颜色

时间:2018-07-24 23:05:01

标签: python matplotlib color-mapping

我有20列要使用未重复的颜色进行绘制。我想使用tab20颜色图。如何使用?

由于我仍然是朴素的Python用户,我发现所有在线资源都难以理解。

1 个答案:

答案 0 :(得分:1)

通常,这是您可以执行的操作:

import matplotlib
cmap = matplotlib.cm.get_cmap(your_cmap) #your_cmap='tab20'
df.plot(cmap=cmap)
plot.show()

在这里您可以找到参考:https://matplotlib.org/examples/color/colormaps_reference.html