Skip to content

Commit a463a53

Browse files
committed
docs
1 parent 25e74fb commit a463a53

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pandas/io/formats/style.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,10 @@ def apply(
893893
``func`` should take a Series or DataFrame (depending
894894
on ``axis``), and return an object with the same shape.
895895
Must return a DataFrame with identical index and
896-
column labels or an ndarray of appropriate shape when ``axis=None``.
896+
column labels or an ndarray with same shape as input when ``axis=None``.
897+
898+
.. versionchanged:: 1.3.0
899+
897900
axis : {0 or 'index', 1 or 'columns', None}, default 0
898901
Apply to each column (``axis=0`` or ``'index'``), to each row
899902
(``axis=1`` or ``'columns'``), or to the entire DataFrame at once

0 commit comments

Comments
 (0)