chararray.swapaxes(axis1, axis2) Return a view of the array with axis1 and axis2
chararray.rsplit(sep=None, maxsplit=None)
chararray.count(sub, start=0, end=None)
chararray.view(dtype=None, type=None) New view of array with the same data.
chararray.decode(encoding=None, errors=None)
chararray.T Same as self.transpose(), except that self is returned if self.ndim < 2.
chararray.put(indices, values, mode='raise') Set a.flat[n] = values[n] for all n
chararray.sort(axis=-1, kind='quicksort', order=None) Sort an array, in-place.
chararray.tostring(order='C') Construct Python bytes containing the raw data bytes in the array.
chararray.ndim Number of array dimensions. Examples
Page 1 of 8