@@ -21,6 +21,7 @@ Enhancements
21
21
22
22
- Unblocked access to additional compression types supported in pytables: 'blosc:blosclz, 'blosc:lz4', 'blosc:lz4hc', 'blosc:snappy', 'blosc:zlib', 'blosc:zstd' (:issue:`14478`)
23
23
- ``Series`` provides a ``to_latex`` method (:issue:`16180`)
24
+ - Added :attr:`Index.is_strictly_monotonic_increasing` and :attr:`Index.is_strictly_monotonic_decreasing` properties (:issue:`16515`)
24
25
25
26
.. _whatsnew_0202.performance:
26
27
@@ -40,13 +41,14 @@ Bug Fixes
40
41
- Silenced a warning on some Windows environments about "tput: terminal attributes: No such device or address" when
41
42
detecting the terminal size. This fix only applies to python 3 (:issue:`16496`)
42
43
- Bug in using ``pathlib.Path`` or ``py.path.local`` objects with io functions (:issue:`16291`)
44
+ - Bug in ``Index.symmetric_difference()`` on two equal MultiIndex's, results in a TypeError (:issue `13490`)
43
45
- Bug in ``DataFrame.update()`` with ``overwrite=False`` and ``NaN values`` (:issue:`15593`)
44
- - Bug in ``Series`` with dtype='category' (:issue:`16524`)
45
-
46
-
47
-
46
+ - Passing an invalid engine to :func:`read_csv` now raises an informative
47
+ ``ValueError`` rather than ``UnboundLocalError``. (:issue:`16511`)
48
+ - Bug in :func:`unique` on an array of tuples (:issue:`16519`)
49
+ - Bug in :func:`cut`` when ``labels`` are set, resulting in incorrect label ordering (:issue:`16459`)
48
50
- Fixed a compatibility issue with IPython 6.0's tab completion showing deprecation warnings on Categoricals (:issue:`16409`)
49
-
51
+ - Bug in ``Series`` with dtype='category' (:issue:`16524`)
50
52
51
53
Conversion
52
54
^^^^^^^^^^
@@ -59,15 +61,18 @@ Indexing
59
61
^^^^^^^^
60
62
61
63
- Bug in ``DataFrame.reset_index(level=)`` with single level index (:issue:`16263`)
62
-
64
+ - Bug in partial string indexing with a monotonic, but not strictly-monotonic, index incorrectly reversing the slice bounds (:issue:`16515`)
63
65
64
66
I/O
65
67
^^^
66
68
67
69
- Bug in pd.read_csv() when comment is passed in space deliminted text files (:issue:`16472`)
68
70
- Bug that would force importing of the clipboard routines unnecessarily, potentially causing an import error on startup (:issue:`16288`)
69
71
- Bug that raised IndexError HTML-rendering an empty DataFrame (:issue:`15953`)
72
+ - Bug in ``pd.read_csv()`` in which tarfile object inputs were raising an error in Python 2.x for the C engine (:issue:`16530`)
73
+ - Bug where ``DataFrame.to_html()`` ignored the ``index_names`` parameter (:issue:`16493`)
70
74
75
+ - Bug in ``HDFStore.select_as_multiple()`` where start/stop arguments were not respected (:issue:`16209`)
71
76
72
77
Plotting
73
78
^^^^^^^^
@@ -84,6 +89,7 @@ Groupby/Resample/Rolling
84
89
85
90
- Bug creating datetime rolling window on an empty DataFrame (:issue:`15819`)
86
91
- Bug in ``rolling.cov()`` with offset window (:issue:`16058`)
92
+ - Bug in ``.resample()`` and ``.groupby()`` when aggregating on integers (:issue:`16361`)
87
93
88
94
89
95
Sparse
@@ -98,6 +104,7 @@ Reshaping
98
104
- Bug in ``pd.wide_to_long()`` where no error was raised when ``i`` was not a unique identifier (:issue:`16382`)
99
105
- Bug in ``Series.isin(..)`` with a list of tuples (:issue:`16394`)
100
106
- Bug in construction of a ``DataFrame`` with mixed dtypes including an all-NaT column. (:issue:`16395`)
107
+ - Bug in ``DataFrame.agg()`` and ``Series.agg()`` with aggregating on non-callable attributes (:issue:`16405`)
101
108
102
109
103
110
Numeric
0 commit comments