### What is your issue? Hi, I am trying to compute the moving average like the following in pandas using `DataArray.rolling_exp`: ``` df.ewm(alpha=0.9, ignore_na=True, adjust=True).mean() ``` does anyone know how to specify `ignore_na` and `adjust` in `DataArray.rolling_exp`? Thanks!