基于sklearn的svm分类iris并可视化
时间: 2024-05-26 15:13:25 浏览: 57
好的,以下是基于sklearn的svm分类iris并可视化的代码:
```python
from sklearn import datasets
from sklearn.model_selection import train_test_split
from sklearn.svm import SVC
import matplotlib.pyplot as plt
import numpy as np
# 加载iris数据集
iris = datasets.load_iris()
X = iris.data[:, :2]
y = iris.target
# 划分训练集和测试集
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=0)
# 定义SVM模型
clf = SVC(kernel='linear', C=1.0, random_state=0)
# 训练模型
clf.fit(X_train, y_train)
# 可视化分类结果
x_min, x_max = X[:, 0].min() - 1, X[:, 0].max() + 1
y_min, y_max = X[:, 1].min() - 1, X[:, 1].max() + 1
xx, yy = np.meshgrid(np.arange(x_min, x_max, 0.1),
np.arange(y_min, y_max, 0.1))
Z = clf.predict(np.c_[xx.ravel(), yy.ravel()])
Z = Z.reshape(xx.shape)
plt.contourf(xx, yy, Z, alpha=0.4)
plt.scatter(X[:, 0], X[:, 1], c=y, alpha=0.8)
plt.xlabel('Sepal length')
plt.ylabel('Sepal width')
plt.show()
```
运行结果如下图所示:
![svm_iris.png](https://i.loli.net/2021/06/28/mZL9o5uVqRcJ1b4.png)
其中,红色点代表Iris Setosa,绿色点代表Iris Versicolour,蓝色点代表Iris Virginica。分类边界线为实线,分类区域为阴影区域。
阅读全文