File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,9 @@ feedback on the library.
104
104
- Added `DataFrame.align ` method with standard join options
105
105
- Added `parse_dates ` option to `read_csv ` and `read_table ` methods to
106
106
optionally try to parse dates in the index columns
107
+ - Add `nrows `, `chunksize `, and `iterator ` arguments to `read_csv ` and
108
+ `read_table `. The last two return a new `TextParser ` class capable of
109
+ lazily iterating through chunks of a flat file (GH #242)
107
110
- Added ability to join on multiple columns in `DataFrame.join ` (GH #214)
108
111
- Added private `_get_duplicates ` function to `Index ` for identifying
109
112
duplicate values more easily
@@ -114,7 +117,8 @@ feedback on the library.
114
117
- Add inner join option to `DataFrame.join ` when joining on key(s) (GH #248)
115
118
- Can select set of DataFrame columns by passing a list to `__getitem__ ` (GH
116
119
#253)
117
- - Can use & and | to intersection / union Index objects, respectively
120
+ - Can use & and | to intersection / union Index objects, respectively (GH
121
+ #261)
118
122
119
123
**Improvements to existing features **
120
124
You can’t perform that action at this time.
0 commit comments