-
Notifications
You must be signed in to change notification settings - Fork 9
/
find_outliers.m
142 lines (120 loc) · 4.12 KB
/
find_outliers.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis
% find_outliers.m -- Find outlier beats
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks
%
% Source code/executables: https://github.com/BIVectors/BRAVEHEART
% Contact: [email protected]
%
% BRAVEHEART is free software: you can redistribute it and/or modify it under the terms of the GNU
% General Public License as published by the Free Software Foundation, either version 3 of the License,
% or (at your option) any later version.
%
% BRAVEHEART is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
% without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
% See the GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License along with this program.
% If not, see <https://www.gnu.org/licenses/>.
%
% This software is for research purposes only and is not intended to diagnose or treat any disease.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function [outlier_matrix, outlier_legend] = find_outliers(beats, lead, hz, cutpt)
% load in fiducial points from annotated beat listbox
Q = beats(:,1);
QRS = beats(:,2);
S = beats(:,3);
Tend = beats(:,4);
% define QR, RS, JT, and QT intervals
QR_int = QRS-Q;
RS_int = S-QRS;
JT_int = Tend-S;
RT_int = Tend-QRS;
QT_int = Tend-Q;
% find area (integral) for each beat - does not account for sample time
area = zeros(1,length(Q));
for i=1:length(Q)
if isnan(Tend(i)) || isnan(Q(i))
area(i) = NaN;
continue;
end
lead_segment = lead(Q(i):Tend(i));
area(i) = round(trapz(lead_segment));
end
area=area';
%
% % because QR values are usually small, standard method in matlab
% % (isoutlier) doesn't perform well. Will do manually
%
% median_qr = median(QR_int);
% qr_p25 = prctile(QR_int,25);
% qr_p75 = prctile(QR_int,75);
% qr_iqr = iqr(QR_int);
%
% % define outlier as 4 IQRs away from the IQR (P25 or P75)
%
% low_qr = qr_p25-(4*qr_iqr);
% high_qr = qr_p75+(4*qr_iqr);
%
% for k = 1:length(Q)
% if QR_int(k) > high_qr
% qr_outlier(k) = 1;
% elseif QR_int(k) < low_qr
% qr_outlier(k) = 1;
% else
% qr_outlier(k) = 0;
% end
% end
%
%
%
% % Outliers for RT done manually as isoutlier tends to overcall
%
% median_rt = median(RT_int);
% rt_p25 = prctile(RT_int,25);
% rt_p75 = prctile(RT_int,75);
% rt_iqr = iqr(RT_int);
%
% % define outlier as 3 IQRs away from the IQR (P25 or P75)
% low_rt = rt_p25-(4*rt_iqr);
% high_rt = rt_p75+(4*rt_iqr);
%
% for k = 1:length(Q)
% if RT_int(k) > high_rt
% rt_outlier(k) = 1;
% elseif RT_int(k) < low_rt
% rt_outlier(k) = 1;
% else
% rt_outlier(k) = 0;
% end
% end
qr_outlier = zeros(1,length(Q));
rt_outlier = zeros(1,length(Q));
rs_outlier = zeros(1,length(Q));
jt_outlier = zeros(1,length(Q));
qt_outlier = zeros(1,length(Q));
svg_outlier = zeros(1,length(Q));
qr_outlier(find(mod_z_score(QR_int, hz)>cutpt)) = 1;
rt_outlier(find(mod_z_score(RT_int, hz)>cutpt)) = 1;
rs_outlier(find(mod_z_score(RS_int, hz)>cutpt)) = 1;
jt_outlier(find(mod_z_score(JT_int, hz)>cutpt)) = 1;
qt_outlier(find(mod_z_score(QT_int, hz)>cutpt)) = 1;
svg_outlier(find(mod_z_score(area, hz)>cutpt)) = 1;
% outlier is defined as any beat with any of the 5 parameters classified as
% an outlier
%outlier_matrix = [qr_outlier;isoutlier(RS_int,'median')';isoutlier(JT_int,'quartiles')';rt_outlier;isoutlier(QT_int,'quartiles')';isoutlier(svg,'quartiles')'];
outlier_matrix = [qr_outlier;rs_outlier;jt_outlier;rt_outlier;qt_outlier;svg_outlier];
for i=1:length(Q)
if any(isnan(beats(i,:)))
outlier_matrix(:, i) = 1;
end
end
% Outliers matrix legend
% Row 1 - QR interval **
% Row 2 - RS interval
% Row 3 - JT interval
% Row 4 - RT interval **
% Row 5 - QT interval
% Row 6 - SVG
outlier_legend = ["QR Interval";"RS Interval";"JT Interval";"RT Interval";"QT Interval";"SVG/Area"];
end