标签: python pandas moving-average
我有以下代码:
close = df['close'] df['EMAClose_ewm'] = close.ewm(span=10000,adjust=False).mean()
为什么ewm后有 .mean()?还有其他选择吗?