python基于随机森林的糖尿病的预测
时间: 2023-08-31 07:06:20 浏览: 191
基于python的线性回归和聚类分析预测糖尿病
5星 · 资源好评率100%
好的,以下是一个基于Python实现的随机森林算法预测糖尿病的案例。
首先,我们需要加载数据集,并将其划分为训练集和测试集:
```python
import pandas as pd
from sklearn.model_selection import train_test_split
# 加载数据集
data = pd.read_csv('diabetes.csv')
# 划分特征和标签
X = data.drop('Outcome', axis=1)
y = data['Outcome']
# 划分训练集和测试集
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
```
接下来,我们可以使用随机森林算法进行训练和预测:
```python
from sklearn.ensemble import RandomForestClassifier
# 创建随机森林分类器
rfc = RandomForestClassifier(n_estimators=100, random_state=42)
# 训练模型
rfc.fit(X_train, y_train)
# 预测结果
y_pred = rfc.predict(X_test)
```
最后,我们可以使用一些评估指标来评估模型的性能,例如混淆矩阵、准确率、召回率和F1得分:
```python
from sklearn.metrics import confusion_matrix, accuracy_score, recall_score, f1_score
# 计算混淆矩阵
conf_matrix = confusion_matrix(y_test, y_pred)
# 计算准确率
accuracy = accuracy_score(y_test, y_pred)
# 计算召回率
recall = recall_score(y_test, y_pred)
# 计算F1得分
f1 = f1_score(y_test, y_pred)
print('混淆矩阵:\n', conf_matrix)
print('准确率:', accuracy)
print('召回率:', recall)
print('F1得分:', f1)
```
完整代码如下:
```python
import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import confusion_matrix, accuracy_score, recall_score, f1_score
# 加载数据集
data = pd.read_csv('diabetes.csv')
# 划分特征和标签
X = data.drop('Outcome', axis=1)
y = data['Outcome']
# 划分训练集和测试集
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
# 创建随机森林分类器
rfc = RandomForestClassifier(n_estimators=100, random_state=42)
# 训练模型
rfc.fit(X_train, y_train)
# 预测结果
y_pred = rfc.predict(X_test)
# 计算混淆矩阵
conf_matrix = confusion_matrix(y_test, y_pred)
# 计算准确率
accuracy = accuracy_score(y_test, y_pred)
# 计算召回率
recall = recall_score(y_test, y_pred)
# 计算F1得分
f1 = f1_score(y_test, y_pred)
print('混淆矩阵:\n', conf_matrix)
print('准确率:', accuracy)
print('召回率:', recall)
print('F1得分:', f1)
```
注意,这里的数据集是一个名为"diabetes.csv"的文件,其包含了多个人的各种生理指标和是否患有糖尿病的标签。在实际使用中,您需要将数据集替换为您自己的数据集。
阅读全文