首页  >  文章  >  后端开发  >  为什么 NumPy 没有计算移动平均线的内置函数?

为什么 NumPy 没有计算移动平均线的内置函数?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-11-15 14:14:03637浏览

Why Doesn\'t NumPy Have a Built-in Function for Calculating Moving Averages?

Calculating Rolling / Moving Average with Python + NumPy / SciPy

despite the usefulness of moving averages in time series analysis, NumPy and SciPy do not offer a standalone function for this purpose, raising questions about the rationale behind this omission.

Implementing Moving Average in NumPy

One straightforward approach to implementing moving average in NumPy is through the np.cumsum function, which accumulates the elements of an array. The resulting cumsum array can then be appropriately sliced to obtain the moving average.

def moving_average(a, n=3):
    ret = np.cumsum(a, dtype=float)
    ret[n:] = ret[n:] - ret[:-n]
    return ret[n - 1:] / n

This method is relatively fast and avoids error-prone convoluted solutions.

Reason for Lack of Batteries Included Functionality

Despite the apparent simplicity of the moving average implementation, the reason for its absence in NumPy core functionality is likely related to the specialized nature of such operations. NumPy focuses on providing fundamental numerical operations, while specialized algorithms like time series analysis are often left to dedicated packages. This approach allows NumPy to maintain its core functionality and avoids bloating it with niche tools.

以上是为什么 NumPy 没有计算移动平均线的内置函数?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn