-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement classification of results for the heatmap #1807
Comments
Summarizing the discussionWe have 5 particles + zeros. So first we need to exclude the zeros from values. Then, calculate the quintiles. And after extracting the data by quntiles, we can add zeros as the zero class. Something like this:
|
This also can help us (Partitioning array) |
Implemented with the following results:
|
This task/issue closed on Tue Jun 06 2023 ✅ |
Goal of this issue
We classify the results into 5 classes + 1 one class for 0 values.
This means we apply the classes:
0,1,2,3,4,5 to the heatmap results.
These classes can be created using different classifications. Currently, the idea is to implement equal interval and quintiles.
Resources
Deliverables
Branch to derive
The text was updated successfully, but these errors were encountered: