pandas 1.4.2

ParametersReturnsBackRef
is_numeric_v_string_like(a: 'ArrayLike', b)

Parameters

a : array-like, scalar

The first object to check.

b : array-like, scalar

The second object to check.

Returns

boolean

Whether we return a comparing a string-like object to a numeric array.

Check if we are comparing a string-like object to a numeric ndarray. NumPy doesn't like to compare such objects, especially numeric arrays and scalar string-likes.

Examples

This example is valid syntax, but we were not able to check execution
>>> is_numeric_v_string_like(np.array([1]), "foo")
True
This example is valid syntax, but we were not able to check execution
>>> is_numeric_v_string_like(np.array([1, 2]), np.array(["foo"]))
True
This example is valid syntax, but we were not able to check execution
>>> is_numeric_v_string_like(np.array(["foo"]), np.array([1, 2]))
True
This example is valid syntax, but we were not able to check execution
>>> is_numeric_v_string_like(np.array([1]), np.array([2]))
False
This example is valid syntax, but we were not able to check execution
>>> is_numeric_v_string_like(np.array(["foo"]), np.array(["foo"]))
False
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

pandas.core.dtypes.common.is_numeric_v_string_like

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /pandas/core/dtypes/common.py#1042
type: <class 'function'>
Commit: