python colormap
Posted jiangwl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python colormap相关的知识,希望对你有一定的参考价值。
from colormap import rgb2hex import numpy as np from matplotlib import pyplot as plt color_names = [] sample = [0, 0.25, 0.5, 0.75, 1] # 可以根据自己情况进行设置 for i in sample: for j in sample: for k in sample: col = rgb2hex(i, j, k, normalised=True) color_names.append(col) # print(color_names[0]) x = np.random.random((1000, 1)) j = 0 for i in range(len(color_names)): y = j*3 + np.random.random((1000, 1)) * 2 j += 1 plt.plot(x, y, ‘o‘, color=color_names[i]) plt.show()
生成类似于‘#000000’这样的colorname,可以应用到plot或者scatter的画图函数中,作为color的参数
颜色结果图如下:
不同的name名字表示不同的颜色
以上是关于python colormap的主要内容,如果未能解决你的问题,请参考以下文章