|
CodificationTTransform Method (DataRow, String, String)
|
Translates an array of values into their
integer representation, assuming values
are given in original order of columns.
Namespace:
Accord.Statistics.Filters
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public int[] Transform(
DataRow row,
string[] columnNames,
out string[] newColumnNames
)
Public Function Transform (
row As DataRow,
columnNames As String(),
<OutAttribute> ByRef newColumnNames As String()
) As Integer()
Request Example
View SourceParameters
- row
- Type: System.DataDataRow
A DataRow containing the values to be translated. - columnNames
- Type: SystemString
The columns of the row containing the
values to be translated. - newColumnNames
- Type: SystemString
The updated column names after the data has been translated.
Return Value
Type:
Int32An array of integers in which each value
uniquely identifies the given value for each of
the variables.
See Also