dask.dataframe.groupby.SeriesGroupBy.get_group
dask.dataframe.groupby.SeriesGroupBy.get_group¶
- SeriesGroupBy.get_group(key)¶
Construct DataFrame from group with provided name.
This docstring was copied from pandas.core.groupby.groupby.GroupBy.get_group.
Some inconsistencies with the Dask version may exist.
- Known inconsistencies:
If the group is not present, Dask will return an empty Series/DataFrame.
- Parameters
- nameobject (Not supported in Dask)
The name of the group to get as a DataFrame.
- objDataFrame, default None (Not supported in Dask)
The DataFrame to take the DataFrame out of. If it is None, the object groupby was called on will be used.
- Returns
- same type as obj