matplotlib 颜色根据类别标签

sg2wtvxw  于 2023-06-06  发布在  其他
关注(0)|答案(3)|浏览(148)

我有两个向量,一个有值,一个有类标签,比如1,2,3等。
我想绘制所有属于类1的点为红色,类2为蓝色,类3为绿色等。我该怎么做?

bq3bfh9z

bq3bfh9z1#

接受的答案是正确的,但是如果您可能想指定哪个类标签应该分配给特定的颜色或标签,您可以执行以下操作。我做了一个小标签体操与颜色栏,但使情节本身减少到一个很好的一行程序。这对于绘制使用sklearn完成的分类结果非常有用。每个标签匹配(x,y)坐标。

import matplotlib
import matplotlib.pyplot as plt
import numpy as np

x = [4,8,12,16,1,4,9,16]
y = [1,4,9,16,4,8,12,3]
label = [0,1,2,3,0,1,2,3]
colors = ['red','green','blue','purple']

fig = plt.figure(figsize=(8,8))
plt.scatter(x, y, c=label, cmap=matplotlib.colors.ListedColormap(colors))

cb = plt.colorbar()
loc = np.arange(0,max(label),max(label)/float(len(colors)))
cb.set_ticks(loc)
cb.set_ticklabels(colors)

使用稍微修改过的this答案,可以将上述N种颜色概括如下:

import numpy as np
import matplotlib as mpl
import matplotlib.pyplot as plt

N = 23 # Number of labels

# setup the plot
fig, ax = plt.subplots(1,1, figsize=(6,6))
# define the data
x = np.random.rand(1000)
y = np.random.rand(1000)
tag = np.random.randint(0,N,1000) # Tag each point with a corresponding label    

# define the colormap
cmap = plt.cm.jet
# extract all colors from the .jet map
cmaplist = [cmap(i) for i in range(cmap.N)]
# create the new map
cmap = cmap.from_list('Custom cmap', cmaplist, cmap.N)

# define the bins and normalize
bounds = np.linspace(0,N,N+1)
norm = mpl.colors.BoundaryNorm(bounds, cmap.N)

# make the scatter
scat = ax.scatter(x,y,c=tag,s=np.random.randint(100,500,N),cmap=cmap,     norm=norm)
# create the colorbar
cb = plt.colorbar(scat, spacing='proportional',ticks=bounds)
cb.set_label('Custom cbar')
ax.set_title('Discrete color mappings')
plt.show()

其给出:

wnrlj8wa

wnrlj8wa2#

假设你有一个2d数组中的数据,这应该可以工作:

import numpy
import pylab
xy = numpy.zeros((2, 1000))
xy[0] = range(1000)
xy[1] = range(1000)
colors = [int(i % 23) for i in xy[0]]
pylab.scatter(xy[0], xy[1], c=colors)
pylab.show()

您还可以设置cmap属性,以控制通过使用colormap显示的颜色;即,将pylab.scatter行替换为:

pylab.scatter(xy[0], xy[1], c=colors, cmap=pylab.cm.cool)

可以在here中找到颜色图列表

eivnm1vs

eivnm1vs3#

一个简单的解决方案是为每个类分配颜色。这样,我们就可以控制每个类的每种颜色。例如:

arr1 = [1, 2, 3, 4, 5]
arr2 = [2, 3, 3, 4, 4]
labl = [0, 1, 1, 0, 0]
color= ['red' if l == 0 else 'green' for l in labl]
plt.scatter(arr1, arr2, color=color)

相关问题