Пример #1
0
 def digest(self) -> TDigest:
     """
     This property pulls from the database to populate a tdigest instance
     """
     dig = TDigest(self.delta, self.K)
     if self.blob:
         dig.update_from_dict(self.blob)
     return dig