DataFrameColumn.Clone 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.
Overloads
Clone(Int64) |
Clone column to produce a copy |
Clone(DataFrameColumn, Boolean, Int64) |
Clone column to produce a copy potentially changing the order of values by supplying mapIndices and an invert flag |
Clone(Int64)
- Source:
- DataFrameColumn.cs
- Source:
- DataFrameColumn.cs
- Source:
- DataFrameColumn.cs
Clone column to produce a copy
public Microsoft.Data.Analysis.DataFrameColumn Clone(long numberOfNullsToAppend = 0);
member this.Clone : int64 -> Microsoft.Data.Analysis.DataFrameColumn
Public Function Clone (Optional numberOfNullsToAppend As Long = 0) As DataFrameColumn
Parameters
- numberOfNullsToAppend
- Int64
Returns
A new DataFrameColumn
Applies to
Clone(DataFrameColumn, Boolean, Int64)
- Source:
- DataFrameColumn.cs
- Source:
- DataFrameColumn.cs
- Source:
- DataFrameColumn.cs
Clone column to produce a copy potentially changing the order of values by supplying mapIndices and an invert flag
public Microsoft.Data.Analysis.DataFrameColumn Clone(Microsoft.Data.Analysis.DataFrameColumn mapIndices, bool invertMapIndices = false, long numberOfNullsToAppend = 0);
public virtual Microsoft.Data.Analysis.DataFrameColumn Clone(Microsoft.Data.Analysis.DataFrameColumn mapIndices = default, bool invertMapIndices = false, long numberOfNullsToAppend = 0);
member this.Clone : Microsoft.Data.Analysis.DataFrameColumn * bool * int64 -> Microsoft.Data.Analysis.DataFrameColumn
abstract member Clone : Microsoft.Data.Analysis.DataFrameColumn * bool * int64 -> Microsoft.Data.Analysis.DataFrameColumn
override this.Clone : Microsoft.Data.Analysis.DataFrameColumn * bool * int64 -> Microsoft.Data.Analysis.DataFrameColumn
Public Function Clone (mapIndices As DataFrameColumn, Optional invertMapIndices As Boolean = false, Optional numberOfNullsToAppend As Long = 0) As DataFrameColumn
Public Overridable Function Clone (Optional mapIndices As DataFrameColumn = Nothing, Optional invertMapIndices As Boolean = false, Optional numberOfNullsToAppend As Long = 0) As DataFrameColumn
Parameters
- mapIndices
- DataFrameColumn
- invertMapIndices
- Boolean
- numberOfNullsToAppend
- Int64
Returns
A new DataFrameColumn