InputT
- the type of the elements in the input PCollection
public abstract static class SketchFrequencies.GlobalSketch<InputT> extends PTransform<PCollection<InputT>,PCollection<SketchFrequencies.Sketch<InputT>>>
SketchFrequencies.globally()
.name
Constructor and Description |
---|
GlobalSketch() |
Modifier and Type | Method and Description |
---|---|
PCollection<SketchFrequencies.Sketch<InputT>> |
expand(PCollection<InputT> input)
Override this method to specify how this
PTransform should be expanded on the given
InputT . |
SketchFrequencies.GlobalSketch<InputT> |
withConfidence(double conf)
Sets the
confidence value, i.e. |
SketchFrequencies.GlobalSketch<InputT> |
withRelativeError(double eps)
Sets the relative error
epsilon . |
compose, compose, getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, populateDisplayData, toString, validate
public SketchFrequencies.GlobalSketch<InputT> withRelativeError(double eps)
epsilon
.
Keep in mind that the lower the epsilon
value, the greater the width.
eps
- the error relative to the total number of distinct elementspublic SketchFrequencies.GlobalSketch<InputT> withConfidence(double conf)
confidence
value, i.e. the probability that the relative error is lower or
equal to epsilon
.
Keep in mind that the greater the confidence, the greater the depth.
conf
- the confidence in the result to not exceed the relative errorpublic PCollection<SketchFrequencies.Sketch<InputT>> expand(PCollection<InputT> input)
PTransform
PTransform
should be expanded on the given
InputT
.
NOTE: This method should not be called directly. Instead apply the PTransform
should
be applied to the InputT
using the apply
method.
Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
expand
in class PTransform<PCollection<InputT>,PCollection<SketchFrequencies.Sketch<InputT>>>