Series.get_dtype_counts(self)
[source]
Return counts of unique dtypes in this object.
Deprecated since version 0.25.0.
Use .dtypes.value_counts()
instead.
Returns: |
|
---|
See also
dtypes
>>> a = [['a', 1, 1.0], ['b', 2, 2.0], ['c', 3, 3.0]] >>> df = pd.DataFrame(a, columns=['str', 'int', 'float']) >>> df str int float 0 a 1 1.0 1 b 2 2.0 2 c 3 3.0
>>> df.get_dtype_counts() float64 1 int64 1 object 1 dtype: int64
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/0.25.0/reference/api/pandas.Series.get_dtype_counts.html