source: prdatasets/liver.m @ 81

Last change on this file since 81 was 81, checked in by bduin, 11 years ago
File size: 894 bytes
Line 
1%LIVER Liver disorder dataset, 345 objects, 6 features, 2 classes
2%
3%       A = LIVER
4%
5% Load the dataset in A, select the objects and features according to the
6% index vectors M and N. This is the Liver-disorders database from the UCI
7% Machine Learning Repository, //www.ics.uci.edu/~mlearn/MLRepository.html
8%
9% See also DATASETS, PRDATASETS
10
11% Copyright: R.P.W. Duin, r.p.w.duin@prtools.org
12% Faculty EWI, Delft University of Technology
13% P.O. Box 5031, 2600 GA Delft, The Netherlands
14
15function a = liver
16
17prdatasets(mfilename,1);
18a = pr_dataset('liver');
19a = setname(a,'Liver disorder dataset');
20
21a = setlablist(a,str2mat('healthy','disorder'));
22a = setfeatlab(a,str2mat(...
23        'mean corpuscular volume', ...
24        'alkaline phosphotase', ...
25        'alamine aminotransferase', ...
26                'aspartate aminotransferase', ...
27                'gamma-glutamyl transpeptidase', ...
28                'half-pint equivalents'));
Note: See TracBrowser for help on using the repository browser.