pub trait H3CompactDataframe {
// Required method
fn h3_compact_dataframe<S>(
self,
cell_column_name: S,
return_exploded: bool,
) -> Result<Self, Error>
where Self: Sized,
S: AsRef<str>;
}Required Methods§
Sourcefn h3_compact_dataframe<S>(
self,
cell_column_name: S,
return_exploded: bool,
) -> Result<Self, Error>
fn h3_compact_dataframe<S>( self, cell_column_name: S, return_exploded: bool, ) -> Result<Self, Error>
Compact the cells in the column named cell_column_name.
This is done by first grouping the dataframe using all other columns and then compacting the list of cells of each group.