Line | |
---|
1 | %BIOMED 194 objects with 5 features in 2 classes |
---|
2 | % |
---|
3 | % X = BIOMED; |
---|
4 | % |
---|
5 | % The biomed dataset to develop screening methods to identify carriers |
---|
6 | % of a rare genetic disorder. Because the disease is rare, there are |
---|
7 | % only a few carriers of the disease from whom data are available. |
---|
8 | % |
---|
9 | % X = BIOMED(VAL) |
---|
10 | % |
---|
11 | % By default objects with missing values are removed. When something else |
---|
12 | % is desired, use one of the options in MISVAL. |
---|
13 | % |
---|
14 | % This is the ''biomed' dataset of the <a href="http://lib.stat.cmu.edu/datasets/">StatLib Datasets Archive</a>. |
---|
15 | % |
---|
16 | % SEE ALSO <a href="http://37steps.com/prtools">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a> |
---|
17 | % PRTOOLS, DATASETS, MISVAL |
---|
18 | |
---|
19 | % Copyright: R.P.W. Duin, r.p.w.duin@prtools.org |
---|
20 | |
---|
21 | function x = biomed(val) |
---|
22 | |
---|
23 | prdatasets(mfilename,1,'http://prtools.org/prdatasets/biomed.dat'); |
---|
24 | if nargin<1 |
---|
25 | val = 'remove'; |
---|
26 | end |
---|
27 | |
---|
28 | user.desc = 'The purpose of the analysis is to develop a screening procedure to detect carriers and to describe its effectiveness. '; |
---|
29 | user.link = 'http://lib.stat.cmu.edu/datasets/'; |
---|
30 | cl = {'carrier' 'normal'}; |
---|
31 | fl = {'age' 'measurement 1' 'measurement 2' 'measurement 3' 'measurement 4'}; |
---|
32 | |
---|
33 | a = load('biomed.dat'); |
---|
34 | x = pr_dataset(a(:,[3 5 6 7 8]),cl(a(:,end))); |
---|
35 | x = setfeatlab(x,fl); |
---|
36 | x = setname(x,'Biomed'); |
---|
37 | [x,msg] = misval(x,val); |
---|
38 | user.desc = [user.desc msg]; |
---|
39 | x = setuser(x,user); |
---|
40 | |
---|
41 | return |
---|
Note: See
TracBrowser
for help on using the repository browser.