You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/v0.14.0.txt
+9-9
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ API changes
18
18
19
19
- ``read_excel`` uses 0 as the default sheet (:issue:`6573`)
20
20
- ``iloc`` will now accept out-of-bounds indexers for slices, e.g. a value that exceeds the length of the object being
21
-
indexed. These will be excluded. This will make pandas conform more with pandas/numpy indexing of out-of-bounds
21
+
indexed. These will be excluded. This will make pandas conform more with python/numpy indexing of out-of-bounds
22
22
values. A single indexer / list of indexers that is out-of-bounds will still raise
23
23
``IndexError`` (:issue:`6296`, :issue:`6299`). This could result in an empty axis (e.g. an empty DataFrame being returned)
24
24
@@ -108,10 +108,10 @@ API changes
108
108
it with the ``'@'`` prefix.
109
109
- You can have an expression like ``df.query('@a < a')`` with no complaints
110
110
from ``pandas`` about ambiguity of the name ``a``.
111
+
- The top-level :func:`pandas.eval` function does not allow you use the
112
+
``'@'`` prefix and provides you with an error message telling you so.
113
+
- ``NameResolutionError`` was removed because it isn't necessary anymore.
111
114
112
-
- The top-level :func:`pandas.eval` function does not allow you use the
113
-
``'@'`` prefix and provides you with an error message telling you so.
114
-
- ``NameResolutionError`` was removed because it isn't necessary anymore.
115
115
- ``concat`` will now concatenate mixed Series and DataFrames using the Series name
116
116
or numbering columns as needed (:issue:`2385`). See :ref:`the docs <merging.mixed_ndims>`
117
117
- Slicing and advanced/boolean indexing operations on ``Index`` classes will no
@@ -181,7 +181,7 @@ API changes
181
181
182
182
- `position`: Specify relative alignments for bar plot layout. From 0 (left/bottom-end) to 1(right/top-end). Default is 0.5 (center). (:issue:`6604`)
183
183
184
-
Because of the default `align` value changes, coordinates of bar plots are now located on integer values (0.0, 1.0, 2.0 ...). This is intended to make bar plot be located on the same coodinates as line plot. However, bar plot may differs unexpectedly when you manually adjust the bar location or drawing area, such as using `set_xlim`, `set_ylim`, etc. In this cases, please modify your script to meet with new coordinates.
184
+
Because of the default `align` value changes, coordinates of bar plots are now located on integer values (0.0, 1.0, 2.0 ...). This is intended to make bar plot be located on the same coodinates as line plot. However, bar plot may differs unexpectedly when you manually adjust the bar location or drawing area, such as using `set_xlim`, `set_ylim`, etc. In this cases, please modify your script to meet with new coordinates.
185
185
186
186
- ``pairwise`` keyword was added to the statistical moment functions
0 commit comments