Python實(shí)現(xiàn)的線性回歸算法示例【附csv文件下載】
本文實(shí)例講述了Python實(shí)現(xiàn)的線性回歸算法。分享給大家供大家參考,具體如下:
用python實(shí)現(xiàn)線性回歸
Using Python to Implement Line Regression Algorithm
小菜鳥記錄學(xué)習(xí)過程
代碼:
#encoding:utf-8 """ Author: njulpy Version: 1.0 Data: 2018/04/09 Project: Using Python to Implement LineRegression Algorithm """ import numpy as np import pandas as pd from numpy.linalg import inv from numpy import dot from sklearn.model_selection import train_test_split import matplotlib.pyplot as plt from sklearn import linear_model # 最小二乘法 def lms(x_train,y_train,x_test): theta_n = dot(dot(inv(dot(x_train.T, x_train)), x_train.T), y_train) # theta = (X'X)^(-1)X'Y #print(theta_n) y_pre = dot(x_test,theta_n) mse = np.average((y_test-y_pre)**2) #print(len(y_pre)) #print(mse) return theta_n,y_pre,mse #梯度下降算法 def train(x_train, y_train, num, alpha,m, n): beta = np.ones(n) for i in range(num): h = np.dot(x_train, beta) # 計(jì)算預(yù)測值 error = h - y_train.T # 計(jì)算預(yù)測值與訓(xùn)練集的差值 delt = 2*alpha * np.dot(error, x_train)/m # 計(jì)算參數(shù)的梯度變化值 beta = beta - delt #print('error', error) return beta if __name__ == "__main__": iris = pd.read_csv('iris.csv') iris['Bias'] = float(1) x = iris[['Sepal.Width', 'Petal.Length', 'Petal.Width', 'Bias']] y = iris['Sepal.Length'] x_train, x_test, y_train, y_test = train_test_split(x, y, test_size=0.2, random_state=5) t = np.arange(len(x_test)) m, n = np.shape(x_train) # Leastsquare theta_n, y_pre, mse = lms(x_train, y_train, x_test) # plt.plot(t, y_test, label='Test') # plt.plot(t, y_pre, label='Predict') # plt.show() # GradientDescent beta = train(x_train, y_train, 1000, 0.001, m, n) y_predict = np.dot(x_test, beta.T) # plt.plot(t, y_predict) # plt.plot(t, y_test) # plt.show() # sklearn regr = linear_model.LinearRegression() regr.fit(x_train, y_train) y_p = regr.predict(x_test) print(regr.coef_,theta_n,beta) l1,=plt.plot(t, y_predict) l2,=plt.plot(t, y_p) l3,=plt.plot(t, y_pre) l4,=plt.plot(t, y_test) plt.legend(handles=[l1, l2,l3,l4 ], labels=['GradientDescent', 'sklearn','Leastsquare','True'], loc='best') plt.show()
輸出結(jié)果
sklearn: [ 0.65368836 0.70955523 -0.54193454 0. ]
LeastSquare: [ 0.65368836 0.70955523 -0.54193454 1.84603897]
GradientDescent: [ 0.98359285 0.29325906 0.60084232 1.006859 ]
附:上述示例中的iris.csv文件點(diǎn)擊此處本站下載。
更多關(guān)于Python相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Python數(shù)學(xué)運(yùn)算技巧總結(jié)》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》及《Python入門與進(jìn)階經(jīng)典教程》
希望本文所述對(duì)大家Python程序設(shè)計(jì)有所幫助。
- Python 線性回歸分析以及評(píng)價(jià)指標(biāo)詳解
- python使用梯度下降算法實(shí)現(xiàn)一個(gè)多線性回歸
- python 線性回歸分析模型檢驗(yàn)標(biāo)準(zhǔn)--擬合優(yōu)度詳解
- 關(guān)于多元線性回歸分析——Python&SPSS
- sklearn+python:線性回歸案例
- python用線性回歸預(yù)測股票價(jià)格的實(shí)現(xiàn)代碼
- Python利用神經(jīng)網(wǎng)絡(luò)解決非線性回歸問題實(shí)例詳解
- 8種用Python實(shí)現(xiàn)線性回歸的方法對(duì)比詳解
- python3 線性回歸驗(yàn)證方法
- python 機(jī)器學(xué)習(xí)之支持向量機(jī)非線性回歸SVR模型
- Python實(shí)現(xiàn)的簡單線性回歸算法實(shí)例分析
- python實(shí)現(xiàn)機(jī)器學(xué)習(xí)之多元線性回歸
- Python數(shù)據(jù)分析之雙色球基于線性回歸算法預(yù)測下期中獎(jiǎng)結(jié)果示例
- Python線性回歸實(shí)戰(zhàn)分析
- 如何在python中實(shí)現(xiàn)線性回歸
相關(guān)文章
python程序運(yùn)行進(jìn)程、使用時(shí)間、剩余時(shí)間顯示功能的實(shí)現(xiàn)代碼
這篇文章主要介紹了python程序運(yùn)行進(jìn)程、使用時(shí)間、剩余時(shí)間顯示功能,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友參考下吧2019-07-07JetBrains PyCharm(Community版本)的下載、安裝和初步使用圖文教程詳解
這篇文章主要介紹了JetBrains PyCharm(Community版本)的下載、安裝和初步使用教程,本文圖文并茂給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)和工作具有一定的參考借鑒價(jià)值 ,需要的朋友可以參考下2020-03-03pytorch?K折交叉驗(yàn)證過程說明及實(shí)現(xiàn)方式
這篇文章主要介紹了pytorch?K折交叉驗(yàn)證過程說明及實(shí)現(xiàn)方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-11-11VS2022+Python3.11實(shí)現(xiàn)C++調(diào)用python接口
在C/C++中嵌入Python,可以使用Python提供的強(qiáng)大功能,通過嵌入Python可以替代動(dòng)態(tài)鏈接庫形式的接口,本文主要介紹了VS2022+Python3.11實(shí)現(xiàn)C++調(diào)用python接口,感興趣的可以了解一下2023-12-12深入理解Tensorflow中的masking和padding
TensorFlow 是一個(gè)用于人工智能的開源神器,這篇文章主要介紹了Tensorflow中的masking和padding的相關(guān)知識(shí),通過實(shí)例代碼給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-02-02python中導(dǎo)入 train_test_split提示錯(cuò)誤的解決
這篇文章主要介紹了python中導(dǎo)入 train_test_split提示錯(cuò)誤的解決,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2020-06-06Jupyter安裝鏈接aconda實(shí)現(xiàn)過程圖解
這篇文章主要介紹了Jupyter安裝鏈接aconda實(shí)現(xiàn)過程圖解,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-11-11