@@ -310,11 +310,11 @@ class DataFrame(NDFrame):
310
310
data : ndarray (structured or homogeneous), Iterable, dict, or DataFrame
311
311
Dict can contain Series, arrays, constants, or list-like objects
312
312
313
- .. versionchanged :: 0.23.0
313
+ .. versionchanged:: 0.23.0
314
314
If data is a dict, column order follows insertion-order for
315
315
Python 3.6 and later.
316
316
317
- .. versionchanged :: 0.25.0
317
+ .. versionchanged:: 0.25.0
318
318
If data is a list of dicts, column order follows insertion-order
319
319
Python 3.6 and later.
320
320
@@ -3559,7 +3559,7 @@ def assign(self, **kwargs):
3559
3559
or modified columns. All items are computed first, and then assigned
3560
3560
in alphabetical order.
3561
3561
3562
- .. versionchanged :: 0.23.0
3562
+ .. versionchanged:: 0.23.0
3563
3563
3564
3564
Keyword argument order is maintained for Python 3.6 and later.
3565
3565
@@ -5627,7 +5627,7 @@ def update(
5627
5627
If 'raise', will raise a ValueError if the DataFrame and `other`
5628
5628
both contain non-NA data in the same place.
5629
5629
5630
- .. versionchanged :: 0.24.0
5630
+ .. versionchanged:: 0.24.0
5631
5631
Changed from `raise_conflict=False|True`
5632
5632
to `errors='ignore'|'raise'`.
5633
5633
@@ -5773,7 +5773,7 @@ def update(
5773
5773
specified, all remaining columns will be used and the result will
5774
5774
have hierarchically indexed columns.
5775
5775
5776
- .. versionchanged :: 0.23.0
5776
+ .. versionchanged:: 0.23.0
5777
5777
Also accept list of column names.
5778
5778
5779
5779
Returns
@@ -5902,7 +5902,7 @@ def pivot(self, index=None, columns=None, values=None):
5902
5902
If True: only show observed values for categorical groupers.
5903
5903
If False: show all values for categorical groupers.
5904
5904
5905
- .. versionchanged :: 0.25.0
5905
+ .. versionchanged:: 0.25.0
5906
5906
5907
5907
Returns
5908
5908
-------
0 commit comments