numpoly.loadtxt

numpoly.loadtxt(fname: os.PathLike, dtype: Union[numpy.dtype[Any], None, Type[Any], numpy._typing._dtype_like._SupportsDType[numpy.dtype[Any]], str, Tuple[Any, int], Tuple[Any, Union[SupportsIndex, Sequence[SupportsIndex]]], List[Any], numpy._typing._dtype_like._DTypeDict, Tuple[Any, Any]] = <class 'float'>, comments: str = '# ', delimiter: Optional[str] = None, converters: Optional[Dict[int, Callable]] = None, skiprows: int = 0, usecols: Union[None, int, Sequence[int]] = None, unpack: bool = False, ndmin: int = 0, encoding: str = 'bytes', max_rows: Optional[int] = None)numpoly.baseclass.ndpoly[source]

Load data from a text file.

Each row in the text file must have the same number of values.

Args:
fname:

File, filename, or generator to read. If the filename extension is .gz or .bz2, the file is first decompressed. Note that generators should return byte strings.

dtype:

Data-type of the resulting array; default: float. If this is a structured data-type, the resulting array will be 1-dimensional, and each row will be interpreted as an element of the array. In this case, the number of columns used must match the number of fields in the data-type.

comments:

The characters or list of characters used to indicate the start of a comment. None implies no comments. For backwards compatibility, byte strings will be decoded as ‘latin1’. The default is ‘#’.

delimiter:

The string used to separate values. For backwards compatibility, byte strings will be decoded as ‘latin1’. The default is whitespace.

converters:

A dictionary mapping column number to a function that will parse the column string into the desired value. E.g., if column 0 is a date string: converters = {0: datestr2num}. Converters can also be used to provide a default value for missing data (but see also genfromtxt): converters = {3: lambda s: float(s.strip() or 0)}.

skiprows:

Skip the first skiprows lines, including comments.

usecols:

Which columns to read, with 0 being the first. For example, usecols = (1,4,5) will extract the 2nd, 5th and 6th columns. The default, None, results in all columns being read.

unpack:

If True, the returned array is transposed, so that arguments may be unpacked using x, y, z = loadtxt(...). When used with a structured data-type, arrays are returned for each field.

ndmin:

The returned array will have at least ndmin dimensions. Otherwise mono-dimensional axes will be squeezed. Legal values: 0, 1 or 2.

encoding:

Encoding used to decode the inputfile. Does not apply to input streams. The special value ‘bytes’ enables backward compatibility workarounds that ensures you receive byte arrays as results if possible and passes ‘latin1’ encoded strings to converters. Override this value to receive unicode arrays and pass strings as input to converters. If set to None the system default is used. The default value is ‘bytes’.

max_rows (Optional[int]): int, optional

Read max_rows lines of content after skiprows lines. The default is to read all the lines.

Return:

Data read from the text file.

Example:
>>> q0, q1, q2 = numpoly.variable(3)
>>> poly = numpoly.polynomial([[1, q0], [q0, q2**2-1]])
>>> numpoly.savetxt("/tmp/poly.txt", poly)
>>> numpoly.loadtxt("/tmp/poly.txt")
polynomial([[1.0, q0],
            [q0, q2**2-1.0]])