Numeric String Converter#
Convert all numeric strings to their equivalent integer and floating point types. Useful for when extracting from a source that only recognizes data as string types such as CSV.
Note
The string representation of the PHP constant NAN
(not a number) is the string literal 'NAN'
.
Interfaces: Transformer
Data Type Compatibility: Categorical
Parameters#
This transformer does not have any parameters.
Example#
use Rubix\ML\Transformers\NumericStringConverter;
$transformer = new NumericStringConverter();
Additional Methods#
This transformer does not have any additional methods.
Last update:
2021-04-27