Package | Description |
---|---|
org.apache.datasketches.frequencies |
This package is dedicated to streaming algorithms that enable estimation of the
frequency of occurrence of items in a weighted multiset stream of items.
|
Modifier and Type | Method and Description |
---|---|
static ErrorType |
ErrorType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorType[] |
ErrorType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
LongsSketch.Row[] |
LongsSketch.getFrequentItems(ErrorType errorType)
Returns an array of Rows that include frequent items, estimates, upper and lower bounds
given an ErrorCondition and the default threshold.
|
ItemsSketch.Row<T>[] |
ItemsSketch.getFrequentItems(ErrorType errorType)
Returns an array of Rows that include frequent items, estimates, upper and lower bounds
given an ErrorCondition and the default threshold.
|
LongsSketch.Row[] |
LongsSketch.getFrequentItems(long threshold,
ErrorType errorType)
Returns an array of Rows that include frequent items, estimates, upper and lower bounds
given a threshold and an ErrorCondition.
|
ItemsSketch.Row<T>[] |
ItemsSketch.getFrequentItems(long threshold,
ErrorType errorType)
Returns an array of Rows that include frequent items, estimates, upper and lower bounds
given a threshold and an ErrorCondition.
|
Copyright © 2015–2024 The Apache Software Foundation. All rights reserved.