public abstract static class TDigestQuantiles.PerKeyDigest<K> extends PTransform<PCollection<KV<K,java.lang.Double>>,PCollection<KV<K,com.tdunning.math.stats.MergingDigest>>>
TDigestQuantiles.perKey().name, resourceHints| Constructor and Description | 
|---|
| PerKeyDigest() | 
| Modifier and Type | Method and Description | 
|---|---|
| PCollection<KV<K,com.tdunning.math.stats.MergingDigest>> | expand(PCollection<KV<K,java.lang.Double>> input)Override this method to specify how this  PTransformshould be expanded on the givenInputT. | 
| TDigestQuantiles.PerKeyDigest<K> | withCompression(double cf)Sets the compression factor  cf. | 
compose, compose, getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, populateDisplayData, setResourceHints, toString, validate, validatepublic TDigestQuantiles.PerKeyDigest<K> withCompression(double cf)
cf.
 Keep in mind that a compression factor cf of c guarantees a relative error less
 than 3/c at mid quantiles. 
 The accuracy will always be significantly less than 1% at extreme quantiles.
cf - the bound value for centroid and digest sizes.public PCollection<KV<K,com.tdunning.math.stats.MergingDigest>> expand(PCollection<KV<K,java.lang.Double>> input)
PTransformPTransform 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<KV<K,java.lang.Double>>,PCollection<KV<K,com.tdunning.math.stats.MergingDigest>>>