Record Arrays (numpy.rec)#
Record arrays expose the fields of structured arrays as properties.
Most commonly, ndarrays contain elements of a single type, e.g. floats, integers, bools etc. However, it is possible for elements to be combinations of these using structured types, such as:
Functions#
|
Construct a record array from a wide-variety of objects. |
|
Find duplication in a list, return a list of duplicated elements |
|
Class to convert formats, names, titles description to a dtype. |
|
Create a record array from a (flat) list of arrays |
|
Create an array from binary file data |
|
Create a recarray from a list of records in text form. |
|
Create a record array from binary data |
Also, the numpy.recarray class and the numpy.record scalar dtype are present
in this namespace.