|
CodificationTranslate Method (String, Int32)
|
Note: This API is now obsolete.
Translates an integer (codeword) representation of
the value of a given variable into its original
value.
Namespace:
Accord.Statistics.Filters
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax[ObsoleteAttribute("Please use Revert(columnName, codewords) instead.")]
public string[] Translate(
string columnName,
int[] codewords
)
<ObsoleteAttribute("Please use Revert(columnName, codewords) instead.")>
Public Function Translate (
columnName As String,
codewords As Integer()
) As String()
Request Example
View SourceParameters
- columnName
- Type: SystemString
The name of the variable's data column. - codewords
- Type: SystemInt32
The codewords to be translated.
Return Value
Type:
StringThe original meaning of the given codeword.
See Also