numpy.loadtxt vs. numpy.genfromtxt
numpy.loadtxt: Load data from a text file. Each row in the text file must have the same number of values. numpy.loadtxt(fname, dtype=, comments='#', delimiter=None, converters=None, skiprows=0, usecols=None, unpack=False, ndmin=0) numpy.genfromtxt: Load data with missing values handled as specified. numpy.genfromtxt(fname, dtype=, comments='#', delimiter=None, skiprows=0, skip_header=0, skip_foo..
더보기