3.11.126. numpy.lib.recfromtxt¶
-
numpy.lib.recfromtxt(fname, **kwargs)[source]¶ Load ASCII data from a file and return it in a record array.
If
usemask=Falsea standard recarray is returned, ifusemask=Truea MaskedRecords array is returned.Parameters: fname, kwargs : For a description of input parameters, see genfromtxt. See also
numpy.genfromtxt- generic function
Notes
By default, dtype is None, which means that the data-type of the output array will be determined from the data.