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
Author: Tom Augspurger <[email protected]>
Closes#13045 from TomAugspurger/TomAugspurger-tutorial and squashes the following commits:
23d3835 [Tom Augspurger] DOC: Add tutorial link
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.18.1.txt
+9-8
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ Highlights include:
14
14
- Custom business hour offset, see :ref:`here <whatsnew_0181.enhancements.custombusinesshour>`.
15
15
- Many bug fixes in the handling of ``sparse``, see :ref:`here <whatsnew_0181.sparse>`
16
16
- Method chaining improvements, see :ref:`here <whatsnew_0181.enhancements.method_chain>`.
17
+
- Expanded the Tutorials :ref:`documentation <tutorial-modern>` with another `series`_ , courtesy of @TomAugsburger. (:issue:`13045`).
17
18
18
19
19
20
.. contents:: What's new in v0.18.1
@@ -217,28 +218,28 @@ Other Enhancements
217
218
- ``.to_json()`` now supports ``NDFrames`` that contain categorical and sparse data (:issue:`10778`)
218
219
- ``interpolate()`` now supports ``method='akima'`` (:issue:`7588`).
219
220
- ``pd.read_excel()`` now accepts path objects (e.g. ``pathlib.Path``, ``py.path.local``) for the file path, in line with other ``read_*`` functions (:issue:`12655`)
220
-
- ``Index.take`` now handles ``allow_fill`` and ``fill_value`` consistently (:issue:`12631`)
221
221
- Added ``.weekday_name`` property as a component to ``DatetimeIndex`` and the ``.dt`` accessor. (:issue:`11128`)
222
222
223
223
- ``Index.take`` now handles ``allow_fill`` and ``fill_value`` consistently (:issue:`12631`)
- ``Index`` now supports ``.str.get_dummies()`` which returns ``MultiIndex``, see :ref:`Creating Indicator Variables <text.indicator>` (:issue:`10008`, :issue:`10103`)
232
232
233
-
.. ipython:: python
233
+
.. ipython:: python
234
234
235
-
idx = pd.Index(['a|b', 'a|c', 'b|c'])
236
-
idx.str.get_dummies('|')
235
+
idx = pd.Index(['a|b', 'a|c', 'b|c'])
236
+
idx.str.get_dummies('|')
237
237
238
238
239
239
- ``pd.crosstab()`` has gained a ``normalize`` argument for normalizing frequency tables (:issue:`12569`). Examples in the updated docs :ref:`here <reshaping.crosstabulations>`.
240
240
- ``.resample(..).interpolate()`` is now supported (:issue:`12925`)
0 commit comments