|
63 | 63 | file. For file URLs, a host is expected. For instance, a local file could
|
64 | 64 | be file ://localhost/path/to/table.csv
|
65 | 65 | %s
|
66 |
| -delimiter : str, default ``None`` |
67 |
| - Alternative argument name for sep. |
68 | 66 | delim_whitespace : boolean, default False
|
69 | 67 | Specifies whether or not whitespace (e.g. ``' '`` or ``'\t'``) will be
|
70 | 68 | used as the sep. Equivalent to setting ``sep='\s+'``. If this option
|
|
316 | 314 | be used automatically. In addition, separators longer than 1 character and
|
317 | 315 | different from ``'\s+'`` will be interpreted as regular expressions and
|
318 | 316 | will also force the use of the Python parsing engine. Note that regex
|
319 |
| - delimiters are prone to ignoring quoted data. Regex example: ``'\r\t'``""" |
| 317 | + delimiters are prone to ignoring quoted data. Regex example: ``'\r\t'`` |
| 318 | +delimiter : str, default ``None`` |
| 319 | + Alternative argument name for sep.""" |
320 | 320 |
|
321 | 321 | _read_csv_doc = """
|
322 | 322 | Read CSV (comma-separated) file into DataFrame
|
|
341 | 341 | widths : list of ints. optional
|
342 | 342 | A list of field widths which can be used instead of 'colspecs' if
|
343 | 343 | the intervals are contiguous.
|
| 344 | +delimiter: str, default ``\t `` |
| 345 | + Characters to consider as filler characters in the fixed-width file. |
| 346 | + Can be used to specify the filler character of the fields |
| 347 | + if it is not spaces (e.g., '~'). |
344 | 348 | """
|
345 | 349 |
|
346 | 350 | _read_fwf_doc = """
|
347 | 351 | Read a table of fixed-width formatted lines into DataFrame
|
348 | 352 |
|
349 | 353 | %s
|
350 |
| -
|
351 |
| -Also, 'delimiter' is used to specify the filler character of the |
352 |
| -fields if it is not spaces (e.g., '~'). |
353 | 354 | """ % (_parser_params % (_fwf_widths, ''))
|
354 | 355 |
|
355 | 356 |
|
|
0 commit comments