@@ -35,10 +35,10 @@ CSV & Text files
35
35
The two workhorse functions for reading text files (a.k.a. flat files) are
36
36
:func: `~pandas.io.parsers.read_csv ` and :func: `~pandas.io.parsers.read_table `.
37
37
They both use the same parsing code to intelligently convert tabular
38
- data into a DataFrame object. They can take a number of arguments:
38
+ data into a DataFrame object. See the :ref: `cookbook<cookbook.csv> `
39
+ for some advanced strategies
39
40
40
- See some :ref: `cookbook examples <cookbook.csv >` for some advanced strategies
41
- See some :ref: `cookbook examples <cookbook.csv >` for some advanced strategies
41
+ They can take a number of arguments:
42
42
43
43
- ``filepath_or_buffer ``: Either a string path to a file, or any object with a
44
44
``read `` method (such as an open file or ``StringIO ``).
@@ -917,9 +917,10 @@ Excel files
917
917
918
918
The ``ExcelFile `` class can read an Excel 2003 file using the ``xlrd `` Python
919
919
module and use the same parsing code as the above to convert tabular data into
920
- a DataFrame. To use it, create the ``ExcelFile `` object:
920
+ a DataFrame. See the :ref: `cookbook<cookbook.excel> ` for some
921
+ advanced strategies
921
922
922
- See some :ref: ` cookbook examples < cookbook.excel >` for some advanced strategies
923
+ To use it, create the `` ExcelFile `` object:
923
924
924
925
.. code-block :: python
925
926
@@ -985,9 +986,8 @@ HDF5 (PyTables)
985
986
986
987
``HDFStore `` is a dict-like object which reads and writes pandas using
987
988
the high performance HDF5 format using the excellent `PyTables
988
- <http://www.pytables.org/> `__ library.
989
-
990
- See some :ref: `cookbook examples <cookbook.hdf >` for some advanced strategies
989
+ <http://www.pytables.org/> `__ library. See the :ref: `cookbook<cookbook.hdf> `
990
+ for some advanced strategies
991
991
992
992
.. ipython :: python
993
993
:suppress:
@@ -1696,9 +1696,8 @@ SQL Queries
1696
1696
The :mod: `pandas.io.sql ` module provides a collection of query wrappers to both
1697
1697
facilitate data retrieval and to reduce dependency on DB-specific API. There
1698
1698
wrappers only support the Python database adapters which respect the `Python
1699
- DB-API <http://www.python.org/dev/peps/pep-0249/> `_.
1700
-
1701
- See some :ref: `cookbook examples <cookbook.sql >` for some advanced strategies
1699
+ DB-API <http://www.python.org/dev/peps/pep-0249/> `_. See some
1700
+ :ref: `cookbook examples <cookbook.sql >` for some advanced strategies
1702
1701
1703
1702
Suppose you want to query some data with different types from a table such as:
1704
1703
0 commit comments