td_add {tdigest}R Documentation

Add a value to the t-Digest with the specified count

Description

Add a value to the t-Digest with the specified count

Usage

td_add(td, val, count)

Arguments

td

t-Digest object

val

value

count

count

Value

the original, updated tdigest object

Examples

td <- td_create(10)
td_add(td, 0, 1)

[Package tdigest version 0.4.1 Index]