Package tech.tablesaw.aggregate
Class StringFunction
java.lang.Object
tech.tablesaw.aggregate.AggregateFunction<StringColumn,String>
tech.tablesaw.aggregate.StringFunction
Deprecated.
A partial implementation of aggregate functions to summarize over a StringColumn
-
Constructor Summary
ConstructorsConstructorDescriptionStringFunction
(String name) Deprecated.Constructs anStringFunction
with the given name. -
Method Summary
Modifier and TypeMethodDescriptionboolean
isCompatibleColumn
(ColumnType type) Deprecated.Returns true if the givenColumnType
is compatible with this functionDeprecated.Returns theColumnType
to be used for the values returned by this functionabstract String
summarize
(StringColumn column) Deprecated.Apply this function to the column argumentMethods inherited from class tech.tablesaw.aggregate.AggregateFunction
functionName, toString
-
Constructor Details
-
StringFunction
Deprecated.Constructs anStringFunction
with the given name. The name may be used to name a column in the output when this function is used bySummarizer
-
-
Method Details
-
summarize
Deprecated.Description copied from class:AggregateFunction
Apply this function to the column argument- Specified by:
summarize
in classAggregateFunction<StringColumn,
String>
-
isCompatibleColumn
Deprecated.Returns true if the givenColumnType
is compatible with this function- Specified by:
isCompatibleColumn
in classAggregateFunction<StringColumn,
String>
-
returnType
Deprecated.Returns theColumnType
to be used for the values returned by this function- Specified by:
returnType
in classAggregateFunction<StringColumn,
String>
-
StringAggregateFunction
instead