For ex : Pandas code
df2 = df['xx'].rolling(window=25, min_periods=10, win_type='hamming', center=True)
in Koalas df['xx'].rolling(25) - works
Also if possible please implement apply function while using window .
Ex. df['xx'].rolling(window=25, min_periods=10, win_type='hamming', center=True).apply(func)
For ex : Pandas code df2 = df['xx'].rolling(window=25, min_periods=10, win_type='hamming', center=True) in Koalas df['xx'].rolling(25) - works Also if possible please implement apply function while using window . Ex. df['xx'].rolling(window=25, min_periods=10, win_type='hamming', center=True).apply(func)