Uses of Class
tech.tablesaw.api.NumberColumn
-
Packages that use NumberColumn Package Description tech.tablesaw.api -
-
Uses of NumberColumn in tech.tablesaw.api
Classes in tech.tablesaw.api with type parameters of type NumberColumn Modifier and Type Class Description class
NumberColumn<C extends NumberColumn<C,T>,T extends Number>
An abstract class that provides a partial implementation for columns of numeric dataSubclasses of NumberColumn in tech.tablesaw.api Modifier and Type Class Description class
DoubleColumn
A column that contains double valuesclass
FloatColumn
A column that contains float valuesclass
IntColumn
A column that contains int valuesclass
LongColumn
A column that contains long valuesclass
ShortColumn
A column that contains short valuesMethods in tech.tablesaw.api that return NumberColumn Modifier and Type Method Description NumberColumn<C,T>
NumberColumn. set(DoublePredicate condition, T newValue)
Sets the value of all elements in this column matching condition to be equal to newValue and returns this columnNumberColumn<C,T>
NumberColumn. set(DoublePredicate condition, NumberColumn<C,T> other)
Updates this column where values matching the selection are replaced with the corresponding value from the given columnMethods in tech.tablesaw.api with parameters of type NumberColumn Modifier and Type Method Description NumberColumn<C,T>
NumberColumn. set(DoublePredicate condition, NumberColumn<C,T> other)
Updates this column where values matching the selection are replaced with the corresponding value from the given column
-