I am trying to replicate ewm python (https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.ewm.html) function in R but without success.
Here is the python code:
import pandas as pd
df = pd.DataFrame({'B': [0:100]})
df.ewm(span=100).std()
I can't get same (or similar) results in R.