我如何使用熊猫来计算加权移动平均数

使用我可以计算的熊猫

  • 简单移动平均SMA使用pandas.stats.moments.rolling_mean
  • 指数移动平均EMA使用pandas.stats.moments.ewma
  • 但是,如何计算维基百科http://en.wikipedia.org/wiki/Exponential_smoothing中描述的使用熊猫的加权移动平均值(WMA)?

    是否有熊猫功能来计算WMA?


    不,没有具体算法的实现。 在这里创建一个关于它的GitHub问题:

    https://github.com/pydata/pandas/issues/886

    我很乐意为此采取拉取请求 - 实现应该是直接的Cython编码,并且可以集成到pandas.stats.moments

    链接地址: http://www.djcxy.com/p/58095.html

    上一篇: how do I compute a weighted moving average using pandas

    下一篇: ImageView: fill horizontal maintaining aspect ratio