|
| csv_reader_options_builder ()=default |
| 默认构造函数。 更多...
|
|
| csv_reader_options_builder (source_info src) |
| 从源信息构造的构造函数。 更多...
|
|
csv_reader_options_builder & | compression (compression_type comp) |
| 设置源的压缩格式。 更多...
|
|
csv_reader_options_builder & | byte_range_offset (std::size_t offset) |
| 设置从源开始跳过的字节数。 更多...
|
|
csv_reader_options_builder & | byte_range_size (std::size_t size) |
| 设置要读取的字节数。 更多...
|
|
csv_reader_options_builder & | names (std::vector< std::string > col_names) |
| 设置列的名称。 更多...
|
|
csv_reader_options_builder & | prefix (std::string pfx) |
| 设置用于列 ID 的前缀。 更多...
|
|
csv_reader_options_builder & | mangle_dupe_cols (bool val) |
| 设置是否重命名重复的列名。 更多...
|
|
csv_reader_options_builder & | use_cols_names (std::vector< std::string > col_names) |
| 设置要读取的列的名称。 更多...
|
|
csv_reader_options_builder & | use_cols_indexes (std::vector< int > col_indices) |
| 设置要读取的列的索引。 更多...
|
|
csv_reader_options_builder & | nrows (size_type rows) |
| 设置要读取的行数。 更多...
|
|
csv_reader_options_builder & | skiprows (size_type skip) |
| 设置从开始跳过的行数。 更多...
|
|
csv_reader_options_builder & | skipfooter (size_type skip) |
| 设置从末尾跳过的行数。 更多...
|
|
csv_reader_options_builder & | header (size_type hdr) |
| 设置标题行索引。 更多...
|
|
csv_reader_options_builder & | lineterminator (char term) |
| 设置行终止符。 更多...
|
|
csv_reader_options_builder & | delimiter (char delim) |
| 设置字段分隔符。 更多...
|
|
csv_reader_options_builder & | thousands (char val) |
| 设置数字数据的千位分隔符。 更多...
|
|
csv_reader_options_builder & | decimal (char val) |
| 设置小数点字符。 更多...
|
|
csv_reader_options_builder & | comment (char val) |
| 设置注释行起始字符。 更多...
|
|
csv_reader_options_builder & | windowslinetermination (bool val) |
| 设置是否将 \r\n 视为行终止符。 更多...
|
|
csv_reader_options_builder & | delim_whitespace (bool val) |
| 设置是否将空格视作字段分隔符。 更多...
|
|
csv_reader_options_builder & | skipinitialspace (bool val) |
| 设置是否跳过分隔符后的空格。 更多...
|
|
csv_reader_options_builder & | skip_blank_lines (bool val) |
| 设置是否忽略空行或将行值解析为无效值。 更多...
|
|
csv_reader_options_builder & | quoting (quote_style style) |
| 设置引用样式。 更多...
|
|
csv_reader_options_builder & | quotechar (char ch) |
| 设置引用字符。 更多...
|
|
csv_reader_options_builder & | doublequote (bool val) |
| 设置值内的引号是否双重引用。 更多...
|
|
csv_reader_options_builder & | detect_whitespace_around_quotes (bool val) |
| 设置是否检测被空格包围的引号,例如 "data" 。当 _doublequote 为 true 时,此标志无效。 更多...
|
|
csv_reader_options_builder & | parse_dates (std::vector< std::string > col_names) |
| 设置要读取为日期时间类型的列名。 更多...
|
|
csv_reader_options_builder & | parse_dates (std::vector< int > col_indices) |
| 设置要读取为日期时间类型的列索引。 更多...
|
|
csv_reader_options_builder & | parse_hex (std::vector< std::string > col_names) |
| 设置要解析为十六进制的列名。 更多...
|
|
csv_reader_options_builder & | parse_hex (std::vector< int > col_indices) |
| 设置要解析为十六进制的列索引。 更多...
|
|
csv_reader_options_builder & | dtypes (std::map< std::string, data_type > types) |
| 设置每列类型。 更多...
|
|
csv_reader_options_builder & | dtypes (std::vector< data_type > types) |
| 设置每列类型。 更多...
|
|
csv_reader_options_builder & | true_values (std::vector< std::string > vals) |
| 设置要识别为布尔值 true 的附加值。 更多...
|
|
csv_reader_options_builder & | false_values (std::vector< std::string > vals) |
| 设置要识别为布尔值 false 的附加值。 更多...
|
|
csv_reader_options_builder & | na_values (std::vector< std::string > vals) |
| 设置要识别为空值的附加值。 更多...
|
|
csv_reader_options_builder & | keep_default_na (bool val) |
| 设置是否保留内置的默认 NA 值。 更多...
|
|
csv_reader_options_builder & | na_filter (bool val) |
| 设置是否禁用空值过滤。 更多...
|
|
csv_reader_options_builder & | dayfirst (bool val) |
| 设置是否将日期解析为 DD/MM 格式,而不是 MM/DD 格式。 更多...
|
|
csv_reader_options_builder & | timestamp_type (data_type type) |
| 设置所有时间戳列将被转换为的时间戳类型。 更多...
|
|
| operator csv_reader_options && () |
| csv_reader_options 成员一旦构建完毕,将其移动。
|
|
csv_reader_options && | build () |
| csv_reader_options 成员一旦构建完毕,将其移动。 更多...
|
|