miscset.io.read_csv¶
- miscset.io.read_csv(path, *args, **kwargs)[source]¶
Read a CSV file.
Parse a csv file to a pandas DataFrame.
- Parameters
path (str) – File path.
args – Arguments passed to pandas.read_csv.
kwargs – Arguments passed to pandas.read_csv.
- Returns
A table containing the values read from the file.
- Return type
DataFrame