ClikaRT::tables::CsvReadOptions
struct
Header: ClikaRT/tables/table.h
Options for Table::read_csv / read_csv_string. Column dtypes are inferred; an empty unquoted field is always null, and an unquoted field equal to one of null_tokens also becomes null.
Data members
separator
char separator = ','
the field separator.
Declared in ClikaRT/tables/table.h, line 39
has_header
bool has_header = true
the first row carries the column names.
Declared in ClikaRT/tables/table.h, line 40
null_tokens
std::vector<std::string> null_tokens
unquoted values that read as null (besides empty).
Declared in ClikaRT/tables/table.h, line 41