diff --git a/doc/source/tutorials.rst b/doc/source/tutorials.rst index c39227e67ffe8..be25d7b238a74 100644 --- a/doc/source/tutorials.rst +++ b/doc/source/tutorials.rst @@ -33,7 +33,7 @@ repository `_. Learn Pandas by Hernan Rojas ---------------------------- -A set of lesson for new pandas users: `https://bitbucket.org/hrojas/learn-pandas>`__. +A set of lesson for new pandas users: `Learn pandas `__. Practical data analysis with Python ----------------------------------- diff --git a/doc/source/whatsnew/v0.24.0.rst b/doc/source/whatsnew/v0.24.0.rst index 018820b09dba4..ad778ed3bd0db 100644 --- a/doc/source/whatsnew/v0.24.0.rst +++ b/doc/source/whatsnew/v0.24.0.rst @@ -1397,7 +1397,7 @@ Numeric - Checking PEP 3141 numbers in :func:`~pandas.api.types.is_scalar` function returns ``True`` (:issue:`22903`) - Reduction methods like :meth:`Series.sum` now accept the default value of ``keepdims=False`` when called from a NumPy ufunc, rather than raising a ``TypeError``. Full support for ``keepdims`` has not been implemented (:issue:`24356`). - Conversion +Conversion ^^^^^^^^^^ - Bug in :meth:`DataFrame.combine_first` in which column types were unexpectedly converted to float (:issue:`20699`) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 63d9b5265cdc7..a27573ab75976 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -6108,16 +6108,14 @@ def fillna(self, value=None, method=None, axis=None, inplace=False, def ffill(self, axis=None, inplace=False, limit=None, downcast=None): """ - Synonym for :meth:`DataFrame.fillna(method='ffill') - `. + Synonym for :meth:`DataFrame.fillna` with ``method='ffill'``. """ return self.fillna(method='ffill', axis=axis, inplace=inplace, limit=limit, downcast=downcast) def bfill(self, axis=None, inplace=False, limit=None, downcast=None): """ - Synonym for :meth:`DataFrame.fillna(method='bfill') - `. + Synonym for :meth:`DataFrame.fillna` with ``method='bfill'``. """ return self.fillna(method='bfill', axis=axis, inplace=inplace, limit=limit, downcast=downcast)