chararray.item(*args) Copy an element of an array to a standard Python scalar and return it.
chararray.tostring(order='C') Construct Python bytes containing the raw data bytes in the array.
chararray.decode(encoding=None, errors=None)
chararray.view(dtype=None, type=None) New view of array with the same data.
chararray.flatten(order='C') Return a copy of the array collapsed into one dimension.
chararray.data Python buffer object pointing to the start of the array?s data.
chararray.swapaxes(axis1, axis2) Return a view of the array with axis1 and axis2
chararray.astype(dtype, order='K', casting='unsafe', subok=True, copy=True) Copy of the array, cast
chararray.reshape(shape, order='C') Returns an array containing the same data with a new shape.
chararray.sort(axis=-1, kind='quicksort', order=None) Sort an array, in-place.
Page 1 of 8