This message was deleted.
# general
s
This message was deleted.
s
Hi @Hogan Chu please have a look at the relative error rate for theta sketches here: https://datasketches.apache.org/docs/Theta/ThetaErrorTable.html. As you can see, depending on the specified k value, the error rate varies. This link also has more information on accuracy: https://datasketches.apache.org/docs/Theta/ThetaAccuracy.html.
🙌 1
The default size for theta sketch is
16384
that has a relative error rate of 2.344% for 99.73% data. If you increase the K value the error rate goes down.
h
okay i would try and post here result
s
Great thank you 🙂
😭 1
u
Ahh want to try decrease error rate but 1% ~2% is maximum... Result range can be 1million ~ 2million so this percent is not affordable
s
@추호관 The default size for theta sketch is
16384
that has a relative error rate of
2.344%
for
99.73%
data. As can be seen in this document: https://datasketches.apache.org/docs/Theta/ThetaErrorTable.html if you increase the size to for example
1048576
the relative error rate of
99.73%
will go down to
0.293%
You can increase the size further and the relate error rate will also get better.
h
solved the issue thanks @Saydul Bashar
s
You are welcome @Hogan Chu :)