-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevaluationData.m
16 lines (16 loc) · 1.38 KB
/
evaluationData.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
% Patient data for the evaluation:
function [data] = evaluationData()
data = [
% Id, ARDS, HF, Female, Age, Height, Weight, NTproBNP, HR, Pas, Pvs, Hb, Scr, BUN, PaCO2, FiO2, f, VT, PEEP, Pinsp, PaO2
1 1 0 0 41 1.88 95 989 99 86 8 115000 15 -1 40.2 40 26 0.5 6 18.75 90;
2 1 0 1 73 1.58 86 76108 128 49 25 98000 0.86 31 46.5 61 30 0.24 5.25 14.25 32;
3 1 0 0 46 1.21 63 234.4 104 97 8 82000 0.26 65 43.2 51 15 0.23 9.75 21 103;
4 1 0 0 28 1.62 70 9459 91 63 10 111000 1.09 60 38.9 60 26 0.39 9.75 27.75 114;
5 0 1 0 52 1.74 60 9175 131 72 6 112000 1.3 45 57.3 100 40 0.54 3 12.75 73;
6 0 1 0 81 1.67 72 13006 112 72 12 116000 22 -1 30.5 100 19 0.48 7.5 21.75 114;
7 0 1 0 52 1.73 75 37572 136 87 29 101000 2.54 64 17.9 31 24 0.61 3.75 8.25 80;
8 0 1 0 70 1.76 90 22256 67 46 11 92000 0.66 38 53.8 71 20 0.62 4.5 16.5 57;
9 0 1 1 76 1.52 83 32567 60 63 19 104000 3.49 288 42.1 40 23 0.37 6 18 102;
10 0 1 0 41 1.72 105 499.8 58 78 12 144000 0.78 45 39.5 50 24 0.59 7.5 22.5 73;
];
end