Skip to content

Commit

Permalink
Merge commit '01949f4b7ed528b4c6ac70921e201d7cd8f4def7'
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoRianiUNIPR committed Dec 27, 2024
2 parents 6f57880 + 01949f4 commit efe1cb7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions toolbox/graphics/balloonplot.m
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,12 @@
boo=Res(:)>0;
bubblechart(xcoo(boo),ycoo(boo),Res2(boo),'b');
hold('on')
h=bubblechart(xcoo(~boo),ycoo(~boo),Res2(~boo),'r');
bubblechart(xcoo(~boo),ycoo(~boo),Res2(~boo),'r');
hold('off')
legend('Pos.','Neg.','Location','best');
clickableMultiLegend('Pos.','Neg.','Location','best');
% Lock SizeLimits for consistency
bubblelim(gca,[min(min(Res2)) max(max(Res2))]);

title('Pearson residuals$^2: (\pm) ({n_{ij}-n_{ij}^*})^2/{{n_{ij}^*}}$', ...
'Interpreter','latex','FontSize',16)
h=gcf;
Expand Down Expand Up @@ -344,4 +347,4 @@
grid('on')

end
%FScategory:VIS-Mult
%FScategory:VIS-Mult

0 comments on commit efe1cb7

Please sign in to comment.