gpt4 book ai didi

python - sklearn 的线性回归模型如何在以下代码中进行非线性预测?

转载 作者:行者123 更新时间:2023-12-01 07:18:25 25 4
gpt4 key购买 nike

由于线性回归算法找到训练数据的最佳拟合线,因此新数据的预测将始终位于该最佳拟合线上。那么 sklearn 的线性回归模型如何非线性预测数据,如图所示。!(https://pythonprogramming.net/static/images/machine-learning/linear-regression-prediction.png)

import Quandl, math
import numpy as np
import pandas as pd
from sklearn import preprocessing, cross_validation, svm
from sklearn.linear_model import LinearRegression
import matplotlib.pyplot as plt
from matplotlib import style
import datetime

style.use('ggplot')

df = Quandl.get("WIKI/GOOGL")
df = df[['Adj. Open', 'Adj. High', 'Adj. Low', 'Adj. Close', 'Adj. Volume']]
df['HL_PCT'] = (df['Adj. High'] - df['Adj. Low']) / df['Adj. Close'] * 100.0
df['PCT_change'] = (df['Adj. Close'] - df['Adj. Open']) / df['Adj. Open'] * 100.0

df = df[['Adj. Close', 'HL_PCT', 'PCT_change', 'Adj. Volume']]
forecast_col = 'Adj. Close'
df.fillna(value=-99999, inplace=True)
forecast_out = int(math.ceil(0.01 * len(df)))
df['label'] = df[forecast_col].shift(-forecast_out)

X = np.array(df.drop(['label'], 1))
X = preprocessing.scale(X)
X_lately = X[-forecast_out:]
X = X[:-forecast_out]

df.dropna(inplace=True)

y = np.array(df['label'])

X_train, X_test, y_train, y_test = cross_validation.train_test_split(X, y, test_size=0.2)
clf = LinearRegression(n_jobs=-1)
clf.fit(X_train, y_train)
confidence = clf.score(X_test, y_test)

forecast_set = clf.predict(X_lately)
df['Forecast'] = np.nan

last_date = df.iloc[-1].name
last_unix = last_date.timestamp()
one_day = 86400
next_unix = last_unix + one_day

for i in forecast_set:
next_date = datetime.datetime.fromtimestamp(next_unix)
next_unix += 86400
df.loc[next_date] = [np.nan for _ in range(len(df.columns)-1)]+[i]

df['Adj. Close'].plot()
df['Forecast'].plot()
plt.legend(loc=4)
plt.xlabel('Date')
plt.ylabel('Price')
plt.show()

最佳答案

线性回归生成的模型在所有预测特征中都是线性的,即 X 。您的模型似乎是使用以下功能进行训练的 'HL_PCT', 'PCT_change', 'Adj. Volume' 。但是,该图在 X 轴上仅包含一个特征(与所有 2D 图一样), Date ,这甚至不是你的预测特征之一。即使DateX 中您的预测功能之一,从多个维度到 1 的投影可能会使模型看起来非线性。

关于python - sklearn 的线性回归模型如何在以下代码中进行非线性预测?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57837376/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com