File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 17
17
# add these directories to sys.path here. If the directory is relative to the
18
18
# documentation root, use os.path.abspath to make it absolute, like shown here.
19
19
# sys.path.append(os.path.abspath('.'))
20
-
21
20
sys .path .insert (0 , os .path .abspath ('../sphinxext' ))
22
21
23
22
sys .path .extend ([
Original file line number Diff line number Diff line change @@ -127,6 +127,12 @@ Splitting
127
127
`Splitting a frame
128
128
<http://stackoverflow.com/questions/13353233/best-way-to-split-a-dataframe-given-an-edge/15449992#15449992> `__
129
129
130
+ Pivot
131
+ ~~~~~
132
+
133
+ `Partial sums and subtotals
134
+ <http://stackoverflow.com/questions/15570099/pandas-pivot-tables-row-subtotals/15574875#15574875> `__
135
+
130
136
Timeseries
131
137
----------
132
138
203
209
204
210
The :ref: `CSV <io.read_csv_table >` docs
205
211
212
+ `read_csv in action
213
+ <http://wesmckinney.com/blog/?p=635> `__
214
+
206
215
`Reading a csv chunk-by-chunk
207
216
<http://stackoverflow.com/questions/11622652/large-persistent-dataframe-in-pandas/12193309#12193309> `__
208
217
@@ -212,6 +221,9 @@ The :ref:`CSV <io.read_csv_table>` docs
212
221
`Inferring dtypes from a file
213
222
<http://stackoverflow.com/questions/15555005/get-inferred-dataframe-types-iteratively-using-chunksize> `__
214
223
224
+ `Dealing with bad lines
225
+ <https://github.com/pydata/pandas/issues/2886> `__
226
+
215
227
.. _cookbook.sql :
216
228
217
229
SQL
@@ -222,6 +234,16 @@ The :ref:`SQL <io.sql>` docs
222
234
`Reading from databases with SQL
223
235
<http://stackoverflow.com/questions/10065051/python-pandas-and-databases-like-mysql> `__
224
236
237
+ .. _cookbook.excel :
238
+
239
+ Excel
240
+ ~~~~~
241
+
242
+ The :ref: `Excel <io.excel >` docs
243
+
244
+ `Reading from a filelike handle
245
+ <http://stackoverflow.com/questions/15588713/sheets-of-excel-workbook-from-a-url-into-a-pandas-dataframe> `__
246
+
225
247
.. _cookbook.hdf :
226
248
227
249
HDFStore
Original file line number Diff line number Diff line change @@ -919,6 +919,8 @@ 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
920
a DataFrame. To use it, create the ``ExcelFile `` object:
921
921
922
+ See some :ref: `cookbook examples <cookbook.excel >` for some advanced strategies
923
+
922
924
.. code-block :: python
923
925
924
926
xls = ExcelFile(' path_to_file.xls' )
You can’t perform that action at this time.
0 commit comments