diff --git a/pandas/core/tools/numeric.py b/pandas/core/tools/numeric.py index c2ffe17adbac5..54f4be1cb87b0 100644 --- a/pandas/core/tools/numeric.py +++ b/pandas/core/tools/numeric.py @@ -55,7 +55,8 @@ def to_numeric( """ Convert argument to a numeric type. - The default return dtype is `float64` or `int64` + If the input is already of a numeric dtype, the dtype will be preserved. + For non-numeric inputs, the default return dtype is `float64` or `int64` depending on the data supplied. Use the `downcast` parameter to obtain other dtypes.