时间序列回归的经典方法有:
The classical approaches to time series regression are:
自回归模型(有关于它们的全部文献)
auto-regressive models (there are whole literatures about them)
高斯过程
傅里叶分解或类似方法提取信号的周期性分量(即数据中隐藏的振荡)
Fourier decomposition or similar to extract the periodic components of the signal (i.e., hidden oscillations in the data)
我知道的其他不太常见的方法是
Other less common approaches that I know about are
慢特征分析,一种提取时间序列驱动力的算法,例如,混沌信号背后的参数
Slow Feature Analysis, an algorithm that extract the driving forces of a time series, e.g., the parameters behind a chaotic signal
神经网络 (NN) 方法,使用循环神经网络(即,用于处理时间信号)或经典前馈神经网络,接收过去数据的输入部分并尝试预测未来的某个点;后者的优点是已知循环神经网络在考虑遥远的过去方面存在问题
Neural Network (NN) approaches, either using recurrent NNs (i.e., built to process time signals) or classical feed-forward NNs that receive as input part of the past data and try to predict a point in the future; the advantage of the latter is that recurrent NNs are known to have a problem with taking into account the distant past
在我看来,对于财务数据分析,不仅要获得时间序列的最佳猜测外推,还要获得可靠的置信区间,因为由此产生的投资策略可能会因此而大不相同.概率方法,如高斯过程,免费"为您提供,因为它们返回可能的未来值的概率分布.使用经典统计方法,您将不得不依赖 引导技术.
In my opinion for financial data analysis it is important to obtain not only a best-guess extrapolation of the time series, but also a reliable confidence interval, as the resulting investment strategy could be very different depending on that. Probabilistic methods, like Gaussian Processes, give you that "for free", as they return a probability distribution over possible future values. With classical statistical methods you'll have to rely on bootstrapping techniques.
提供统计和机器学习工具的 Python 库有很多,以下是我最熟悉的:
There are many Python libraries that offer statistical and Machine Learning tools, here are the ones I'm most familiar with:
这篇关于时间序列预测(最终使用 python)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!