1.6.236. numpy.recfromcsv

numpy.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 (if usemask=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.