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 classNumberColumn<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 classDoubleColumnA column that contains double valuesclassFloatColumnA column that contains float valuesclassIntColumnA column that contains int valuesclassLongColumnA column that contains long valuesclassShortColumnA 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
-