Skip to content

Commit 6436149

Browse files
committed
DOC: fix merge conflicts
2 parents 0f47823 + 32be605 commit 6436149

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pandas/core/groupby/generic.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -929,12 +929,14 @@ def describe(self, percentiles=None, include=None, exclude=None) -> Series:
929929
- 'all' : All columns of the input will be included in the output.
930930
- A list-like of dtypes : Limits the results to the
931931
provided data types.
932+
932933
To limit the result to numeric types submit
933934
``numpy.number``. To limit it instead to object columns submit
934935
the ``numpy.object`` data type. Strings
935936
can also be used in the style of
936937
``select_dtypes`` (e.g. ``df.describe(include=['O'])``). To
937938
select pandas categorical columns, use ``'category'``
939+
938940
- None (default) : The result will include all numeric columns.
939941
940942
exclude : list-like of dtypes or None (default), optional,
@@ -1665,7 +1667,8 @@ def plot(self) -> GroupByPlot:
16651667
- 'area' : area plot
16661668
- 'pie' : pie plot
16671669
- 'scatter' : scatter plot (DataFrame only)
1668-
- 'hexbin' : hexbin plot (DataFrame only)
1670+
- 'hexbin' : hexbin plot (DataFrame only).
1671+
16691672
ax : matplotlib axes object, default None
16701673
An axes of the current figure.
16711674
subplots : bool or sequence of iterables, default False

0 commit comments

Comments
 (0)