Search
Search Results
Search finished, found 14 page(s) matching the search query.
- numpy.char.chararray.mean (Python method, in numpy.char.chararray.mean)
- NumPy 1.10.0 Release Notes
..., but a fully masked version of the item. Median warns and returns nan when invalid values are encountered Similar to mean, median and percentile now emits a Runtime warning and returns NaN in slices where a NaN is present. To compute the...
- NumPy 2.0 migration guide
...ch parts of NumPy are considered private. Please see the tables below for guidance on migration. For most changes this means replacing it with a backwards compatible alternative. Please refer to NEP 52 — Python API cleanup for NumPy 2.0 fo...
- NumPy 2.0.0 Release Notes
...r rather than bytes. Pass the encoding explicitly to always get the new or old behavior. For genfromtxt the change also means that returned values will now be unicode strings rather than bytes. (gh-25158) f2py compatibility notes f2py wi...
- numpy.char.chararray.astype
...ype to which the array is cast. order{‘C’, ‘F’, ‘A’, ‘K’}, optionalControls the memory layout order of the result. ‘C’ means C order, ‘F’ means Fortran order, ‘A’ means ‘F’ order if all the arrays are Fortran contiguous, ‘C’ order otherwis...
- numpy.char.chararray.copy
...eturn a copy of the array. Parameters: order{‘C’, ‘F’, ‘A’, ‘K’}, optionalControls the memory layout of the copy. ‘C’ means C-order, ‘F’ means F-order, ‘A’ means ‘F’ if a is Fortran contiguous, ‘C’ otherwise. ‘K’ means match the layout of...
- numpy.char.chararray.flatten
...rder='C') Return a copy of the array collapsed into one dimension. Parameters: order{‘C’, ‘F’, ‘A’, ‘K’}, optional‘C’ means to flatten in row-major (C-style) order. ‘F’ means to flatten in column-major (Fortran- style) order. ‘A’ means to...
- numpy.char.chararray.mean
...numpy.char.chararray.mean...
- numpy.char.chararray.sort
...fer to numpy.sort for full documentation. Parameters: axisint, optionalAxis along which to sort. Default is -1, which means sort along the last axis. kind{‘quicksort’, ‘mergesort’, ‘heapsort’, ‘stable’}, optionalSorting algorithm. The de...
- numpy.char.chararray.tobytes
...by the order parameter. Parameters: order{‘C’, ‘F’, ‘A’}, optionalControls the memory layout of the bytes object. ‘C’ means C-order, ‘F’ means F-order, ‘A’ (short for Any) means ‘F’ if a is Fortran contiguous, ‘C’ otherwise. Default is ‘C...
- numpy.char.chararray.transpose
- numpy.char.chararray.view
- Standard array subclasses
- Legacy fixed-width string functionality