3.11.125. numpy.lib.recfromcsv¶
-
numpy.lib.recfromcsv(fname, **kwargs)[source]¶ Load ASCII data stored in a comma-separated file.
The returned array is a record array (if
usemask=False, see recarray) or a masked record array (ifusemask=True, see ma.mrecords.MaskedRecords).Parameters: fname, kwargs : For a description of input parameters, see genfromtxt. See also
numpy.genfromtxt- generic function to load ASCII data.
Notes
By default, dtype is None, which means that the data-type of the output array will be determined from the data.