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
@@ -326,15 +326,15 @@ These provide date offsets anchored (by default) to the 15th and end of month, a
326
326
327
327
from pandas.tseries.offsets import SemiMonthEnd, SemiMonthBegin
328
328
329
-
SemiMonthEnd:
329
+
**SemiMonthEnd**:
330
330
331
331
.. ipython:: python
332
332
333
333
Timestamp('2016-01-01') + SemiMonthEnd()
334
334
335
335
pd.date_range('2015-01-01', freq='SM', periods=4)
336
336
337
-
SemiMonthBegin:
337
+
**SemiMonthBegin**:
338
338
339
339
.. ipython:: python
340
340
@@ -441,11 +441,11 @@ Downcast values to smallest possible dtype in ``to_numeric``
441
441
442
442
``pd.to_numeric()`` now accepts a ``downcast`` parameter, which will downcast the data if possible to smallest specified numerical dtype (:issue:`13352`)
443
443
444
-
.. ipython:: python
444
+
.. ipython:: python
445
445
446
-
s = ['1', 2, 3]
447
-
pd.to_numeric(s, downcast='unsigned')
448
-
pd.to_numeric(s, downcast='integer')
446
+
s = ['1', 2, 3]
447
+
pd.to_numeric(s, downcast='unsigned')
448
+
pd.to_numeric(s, downcast='integer')
449
449
450
450
451
451
.. _whatsnew_0190.enhancements.other:
@@ -583,7 +583,7 @@ Comparison operators
583
583
584
584
Comparison operators raise ``ValueError`` when ``.index`` are different.
585
585
586
-
Previous Behavior (``Series``):
586
+
**Previous Behavior** (``Series``):
587
587
588
588
``Series`` compared values ignoring the ``.index`` as long as both had the same length:
0 commit comments