okomarov/schemaball node brightness customization
Show older comments
Dear MATLAB community,
I am using the excellent https://github.com/okomarov/schemaball by Oleg Okomarov to visualize the correlation between 50 sustainability indicators. In order to improve the interpretation, I excluded weak correlations that are between 0 and 0,3 as well as 0 and -0,3 by setting the fields in the matrix to NaN.

Unfortunately, this somehow broke the schemaball feature of nodes being plotted in brighter color when theay are, on average, more absolutely correlated. This is defined in lines 188 - 191:
% Plot in brighter color those nodes which on average are more absolutely correlated
[Z,isrt] = sort(accumarray(subs,abs(r( row + (col-1)*sz(1) )),[],@mean));
Z = (Z-min(Z)+0.01)/(max(Z)-min(Z)+0.01);
ncolor = hsv2rgb([repmat(ncolor(1:2), sz(1),1) Z*ncolor(3)]);
s.s = scatter(x(isrt),y(isrt),[], ncolor,'fill','MarkerEdgeColor',ecolor,'LineWidth',1);
How do I change the code to get this feature back? Any hints are greatly appreciated.
Best,
Philipp
Answers (0)
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!