scipp.io.csv#

Load CSV files.

Note

CSV support requires pandas to be installed. You need to do this manually as it is not declared as a dependency of Scipp. You can use either pip install pandas or conda install -c conda-forge pandas.

CSV (‘comma separated values’) files store a simple table of data as a string. There are many different forms of this format. So check whether the loaded data is what you expect for your files. See scipp.io.csv.load_csv() for examples.

See also

pandas.read_csv

More details on the underlying parser.

Functions

load_csv(filename, *[, sep, data_columns, ...])

Load a CSV file as a dataset.