forked from aleung15/AMPKmTOR2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplotfigure3_metrics.m
40 lines (34 loc) · 1 KB
/
plotfigure3_metrics.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
getplotid
figure(32)
% barlabel = categorical({'Calcium','pAMPK','pmTORC1','pmTORC2'});
% bar(barlabel,[CaC_AUC./max(CaC_AUC);AMPK_AUC./max(AMPK_AUC);mTORC1_AUC./max(mTORC1_AUC);mTORC2_AUC./max(mTORC2_AUC)])
% ylabel('Normalized Area Under Curve')
% legend('0.1 Hz','1','10','100')
%% panel 1 AUC
subplot(3,1,1)
barlabel = categorical({'pAMPK','pmTORC1','pmTORC2'});
bar(barlabel,[normAMPK(1,:);normmTOR1(1,:);normmTOR2(1,:)])
ylabel('Relative Area Under Curve')
legend('1 Hz')
ylabel('Normalized AUC')
ylim([0.9,1.2])
plotformat
%% panel 2 Period
subplot(3,1,2)
bar(barlabel,[period_a;period_m1;period_m2])
ylim([15,25])
ylabel('Period [s]')
plotformat
%% panel 3 maxamplitude
subplot(3,1,3)
bar(barlabel,100.*[maxamp_a;maxamp_m1;maxamp_m2])
ylabel('Amplitude [% Change]')
plotformat
% %% panel 4 ttp
% subplot(2,2,4)
% bar(barlabel,[CaC_AUC;AMPK_AUC;mTORC1_AUC;mTORC2_AUC])
% ylabel('Normalized Area Under Curve')
% legend('0.1 Hz','1','10','100')
% xlabel('Species')
% ylabel('Normalized AUC')
plotformat