load_delimited#
- load_delimited(filename, header=True, sep=',', with_title=False, with_legend=False, limit=None, **kwargs)#
basic processing of tabular data
- Parameters:
- filename: Path
path to delimited file (can begin with ~)
- header: bool
whether the first line of the file (after the title, if present) is a header
- sep: str
the character separating columns
- with_title: bool
whether the first line of the file is a title
- with_legend: bool
whether the last line of the file is a legend
- limit: int
maximum number of lines to read from the file
- Returns:
- header, rows, title, legend
Notes
All row values remain as strings.