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/whatsnew/v0.18.0.txt
+21-13
Original file line number
Diff line number
Diff line change
@@ -107,7 +107,7 @@ Other enhancements
107
107
- ``read_excel`` now supports s3 urls of the format ``s3://bucketname/filename`` (:issue:`11447`)
108
108
- A simple version of ``Panel.round()`` is now implemented (:issue:`11763`)
109
109
- For Python 3.x, ``round(DataFrame)``, ``round(Series)``, ``round(Panel)`` will work (:issue:`11763`)
110
-
- ``DataFrame`` has gained a ``_repr_latex_`` method in order to allow for automatic conversion to latex in a ipython/jupyter notebook using nbconvert. Options ``display.latex.escape`` and ``display.latex.longtable`` have been added to the configuration and are used automatically by the ``to_latex`` method.(:issue:`11778`)
110
+
- ``DataFrame`` has gained a ``_repr_latex_`` method in order to allow for automatic conversion to latex in a ipython/jupyter notebook using nbconvert. Options ``display.latex.escape`` and ``display.latex.longtable`` have been added to the configuration and are used automatically by the ``to_latex`` method.(:issue:`11778`)
111
111
- ``sys.getsizeof(obj)`` returns the memory usage of a pandas object, including the
112
112
values it contains (:issue:`11597`)
113
113
@@ -163,12 +163,11 @@ In addition, ``.round()`` will be available thru the ``.dt`` accessor of ``Serie
163
163
164
164
.. _whatsnew_0180.api_breaking:
165
165
166
-
- the leading whitespaces have been removed from the output of ``.to_string(index=False)`` method (:issue:`11833`)
167
-
168
166
Backwards incompatible API changes
169
167
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
170
168
171
-
- The parameter ``out`` has been removed from the ``Series.round()`` method. (:issue:`11763`)
169
+
- the leading whitespaces have been removed from the output of ``.to_string(index=False)`` method (:issue:`11833`)
170
+
- the ``out`` parameter has been removed from the ``Series.round()`` method. (:issue:`11763`)
172
171
- ``DataFrame.round()`` leaves non-numeric columns unchanged in its return, rather than raises. (:issue:`11885`)
173
172
- ``DataFrame.head(0)`` and ``DataFrame.tail(0)`` return empty frames, rather than ``self``. (:issue:`11937`)
174
173
- ``Series.head(0)`` and ``Series.tail(0)`` return empty series, rather than ``self``. (:issue:`11937`)
@@ -197,27 +196,36 @@ are now also defined for ``NaT`` (:issue:`11564`).
197
196
pd.Timedelta('1s') / pd.NaT
198
197
199
198
``NaT`` may represent either a ``datetime64[ns]`` null or a ``timedelta64[ns]`` null.
200
-
Given the ambiguity, it is treated as a `timedelta64[ns]`, which allows more operations
199
+
Given the ambiguity, it is treated as a ``timedelta64[ns]``, which allows more operations
0 commit comments