You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Requesting all columns is possible with the shorthand 'all'
1038
1055
1039
-
.. ipython:: python
1056
+
.. code-block:: python
1040
1057
1041
-
df.describe(include='all')
1058
+
>>> df.describe(include='all')
1059
+
catA catB numC numD
1060
+
count 242424.00000024.000000
1061
+
unique 24 NaN NaN
1062
+
top foo a NaN NaN
1063
+
freq 166 NaN NaN
1064
+
mean NaN NaN 11.50000012.000000
1065
+
std NaN NaN 7.0710687.071068
1066
+
min NaN NaN 0.0000000.500000
1067
+
25% NaN NaN 5.7500006.250000
1068
+
50% NaN NaN 11.50000012.000000
1069
+
75% NaN NaN 17.25000017.750000
1070
+
max NaN NaN 23.00000023.500000
1042
1071
1043
1072
Without those arguments, ``describe`` will behave as before, including only numerical columns or, if none are, only categorical columns. See also the :ref:`docs <basics.describe>`
0 commit comments