使用 matplotlib 的多线图中的不重复颜色
Unrepeated colors in multiple line plots using matplotlib
我有 20 列要使用不重复的颜色绘制。我想使用 tab20
色图。我该如何使用它?
我发现所有的在线资源都很难理解,因为我还是一个天真的 Python 用户。
一般来说,您可以这样做:
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
我有 20 列要使用不重复的颜色绘制。我想使用 tab20
色图。我该如何使用它?
我发现所有的在线资源都很难理解,因为我还是一个天真的 Python 用户。
一般来说,您可以这样做:
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