source: prdatasets/biomed.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 1.4 KB
RevLine 
[80]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%
[94]9%       X = BIOMED(VAL)
[80]10%
[94]11% By default objects with missing values are removed. When something else
[123]12% is desired, use one of the options in MISVAL for VAL.
[80]13%
[94]14% This is the ''biomed' dataset of the <a href="http://lib.stat.cmu.edu/datasets/">StatLib Datasets Archive</a>.
[123]15% Just the original features 3, 5, 6, 7 and 8 are used.
[94]16%
[150]17% SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
[94]18% PRTOOLS, DATASETS, MISVAL
[80]19
[150]20% Copyright: R.P.W. Duin
[94]21
[137]22function a = biomed(val)
[80]23
[123]24if nargin < 1, val = 'remove'; end
[80]25
[137]26a = pr_loadmatfile;
27if isempty(a)
28  opt.labfeat   = 9;
29  opt.feats     = [3,5,6,7,8];
30  opt.featnames = {'age' 'measurement 1' 'measurement 2' 'measurement 3' 'measurement 4'};
31  opt.classnames = {'carrier' 'normal'};
32  opt.desc = 'The purpose of the analysis is to develop a screening procedure to detect carriers and to describe its effectiveness. ';
33  opt.link = 'http://lib.stat.cmu.edu/datasets/';
[142]34  opt.dsetname = 'Biomedical Data';
[137]35  a = pr_download('http://prtools.tudelft.nl/prdatasets/biomed.dat',[],opt);
36end
37a = misval(a,val);
[80]38
39return
Note: See TracBrowser for help on using the repository browser.