Pandas/NumPy에서 열/변수가 숫자인지 여부를 확인하는 방법은 무엇입니까? 변수가 다음에 있는지 여부를 확인할 수 있는 더 나은 방법이 있습니까?Pandas및/또는NumPy이라numeric아니면 안 되나요? 나는 정의된 자아가 있습니다.dictionary와 함께dtypes열쇠로numeric/not가치로서인pandas 0.20.2할 수 있는 일: import pandas as pd from pandas.api.types import is_string_dtype from pandas.api.types import is_numeric_dtype df = pd.DataFrame({'A': ['a', 'b', 'c'], 'B': [1.0, 2.0, 3.0]}) is_string_dtype(df['A']) ..