So I got a bunch of values that I want to tdigest. In R I just do ```r set.seed(1) x = rchisq(10000, 5) xt = tdigest(x, 10) ``` how do I do the same using your package? An example would be nice ```julia using Distributions x = rand(Chi(5), 10_000) xt = ??? ```