StringDataFrameColumn.Apply(Func<String,String>, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Applies a function to all values in the column, that are not null.
public Microsoft.Data.Analysis.StringDataFrameColumn Apply(Func<string,string> func, bool inPlace = false);
member this.Apply : Func<string, string> * bool -> Microsoft.Data.Analysis.StringDataFrameColumn
Public Function Apply (func As Func(Of String, String), Optional inPlace As Boolean = false) As StringDataFrameColumn
Parameters
- inPlace
- Boolean
A boolean flag to indicate if the operation should be in place.
Returns
A new PrimitiveDataFrameColumn<T> if inPlace
is not set. Returns this column otherwise.