tDigestAdd method
TDIGEST.ADD key value value ...
Adds one or more observations to a t-digest sketch.
Implementation
Future<dynamic> tDigestAdd(
String key,
List<double> values, {
bool forceRun = false,
}) async {
await checkValkeySupport('TDIGEST.ADD', forceRun: forceRun);
return execute(['TDIGEST.ADD', key, ...values]);
}