use of tech.tablesaw.api.DoubleColumn in project symja_android_library by axkr.
the class NumberMapFunctions method cube.
default DoubleColumn cube() {
DoubleColumn newColumn = power(3);
newColumn.setName(name() + "[cb]");
return newColumn;
}
use of tech.tablesaw.api.DoubleColumn in project symja_android_library by axkr.
the class NumberMapFunctions method square.
/**
* Returns a NumberColumn with the square of each value in this column
*/
default DoubleColumn square() {
DoubleColumn newColumn = power(2);
newColumn.setName(name() + "[sq]");
return newColumn;
}
Aggregations