This is documentation for an old release of NumPy (version 1.5.). Read this page Search for this page in the documentation of the latest stable release (version > 1.17).
numpy.core.defchararray.chararray.astype
-
chararray.astype(t)
Copy of the array, cast to a specified type.
Parameters : | t : string or dtype
Typecode or data-type to which the array is cast.
|
Examples
>>> x = np.array([1, 2, 2.5])
>>> x
array([ 1. , 2. , 2.5])
>>> x.astype(int)
array([1, 2, 2])