Uses of Class
tech.tablesaw.aggregate.Summarizer
Packages that use Summarizer
-
Uses of Summarizer in tech.tablesaw.aggregate
Methods in tech.tablesaw.aggregate that return SummarizerModifier and TypeMethodDescriptionSummarizer.groupBy
(int step) TODO: research how the groupBy() methods differ from the by() methods?TODO: research how the groupBy() methods differ from the by() methods?Summarizer.groupBy
(CategoricalColumn<?>... columns) TODO: research how the groupBy() methods differ from the by() methods? -
Uses of Summarizer in tech.tablesaw.api
Methods in tech.tablesaw.api that return SummarizerModifier and TypeMethodDescriptionTable.summarize
(String col1Name, String col2Name, String col3Name, String col4Name, AggregateFunction<?, ?>... functions) Returns aSummarizer
that can be used to summarize the column with the given name(s) using the given functions.Table.summarize
(String col1Name, String col2Name, String col3Name, AggregateFunction<?, ?>... functions) Returns aSummarizer
that can be used to summarize the column with the given name(s) using the given functions.Table.summarize
(String numericColumn1Name, String numericColumn2Name, AggregateFunction<?, ?>... functions) Returns aSummarizer
that can be used to summarize the column with the given name(s) using the given functions.Table.summarize
(String columName, AggregateFunction<?, ?>... functions) Returns aSummarizer
that can be used to summarize the column with the given name(s) using the given functions.Table.summarize
(List<String> columnNames, AggregateFunction<?, ?>... functions) Returns aSummarizer
that can be used to summarize the column with the given name(s) using the given functions.Table.summarize
(Column<?> numberColumn, AggregateFunction<?, ?>... function) Returns aSummarizer
that can be used to summarize the column with the given name(s) using the given functions.Table.summarize
(Column<?> column1, Column<?> column2, AggregateFunction<?, ?>... function) Returns aSummarizer
that can be used to summarize the column with the given name(s) using the given functions.Table.summarize
(Column<?> column1, Column<?> column2, Column<?> column3, AggregateFunction<?, ?>... function) Returns aSummarizer
that can be used to summarize the column with the given name(s) using the given functions.Table.summarize
(Column<?> column1, Column<?> column2, Column<?> column3, Column<?> column4, AggregateFunction<?, ?>... function) Returns aSummarizer
that can be used to summarize the column with the given name(s) using the given functions.