Who even knows at this point

This commit is contained in:
2024-07-30 13:42:48 -04:00
parent fe9b338324
commit 79e3676ed3
38 changed files with 465 additions and 746 deletions

View File

@@ -206,19 +206,19 @@ sh= userPars.BPlblShft;
fontSize= userPars.BPfontSz;
rotation= userPars.BProt;
%fontSize = 8;
%tickLabelStr = {'Label alpha','Label beta','Label chi','Label delta',...
%fontSize=8;
%tickLabelStr={'Label alpha','Label beta','Label chi','Label delta',...
% 'Label epsilon','Label fish','Label gamma','Label hallo','Label ingo'}
% generate data
if size(BPvals,1)==1, BPvals(2,1:maxCols)= nan; end
final_res = BPvals; %10*randn(300,9)+10;
final_res=BPvals; %10*randn(300,9)+10;
% group boxes
%sh = 0.3; %sh is shift value
width = .5*sh;
%sh=0.3; %sh is shift value
width=.5*sh;
%pos = [1+sh 2-sh 3+sh 4-sh 5+sh 6-sh 7+sh 8-sh 9+sh];
%pos=[1+sh 2-sh 3+sh 4-sh 5+sh 6-sh 7+sh 8-sh 9+sh];
bpn=1;
if strcmp(Exp(expN).DexpType, 'chrono')
ticDim= length(Exp(expN).Dexp);
@@ -235,7 +235,7 @@ rotation= userPars.BProt;
end
end
end
wid = width * ones(1,length(pos));
wid=width * ones(1,length(pos));
% boxplot
figure
@@ -257,10 +257,10 @@ rotation= userPars.BProt;
ylabel('L in Hours', 'FontSize', fontSize)
%x-labels
text_h = findobj(gca, 'Type', 'text');
%rotation = 45;
text_h=findobj(gca, 'Type', 'text');
%rotation=45;
for cnt = 1:length(text_h)
for cnt=1:length(text_h)
set(text_h(cnt), 'FontSize', fontSize,...
'Rotation', rotation, ...
'String', tickLabelStr{length(tickLabelStr)-cnt+1}, ...
@@ -270,16 +270,16 @@ rotation= userPars.BProt;
% 'VerticalAlignment', 'cap', ...
% smaller box for axes, in order to un-hide the labels
squeeze = 0.2;
left = 0.02;
right = 1;
bottom = squeeze;
top = 1-squeeze;
squeeze=0.2;
left=0.02;
right=1;
bottom=squeeze;
top=1-squeeze;
set(gca, 'OuterPosition', [left bottom right top])
% remove outliers
hout = findobj(gca,'tag','Outliers');
for out_cnt = 1 : length(hout)
hout=findobj(gca,'tag','Outliers');
for out_cnt=1 : length(hout)
if strcmpi(BPoutliers,'on'),
set(hout(out_cnt), 'Visible', 'on')
elseif strcmpi(BPnotch,'off'),