Uses of Class
tech.tablesaw.api.DoubleColumn
-
Packages that use DoubleColumn Package Description tech.tablesaw.api tech.tablesaw.columns.numbers tech.tablesaw.columns.strings tech.tablesaw.columns.times tech.tablesaw.index tech.tablesaw.table -
-
Uses of DoubleColumn in tech.tablesaw.api
Methods in tech.tablesaw.api that return DoubleColumn Modifier and Type Method Description DoubleColumnDoubleColumn. append(double d)Adds the given double to this columnDoubleColumnDoubleColumn. append(float f)Adds the given float to this columnDoubleColumnDoubleColumn. append(int i)DoubleColumnDoubleColumn. append(Double val)Appends value to the bottom of this column and return this columnDoubleColumnDoubleColumn. append(Number val)DoubleColumnDoubleColumn. append(Column<Double> column)Appends all the values in the argument to the bottom of this column and return this columnDoubleColumnDoubleColumn. append(Column<Double> column, int row)Appends the value at the given row in the given column to the bottom of this column and return this columnDoubleColumnDoubleColumn. appendCell(String value)Add one element to the bottom of this column and set its value to the parsed value of the given String.DoubleColumnDoubleColumn. appendCell(String value, AbstractColumnParser<?> parser)Add one element to the bottom of this column and set its value to the parsed value of the given String, as performed by the given parserDoubleColumnDoubleColumn. appendMissing()Appends a missing value appropriate to the columnDoubleColumnDoubleColumn. appendObj(Object obj)Appends the given value to the bottom of this column and return this columnDoubleColumnBooleanColumn. asDoubleColumn()Returns a DoubleColumn containing the elements in this column, with true as 1.0 and false as 0.0.DoubleColumnDateColumn. asDoubleColumn()DoubleColumnDateTimeColumn. asDoubleColumn()DoubleColumnFloatColumn. asDoubleColumn()Returns a new DoubleColumn containing a value for each value in this column.DoubleColumnInstantColumn. asDoubleColumn()DoubleColumnIntColumn. asDoubleColumn()Returns a new DoubleColumn containing a value for each value in this column, truncating if necessary.DoubleColumnLongColumn. asDoubleColumn()Returns a new DoubleColumn containing a value for each value in this columndefault DoubleColumnNumericColumn. asDoubleColumn()Returns a new DoubleColumn containing a value for each value in this columnDoubleColumnShortColumn. asDoubleColumn()Returns a new DoubleColumn containing a value for each value in this column, truncating if necessary.DoubleColumnStringColumn. asDoubleColumn()DoubleColumnTimeColumn. asDoubleColumn()DoubleColumnDoubleColumn. bottom(int n)Returns the smallest ("bottom") n values in the column TODO(lwhite): Consider whether this should exclude missingDoubleColumnDoubleColumn. copy()Returns a deep copy of the receiverstatic DoubleColumnDoubleColumn. create(String name)static DoubleColumnDoubleColumn. create(String name, double... arr)static DoubleColumnDoubleColumn. create(String name, float... arr)static DoubleColumnDoubleColumn. create(String name, int initialSize)static DoubleColumnDoubleColumn. create(String name, int... arr)static DoubleColumnDoubleColumn. create(String name, long... arr)static DoubleColumnDoubleColumn. create(String name, Number[] numbers)static DoubleColumnDoubleColumn. create(String name, Collection<? extends Number> numberList)static DoubleColumnDoubleColumn. create(String name, DoubleStream stream)DoubleColumnDoubleColumn. createCol(String name)DoubleColumnDoubleColumn. createCol(String name, int initialSize)DoubleColumnDoubleColumn. fillWith(double d)DoubleColumnDoubleColumn. fillWith(it.unimi.dsi.fastutil.doubles.DoubleIterator iterator)DoubleColumnDoubleColumn. fillWith(DoubleSupplier supplier)DoubleColumnDoubleColumn. fillWith(DoubleRangeIterable iterable)DoubleColumnDoubleColumn. filter(DoublePredicate test)Returns a new NumberColumn with only those rows satisfying the predicateDoubleColumnDoubleColumn. lag(int n)Returns a column of the same type and size as the receiver, containing the receivers values offset by n.default DoubleColumnNumericColumn. pctChange(int periods)Returns a column containing the percentage change between values that areperiodsapartDoubleColumnDoubleColumn. removeMissing()Returns a copy of this column with the missing values removedDoubleColumnDoubleColumn. set(int i, double val)DoubleColumnDoubleColumn. set(int i, Double val)Sets the value at index row to the given value and return this columnDoubleColumnDoubleColumn. set(int row, Column<Double> column, int sourceRow)Sets the value at row to the value at sourceRow in the given column and return this columnDoubleColumnDoubleColumn. set(DoublePredicate condition, NumericColumn<?> other)Updates this column where values matching the selection are replaced with the corresponding value from the given columnDoubleColumnDoubleColumn. setMissing(int index)Sets the value at index i to the missing-value indicator for this column type, and return this columnDoubleColumnDoubleColumn. subset(int[] rows)Return a column of the same type containing just those elements whose indexes are included in the given arrayDoubleColumnDoubleColumn. top(int n)Returns the largest ("top") n values in the column TODO(lwhite): Consider whether this should exclude missingDoubleColumnDoubleColumn. unique()Returns a column of the same type containing only the unique valuesDoubleColumnDoubleColumn. where(Selection selection)Returns the subset of data in this column included in the givenSelection -
Uses of DoubleColumn in tech.tablesaw.columns.numbers
Methods in tech.tablesaw.columns.numbers that return DoubleColumn Modifier and Type Method Description default DoubleColumnNumberMapFunctions. abs()Returns a NumberColumn with the absolute value of each value in this columndefault DoubleColumnNumberMapFunctions. add(Number value)default DoubleColumnNumberMapFunctions. add(NumericColumn<?> column2)default DoubleColumnNumberMapFunctions. asPercent()Return the elements of this column as the percentages of their value relative to the sum of all elementsdefault DoubleColumnNumberMapFunctions. asRatio()Return the elements of this column as the ratios of their value and the sum of all elementsdefault DoubleColumnNumberMapFunctions. bin(int binCount)DoubleColumnNumberRollingColumn. countMissing()DoubleColumnNumberRollingColumn. countNonMissing()DoubleColumnDoubleColumnType. create(String name)Returns a column of this type with the given namedefault DoubleColumnNumberMapFunctions. cube()default DoubleColumnNumberMapFunctions. cubeRoot()default DoubleColumnNumberMapFunctions. cumMax()Returns a new column with a cumulative maximum calculateddefault DoubleColumnNumberMapFunctions. cumMin()Returns a new column with a cumulative maximum calculateddefault DoubleColumnNumberMapFunctions. cumProd()Returns a new column with a cumulative product calculateddefault DoubleColumnNumberMapFunctions. cumSum()Returns a new column with a cumulative sum calculateddefault DoubleColumnNumberMapFunctions. difference()default DoubleColumnNumberMapFunctions. divide(Number value)default DoubleColumnNumberMapFunctions. divide(NumericColumn<?> column2)DoubleColumnNumberRollingColumn. geometricMean()DoubleColumnNumberRollingColumn. kurtosis()DoubleColumnNumberInterpolator. linear()Linearly interpolates missing values.default DoubleColumnNumberMapFunctions. log10()Returns the base 10 log of the values in this column as a NumberColumn.default DoubleColumnNumberMapFunctions. log1p()Returns the natural log of the values in this column, after adding 1 to each so that zero values don't return -Infinitydefault DoubleColumnNumberMapFunctions. logN()Returns the natural log of the values in this column as a NumberColumn.DoubleColumnNumberRollingColumn. max()DoubleColumnNumberRollingColumn. mean()DoubleColumnNumberRollingColumn. median()DoubleColumnNumberRollingColumn. min()default DoubleColumnNumberMapFunctions. multiply(Number value)default DoubleColumnNumberMapFunctions. multiply(NumericColumn<?> column2)default DoubleColumnNumberMapFunctions. neg()For each item in the column, returns the same number with the sign changed.default DoubleColumnNumberMapFunctions. normalize()Returns a transformation of the data in this column such that the result has a mean of 0, and a standard deviation of 1default DoubleColumnNumberMapFunctions. pctChange()Returns a new column with a percent change calculateddefault DoubleColumnNumberMapFunctions. power(double power)Returns a NumberColumn with the exponential power of each value in this columndefault DoubleColumnNumberMapFunctions. power(NumericColumn<?> powerColumn)default DoubleColumnNumberMapFunctions. reciprocal()Returns a NumberColumn with the reciprocal (1/n) for each value n in this columndefault DoubleColumnNumberMapFunctions. remainder(double val2)default DoubleColumnNumberMapFunctions. remainder(DoubleColumn column2)default DoubleColumnNumberMapFunctions. round()default DoubleColumnNumberMapFunctions. roundInt()Returns the rounded values as a NumberColumn.DoubleColumnNumberRollingColumn. skewness()default DoubleColumnNumberMapFunctions. sqrt()default DoubleColumnNumberMapFunctions. square()Returns a NumberColumn with the square of each value in this columnDoubleColumnNumberRollingColumn. stdDev()default DoubleColumnNumberMapFunctions. subtract(Number value)default DoubleColumnNumberMapFunctions. subtract(NumericColumn<?> column2)DoubleColumnNumberRollingColumn. sum()DoubleColumnNumberRollingColumn. variance()Methods in tech.tablesaw.columns.numbers with parameters of type DoubleColumn Modifier and Type Method Description default DoubleColumnNumberMapFunctions. remainder(DoubleColumn column2) -
Uses of DoubleColumn in tech.tablesaw.columns.strings
Methods in tech.tablesaw.columns.strings that return DoubleColumn Modifier and Type Method Description default DoubleColumnStringMapFunctions. countTokens(String separator)default DoubleColumnStringMapFunctions. distance(Column<String> column2)Returns a column containing the levenshtein distance between the two given string columnsdefault DoubleColumnStringMapFunctions. length()Returns a column containing the character length of each string in this column The returned column is the same size as the originaldefault DoubleColumnStringMapFunctions. parseDouble()Returns an Double containing all the values of this string column as doubles, assuming all the values are stringified doubles in the first place. -
Uses of DoubleColumn in tech.tablesaw.columns.times
Methods in tech.tablesaw.columns.times that return DoubleColumn Modifier and Type Method Description default DoubleColumnTimeMapFunctions. timeWindow(ChronoUnit unit, int n)default DoubleColumnTimeMapFunctions. timeWindow(ChronoUnit unit, int n, LocalTime start)Returns a column containing integers representing the nth group (0-based) that a date falls into. -
Uses of DoubleColumn in tech.tablesaw.index
Constructors in tech.tablesaw.index with parameters of type DoubleColumn Constructor Description DoubleIndex(DoubleColumn column)Constructs an index for the given column -
Uses of DoubleColumn in tech.tablesaw.table
Methods in tech.tablesaw.table that return DoubleColumn Modifier and Type Method Description DoubleColumnRelation. doubleColumn(int columnIndex)Returns the DoubleColumn at the given 0-based index if present.DoubleColumnRelation. doubleColumn(String columnName)Returns a DoubleColumn with the given name if it is present in this Relation.
-