NumPy에 이동 평균 계산 기능이 내장되어 있지 않은 이유는 무엇입니까?

Mary-Kate Olsen
풀어 주다: 2024-11-15 14:14:03
원래의
637명이 탐색했습니다.

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿