应用机器学习回归离群值处理
创作时间:
作者:
@小白创作中心
应用机器学习回归离群值处理
引用
CSDN
1.
https://blog.csdn.net/weixin_46287760/article/details/136432752
异常值可能会破坏机器学习模型的运转,导致结果出现偏差并影响准确性。在这篇博文中,我们将深入研究应用机器学习领域,并探索使用 Python 识别和处理异常值的有效技
了解异常值
离群值是与数据集其余部分显着偏差的数据点。它们可能是错误、异常或仅仅是极端值的结果。解决异常值对于确保机器学习模型的稳健性至关重要。
可视化检测:
首先使用箱线图、散点图或直方图直观地检查数据。通常可以通过肉眼检测到与标准的严重偏差。
统计方法:
使用 Z 分数或 IQR(四分位距)等统计方法来量化与平均值或中位数的偏差程度。
import numpy as np
from scipy import stats
def detect_outliers_zscore(data, threshold=3):
z_scores = np.abs(stats.zscore(data))
return np.where(z_scores > threshold)
def detect_outliers_iqr(data):
q1, q3 = np.percentile(data, [25, 75])
iqr = q3 - q1
lower_bound = q1 - 1.5 * iqr
upper_bound = q3 + 1.5 * iqr
return np.where((data < lower_bound) | (data > upper_bound))
异常值处理:
插补:
将离群值替换为平均值、中位数或自定义插补方法。
def impute_outliers(data, method='median'):
if method == 'mean':
replacement_value = np.mean(data)
elif method == 'median':
replacement_value = np.median(data)
else:
# 自定义插补方法
replacement_value = custom_imputation(data)
outliers = detect_outliers_iqr(data)
data[outliers] = replacement_value
return data
截断:
将极值限制在指定范围内。
def truncate_outliers(data, lower_bound, upper_bound):
outliers = detect_outliers_iqr(data)
data[outliers] = np.clip(data[outliers], lower_bound, upper_bound)
return data
实例:预测房价
让我们将这些异常值处理技术应用于房价数据集。我们将加载数据,识别异常值,并采用插补和截断方法。
# Identify outliers using IQR
outliers = detect_outliers_iqr(data['price'])
# Impute outliers with median
data['price'] = impute_outliers(data['price'], method='median')
# Truncate outliers to a specified range
data['price'] = truncate_outliers(data['price'], lower_bound=10000, upper_bound=500000)
让我们考虑一个使用学生考试成绩数据集的随机示例。我们将引入异常值,将其可视化,然后演示异常值处理如何影响简单线性回归模型的性能。
import numpy as np
import matplotlib.pyplot as plt
from sklearn.linear_model import LinearRegression
from sklearn.metrics import mean_squared_error
# Generate random student exam scores
np.random.seed(42)
num_students = 50
exam_scores = np.random.normal(70, 10, num_students)
# Introduce an outlier
outlier_index = np.random.randint(0, num_students)
exam_scores[outlier_index] = 120 # Introducing an outlier
# Visualize the data
plt.scatter(range(num_students), exam_scores, label='Original Data')
plt.xlabel('Student ID')
plt.ylabel('Exam Scores')
plt.title('Distribution of Exam Scores with Outlier')
plt.legend()
plt.show()
# Original linear regression model
X = np.arange(num_students).reshape(-1, 1)
y = exam_scores.reshape(-1, 1)
model = LinearRegression()
model.fit(X, y)

# Predictions on original data
predictions_original = model.predict(X)
# Calculate original mean squared error
mse_original = mean_squared_error(y, predictions_original)
#print(f"Original Mean Squared Error: {mse_original}")
plt.scatter(X, y, label='Original Data')
plt.plot(X, predictions_original, color='red', label='Original Regression Line')
plt.xlabel('Student ID')
plt.ylabel('Exam Scores')
plt.title('Linear Regression on Original Data')
plt.legend()
plt.show()
# Impute outliers with median
exam_scores_no_outlier = impute_outliers(exam_scores, method='median')
# Fit a linear regression model to the data without outliers
y_no_outlier = exam_scores_no_outlier.reshape(-1, 1)
model_no_outlier = LinearRegression()
model_no_outlier.fit(X, y_no_outlier)
# Predictions on data without outliers
predictions_no_outlier = model_no_outlier.predict(X)
# Calculate mean squared error after outlier treatment
mse_no_outlier = mean_squared_error(y_no_outlier, predictions_no_outlier)

#print(f"Mean Squared Error after Outlier Treatment: {mse_no_outlier}")
plt.scatter(X, y_no_outlier, label='Data without Outlier')
plt.plot(X, predictions_no_outlier, color='green', label='Regression Line (No Outlier)')
plt.xlabel('Student ID')
plt.ylabel('Exam Scores')
plt.title('Linear Regression after Outlier Treatment')
plt.legend()
plt.show()
有效处理异常值是构建强大的机器学习模型的关键步骤。通过使用 Python 以及插补和截断等实用技术,您可以提高模型的准确性和可靠性。在您的数据集上试验这些方法,并观察异常值是否会失去对您的机器学习工作的破坏性影响。
热门推荐
注销的手机号多久重回市场?我们应注意什么?
上次输国足还是十年前!缺了中场核心,无碍沙特取胜信心!
王国芳:日本歌舞伎的形成及其演变
准确度英文:数字时代的法律基石与信息真实性的保障
超声波清洗机震动频率及其影响因素解析
中式美学科普|唐三彩是哪三彩?
黄芽菜汤的营养价值
地中海贫血患者适宜食用的食物
金丝楠木家具(中国十大名贵木材)
个体户和自由职业者怎么缴纳五险一金
个体工商户可以缴纳五险一金吗?未注销会带来哪些影响?
维生素C真能预防感冒?最新研究给出不同答案
如何离线交付Docker镜像
法国打造"未来无人水雷战系统"
消影线现象如何影响市场分析?这种技术指标有哪些应用价值?
08年山西出土一金棺,为何16年后才打开?专家:里面的东西太重要
小酥肉的创新做法与口味探索
新中式美学启思录 2.0 |从文化关切性到美学朴素性,解码新中式的当代价值系统
张九龄《望月怀远》全诗原文、注释、翻译和赏析
张九龄《望月怀远》全诗原文、注释、翻译和赏析
江苏连云港:“空中番茄”种出科技范儿
超全!CISP认证全类别详细介绍
邯郸行宫:百年皇家建筑的现代文化转型
让充电更安心:电动自行车插座标准解析
张家界天门山一日游最详细旅游攻略
周杰伦新歌词作黄俊郎:最伟大的作品,最困难的尝试
如何让自我介绍更有逻辑性
MATLAB坐标轴设置完全指南:范围、刻度和标签的全方位控制
河北工程大学附属医院:让数据在业务决策中真正发挥作用,医疗设备精细化管理出效益
物业不让业主的车进小区该怎么办