okomarov/schemaball node brightness customization
显示 更早的评论
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
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 2-D and 3-D Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!