File tree 3 files changed +4
-0
lines changed
3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -9907,6 +9907,7 @@ def applymap(
9907
9907
See Also
9908
9908
--------
9909
9909
DataFrame.apply : Apply a function along input axis of DataFrame.
9910
+ DataFrame.replace: Replace values given in `to_replace` with `value`.
9910
9911
9911
9912
Examples
9912
9913
--------
Original file line number Diff line number Diff line change @@ -4246,6 +4246,7 @@ def map(
4246
4246
See Also
4247
4247
--------
4248
4248
Series.apply : For applying more complex functions on a Series.
4249
+ Series.replace: Replace values given in `to_replace` with `value`.
4249
4250
DataFrame.apply : Apply a function row-/column-wise.
4250
4251
DataFrame.applymap : Apply a function elementwise on a whole DataFrame.
4251
4252
Original file line number Diff line number Diff line change 599
599
--------
600
600
{klass}.fillna : Fill NA values.
601
601
{klass}.where : Replace values based on boolean condition.
602
+ DataFrame.applymap: Apply a function to a Dataframe elementwise.
603
+ Series.map: Map values of Series according to an input mapping or function.
602
604
Series.str.replace : Simple string replacement.
603
605
604
606
Notes
You can’t perform that action at this time.
0 commit comments