pub trait DataFrameGroupByBehavior {
    fn groupby<T>(&self, keys: Series<T>) -> DataFrameGroupBy<T>
    where
        T: BlackJackData + ToPrimitive
; }
Expand description

The intended behavior of a grouped DataFrame.

Required Methods§

Group by method for grouping Series in a DataFrame by key.

Implementors§