dataFrame.column.decode — uri()
Description
The uri() method of the decode object returns the values of the selected column decoded from URI encoding.
Signature
dataFrame.column(columnName).decode.uri()Argument
columnName(string)- The name of the column from which to decode values.
Returns
mask(array)- An array containing the decoded values.
Example
// get decoded values from one column of the dataFrame
var mask = dataFrame.column('values').decode.uri();
// add decoded values to the dataFrame
dataFrame.column('values').set(mask);