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/v1.4.0.rst
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -444,15 +444,15 @@ Deprecated Frame.append and Series.append
444
444
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
445
445
446
446
:meth:`DataFrame.append` and :meth:`Series.append` have been deprecated and will be removed in Pandas 2.0.
447
-
Use :func:`pandas.core.reshape.concat` instead (:issue:`35407`).
447
+
Use :func:`pandas.concat` instead (:issue:`35407`).
448
448
449
449
*Deprecated syntax*
450
450
451
451
.. code-block:: ipython
452
452
453
453
In [1]: pd.Series([1, 2]).append(pd.Series([3, 4])
454
454
Out [1]:
455
-
<stdin>:1: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.core.reshape.concat instead.
455
+
<stdin>:1: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
0 commit comments