@@ -103,15 +103,19 @@ Other new features
103
103
104
104
- New ``cut`` function (like R's cut function) for computing a categorical
105
105
variable from a continuous variable by binning values
106
- - Add limit argument to fillna/reindex
106
+ - Add :ref:` limit <missing_data.fillna.limit>` argument to fillna/reindex
107
107
- More flexible multiple function application in GroupBy, and can pass list
108
108
(name, function) tuples to get result in particular order with given names
109
109
- Add flexible ``replace`` method for efficiently substituting values
110
- - Enhanced read_csv/read_table for reading time series data and converting
111
- multiple columns to dates
112
- - Add comments option to parser functions: read_csv, etc.
110
+ - Enhanced :ref:` read_csv/read_table <io.parse_dates>` for reading time series
111
+ data and converting multiple columns to dates
112
+ - Add :ref:` comments <io.comments>` option to parser functions: read_csv, etc.
113
113
- Add ``dayfirst`` option to parser functions for parsing international
114
114
DD/MM/YYYY dates
115
+ - Allow the user to specify the CSV reader :ref:`dialect <io.dialect>` to
116
+ control quoting etc.
117
+ - Handling :ref:`thousands <io.thousands>` separators in read_csv to improve
118
+ integer parsing.
115
119
- Enable unstacking of multiple levels in one shot. Alleviate ``pivot_table``
116
120
bugs (empty columns being introduced)
117
121
- Move to klib-based hash tables for indexing; better performance and less
@@ -120,12 +124,12 @@ Other new features
120
124
- New ordered_merge function
121
125
- Add flexible comparison instance methods eq, ne, lt, gt, etc. to DataFrame,
122
126
Series
123
- - Improve scatter_matrix plotting function and add histogram or kernel density
124
- estimates to diagonal
125
- - Add `` 'kde'` ` plot option for density plots
127
+ - Improve :ref:` scatter_matrix <visualization.scatter_matrix>` plotting
128
+ function and add histogram or kernel density estimates to diagonal
129
+ - Add :ref:` 'kde' <visualization.kde> ` plot option for density plots
126
130
- Support for converting DataFrame to R data.frame through rpy2
127
131
- Improved support for complex numbers in Series and DataFrame
128
- - Add `` pct_change` ` method to all data structures
132
+ - Add :ref:` pct_change <computation.pct_change> ` method to all data structures
129
133
- Add max_colwidth configuration option for DataFrame console output
130
134
- Interpolate Series values using index values
131
135
- Can select multiple columns from GroupBy
0 commit comments