【Python】線性迴歸使用案例

這篇主要介紹Python的Sklearn實現線性迴歸進行擬合和預測的使用方法。 1.創建數據 import numpy as np import matplotlib.pyplot as plt rng = np.random.RandomState(20) x = 10*rng.rand(50) y = 2*x-1+rng.rand(50) plt.scatter(x,y) 2.構建線性迴歸模型
相關文章
相關標籤/搜索