-
Notifications
You must be signed in to change notification settings - Fork 242
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
HitMapView and BmuHitsView have inverted positions #98
Comments
I observed that in bmuhits.py we have,
That is, we have reversed(counts) while in hitmap.py
That is we do not have reversed. By replacing reversed(counts) by only counts, the maps now coincide. Should I instead put reversed(clusters)? (nodes position can star from bottom right) Thank you! |
Ok! Now that I have been thorough through the code I observed the following: plot_hex_map should be called like
we shoud flip across axis=0 and the file hitmap.py should be changed also in the end as
also flipping across axis=0 and putting reversed(clusters) to match the visualizations produced in bmuhits.py. Please check this! Thanks for your work! |
Dear all,
When performing a clusterization of underwater acoustic files I wanted to observe the hitsmap of all the nodes and see it conjointly with the cluster atribution by node.
That is, the HitMapView and the BmuHitsView.
If you see the images bellow
what happens is that the node with 14 hits is in fact located in cluster 7, that is, in the opposite direction. With carefull watching, observing the location of every individual in the node atribution and the cluster atribution, I concluded that they are all in inverted position.
I'm going to observe the code and see where it may be corrected. Meanwhile if you may find it first I appreciate.
Thank you,
Ricardo
The text was updated successfully, but these errors were encountered: