File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ CSV & Text files
24
24
25
25
The two workhorse functions for reading text files (a.k.a. flat files) are
26
26
:func: `~pandas.io.parsers.read_csv ` and :func: `~pandas.io.parsers.read_table `.
27
- They both utilize the same parsing code for intelligently converting tabular
28
- data into a DataFrame object. They take a number of different arguments:
27
+ They both use the same parsing code to intelligently convert tabular
28
+ data into a DataFrame object. They can take a number of arguments:
29
29
30
- - ``path_or_buffer ``: Either a string path to a file or any object with a
30
+ - ``path_or_buffer ``: Either a string path to a file, or any object with a
31
31
``read `` method (such as an open file or ``StringIO ``).
32
32
- ``delimiter ``: For ``read_table `` only, a regular expression to split
33
33
fields on. ``read_csv `` uses the ``csv `` module to do this and hence only
You can’t perform that action at this time.
0 commit comments