pandas.Index.is_numeric¶
- Index.is_numeric()[source]¶
Check if the Index only consists of numeric data.
- Returns
- bool
Whether or not the Index only consists of numeric data.
See also
is_booleanCheck if the Index only consists of booleans.
is_integerCheck if the Index only consists of integers.
is_floatingCheck if the Index is a floating type.
is_objectCheck if the Index is of the object dtype.
is_categoricalCheck if the Index holds categorical data.
is_intervalCheck if the Index holds Interval objects.
is_mixedCheck if the Index holds data with mixed data types.
Examples
>>> idx = pd.Index([1.0, 2.0, 3.0, 4.0]) >>> idx.is_numeric() True
>>> idx = pd.Index([1, 2, 3, 4.0]) >>> idx.is_numeric() True
>>> idx = pd.Index([1, 2, 3, 4]) >>> idx.is_numeric() True
>>> idx = pd.Index([1, 2, 3, 4.0, np.nan]) >>> idx.is_numeric() True
>>> idx = pd.Index([1, 2, 3, 4.0, np.nan, "Apple"]) >>> idx.is_numeric() False