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 | |
---|
15 | function a = liver |
---|
16 | |
---|
17 | prdatasets(mfilename,1); |
---|
18 | a = pr_dataset('liver'); |
---|
19 | a = setname(a,'Liver disorder dataset'); |
---|
20 | |
---|
21 | a = setlablist(a,char('healthy','disorder')); |
---|
22 | a = setfeatlab(a,char(... |
---|
23 | 'mean corpuscular volume', ... |
---|
24 | 'alkaline phosphotase', ... |
---|
25 | 'alamine aminotransferase', ... |
---|
26 | 'aspartate aminotransferase', ... |
---|
27 | 'gamma-glutamyl transpeptidase', ... |
---|
28 | 'half-pint equivalents')); |
---|