Skip to content

Commit fa41159

Browse files
topper-123Dr-Irv
andcommitted
Update web/pandas/pdeps/0013-standardize-apply.md
Co-authored-by: Irv Lustig <[email protected]>
1 parent 98dcdb5 commit fa41159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/pandas/pdeps/0013-standardize-apply.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Abstract
1010

11-
Currently, giving a input to `Series.apply` is treated differently depending on the type of the input:
11+
Currently, giving an input to `Series.apply` is treated differently depending on the type of the input:
1212

1313
* if the input is a numpy `ufunc`, `series.apply(func)` is equivalent to `func(series)`, i.e. similar to `series.pipe(func)`.
1414
* if the input is a callable, but not a numpy `ufunc`, `series.apply(func)` is similar to `Series([func(val) for val in series], index=series.index)`, i.e. similar to `series.map(func)`

0 commit comments

Comments
 (0)