()
| 134 | |
| 135 | |
| 136 | def test_std_columns_int(): |
| 137 | df = pd.DataFrame({0: [5], 1: [5]}) |
| 138 | ddf = from_pandas(df, npartitions=2) |
| 139 | assert_eq(ddf.groupby(ddf[0]).std(), df.groupby(df[0]).std()) |
| 140 | |
| 141 | |
| 142 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…