Overload List

  NameDescription
Apply(String, NMathFunctions..::.DoubleUnaryFunction)
Returns a new numeric column with the given name and same size as this column, whose values are the result of applying the given double unary function to each element of this column.
Apply(String, NMathFunctions..::.IntUnaryFunction)
Returns a new column with the given name and same size as this column, whose values are the result of applying the given unary function to each element of this column.
Apply(String, StatsFunctions..::.LogicalDoubleFunction)
Returns a new numeric column with the given name and size containing the items in this column that evaluate to true using the given logical function.
Apply(String, StatsFunctions..::.LogicalIntFunction)
Returns a new column with the given name and size containing the items in this column that evaluate to true using the given logical function.
Apply(String, NMathFunctions..::.DoubleBinaryFunction, DoubleVector)
Returns a new numeric column with the given name and same size as this column, whose values are the result of applying the given double binary function to each element of this column. The first parameter to the binary function is an element of self; the second parameter is the corresponding element of the passed vector.
Apply(String, NMathFunctions..::.DoubleBinaryFunction, DFNumericColumn)
Returns a new numeric column with the given name and size as this column, whose values are the result of applying the given binary function to each element of this column. The first parameter to the binary function is an element of self; the second parameter is the corresponding element of the passed column.
Apply(String, NMathFunctions..::.DoubleBinaryFunction, Double)
Returns a new numeric column with the given name and same size as this column, whose values are the result of applying the given double binary function to each element of this column. The first parameter to the binary function is the column element; the second parameter is the passed double-precision value.
Apply(String, NMathFunctions..::.DoubleIntFunction, Int32)
Returns a new numeric column with the given name and same size as this column, whose values are the result of applying the given double integer function to each element of this column. The first parameter to the binary function is the column element; the second parameter is the passed integer value.
Apply(String, NMathFunctions..::.IntBinaryFunction, DFIntColumn)
Returns a new column with the given name and same size as this column, whose values are the result of applying the given binary function to each element of this column. The first parameter to the binary function is an element of self; the second parameter is the corresponding element of the passed column.
Apply(String, NMathFunctions..::.IntBinaryFunction, Int32)
Returns a new column with the given name and same size as this column, whose values are the result of applying the given binary function to each element of this column. The first parameter to the binary function is the column element; the second parameter is the passed integer value.

See Also