-
Notifications
You must be signed in to change notification settings - Fork 70
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
We've implement xorbits._mars.dataframe.groupby.rolling.GroupByRolling
, and need to add an adapter for it.
To Reproduce
To help us to reproduce this bug, please provide information below:
- Your Python version
- The version of Xorbits you use
master - Versions of crucial packages, such as numpy, scipy and pandas
- Full stack of the error.
- Minimized code to reproduce the error.
In [1]: import xorbits.pandas as pd
In [2]: df = pd.read_csv('stock.csv', index_col=0, parse_dates=True)
In [3]: df.groupby(
...: ['StockName']).rolling(window=10).mean(numeric_only=True)[['Open', 'High', 'Low', 'Close'
...: , 'Volume']]
Out[4]: DataFrame <op=DataFrameIndex, key=d21f5134e213a596827c24722f2df7e4_0>
Expected behavior
Computation should be triggered.
Additional context
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working