dataFrame.column.decode — html()
Description
The html() method of the decode object returns the values of the selected column with HTML entities decoded.
Signature
dataFrame.column(columnName).decode.html()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.html();
// add decoded values to the dataFrame
dataFrame.column('values').set(mask);