tisonkun opened a new pull request, #23: URL: https://github.com/apache/datasketches-rust/pull/23
Partially implemented now. I'd finish get_rank today and figure what "CDF" and "PMF" are. Serde later. This closes #14 Some open questions: * Shall we support tdigest over f32? Java implements only TDigestDouble while C++ has both for float and double. I think f64 is enough to cover most cases. * get_rank and get_quantile now takes `&mut self` because they call compress internally. I think we can add a "freezed" tdigest struct that will never updated then and already compressed, so that the freezed struct can be shared anywhere to test ranks and quantities without mut. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
