File tree 2 files changed +3
-13
lines changed
2 files changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -334,6 +334,9 @@ The :ref:`CSV <io.read_csv_table>` docs
334
334
`Reading a csv chunk-by-chunk
335
335
<http://stackoverflow.com/questions/11622652/large-persistent-dataframe-in-pandas/12193309#12193309> `__
336
336
337
+ `Reading only certain rows of a csv chunk-by-chunk
338
+ <http://stackoverflow.com/questions/19674212/pandas-data-frame-select-rows-and-clear-memory> ``__
339
+
337
340
`Reading the first few lines of a frame
338
341
<http://stackoverflow.com/questions/15008970/way-to-read-first-few-lines-for-pandas-dataframe> `__
339
342
Original file line number Diff line number Diff line change @@ -2574,19 +2574,6 @@ a datetimeindex which are 5.
2574
2574
where = c[DatetimeIndex(c).month== 5 ].index
2575
2575
store.select(' df_mask' ,where = where)
2576
2576
2577
- **Replicating or **
2578
-
2579
- ``not `` and ``or `` conditions are unsupported at this time; however,
2580
- ``or `` operations are easy to replicate, by repeatedly applying the
2581
- criteria to the table, and then ``concat `` the results.
2582
-
2583
- .. ipython :: python
2584
-
2585
- crit1 = [ Term(' B>0' ), Term(' C>0' ), Term(' string=foo' ) ]
2586
- crit2 = [ Term(' B<0' ), Term(' C>0' ), Term(' string=foo' ) ]
2587
-
2588
- concat([store.select(' df_dc' ,c) for c in [crit1, crit2]])
2589
-
2590
2577
**Storer Object **
2591
2578
2592
2579
If you want to inspect the stored object, retrieve via
You can’t perform that action at this time.
0 commit comments