|
CodificationTranslate Method (String, String)
|
Note: This API is now obsolete.
Translates a value of the given variables
into their integer (codeword) representation.
Namespace:
Accord.Statistics.Filters
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax[ObsoleteAttribute("Please use Transform(columnName, values) instead.")]
public int[][] Translate(
string columnName,
string[][] values
)
<ObsoleteAttribute("Please use Transform(columnName, values) instead.")>
Public Function Translate (
columnName As String,
values As String()()
) As Integer()()
Request Example
View SourceParameters
- columnName
- Type: SystemString
The variable name. - values
- Type: SystemString
The values to be translated.
Return Value
Type:
Int32An array of integers in which each integer
uniquely identifies the given value for the given
variables.
See Also