InputOutputColumnPair(String, String) Constructor
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.
Specifies input and output column names for a transformation.
public InputOutputColumnPair (string outputColumnName, string inputColumnName = default);
new Microsoft.ML.InputOutputColumnPair : string * string -> Microsoft.ML.InputOutputColumnPair
Public Sub New (outputColumnName As String, Optional inputColumnName As String = Nothing)
Parameters
- outputColumnName
- String
Name of the column resulting from the transformation of inputColumnName
.
- inputColumnName
- String
Name of the column to transform. If set to null
, the value of the outputColumnName
will be used as source.