pd.to_numeric¶
pandas.to_numeric(arg, errors="raise", downcast=None)
Supported Arguments¶
| argument | datatypes | other requirements | 
|---|---|---|
arg | 
Series or Array | |
downcast | 
String and one of ('integer', 'signed', 'unsigned', 'float') | 
  | 
Note
- Output type is float64 by default
 - Unlike Pandas, Bodo does not dynamically determine output type, and does not downcast to the smallest numerical type.
 downcastparameter should be used for type annotation of output.