gpt4 book ai didi

matplotlib - 使用 matplotlib 绘制分类值的等高线图

转载 作者:行者123 更新时间:2023-12-02 01:14:40 27 4
gpt4 key购买 nike

我必须为 SVM 分类器绘制一个图。这是我用来绘制的代码:
plt.contour(xx, yy, Z)
这里xxyy是功能和 Z是标签。这些标签在字符串中。当我运行代码时出现错误

ValueError: could not convert string to float: dog  

如何绘制此图?

最佳答案

因为“dog”不是数值,所以不能直接绘制它。您需要的是分类值和数值之间的映射,例如使用字典,

an = {"cow":1,"no animal":0,"chicken":2,"cat":3, "fox":4}

使用这本字典,您可以使用 contourf 或 imshow 绘制 0 到 4 之间的数字数组。可以在下面观察两者之间的差异。 Imshow 更好地保留类别,因为它绘制像素而不是在它们之间进行插值。而且由于类别很少可以插入(猫和狐狸之间的平均值是什么?),它可能更接近这里需要的东西。
import numpy as np; np.random.seed(0)
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (6,2.8)

animals = [['no animal', 'no animal', 'no animal', 'chicken', 'chicken'],
['no animal', 'no animal', 'cow', 'no animal', 'chicken'],
['no animal', 'cow', 'cat', 'cat', 'no animal'],
['no animal', 'cow', 'fox', 'cat', 'no animal'],
['cow', 'cow', 'fox', 'chicken', 'no animal'],
['no animal','cow', 'chicken', 'chicken', 'no animal'],
['no animal', 'no animal', 'chicken', 'cat', 'chicken'],
['no animal', 'no animal', 'no animal', 'cat', 'no animal']]

y = np.linspace(-4,4, 8)
x = np.linspace(-3,3, 5)
X,Y = np.meshgrid(x,y)

an = {"cow":1,"no animal":0,"chicken":2,"cat":3, "fox":4}
aninv = { val: key for key, val in an.items() }
f = lambda x: an[x]
fv = np.vectorize(f)
Z = fv(animals)


fig, (ax, ax2) = plt.subplots(ncols=2)
ax.set_title("contourf"); ax2.set_title("imshow")

im = ax.contourf(X,Y,Z, levels=[-0.5,0.5,1.5,2.5,3.5,4.5] )
cbar = fig.colorbar(im, ax=ax)
cbar.set_ticks([0,1,2,3,4])
cbar.set_ticklabels([aninv[t] for t in [0,1,2,3,4]])


im2 = ax2.imshow(Z, extent=[x.min(), x.max(), y.min(), y.max() ], origin="lower" )
cbar2 = fig.colorbar(im2, ax=ax2 )
cbar2.set_ticks([0,1,2,3,4])
cbar2.set_ticklabels([aninv[t] for t in [0,1,2,3,4]])


plt.tight_layout()
plt.show()

enter image description here

关于matplotlib - 使用 matplotlib 绘制分类值的等高线图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43205289/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com