Rev | Line | |
---|
[80] | 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 | |
---|
[150] | 11 | % Copyright: R.P.W. Duin |
---|
[80] | 12 | % Faculty EWI, Delft University of Technology |
---|
| 13 | % P.O. Box 5031, 2600 GA Delft, The Netherlands |
---|
| 14 | |
---|
| 15 | function a = liver |
---|
| 16 | |
---|
[137] | 17 | a = pr_getdata; |
---|
[80] | 18 | a = setname(a,'Liver disorder dataset'); |
---|
[122] | 19 | a = setlablist(a,char('healthy','disorder')); |
---|
| 20 | a = setfeatlab(a,char(... |
---|
[80] | 21 | 'mean corpuscular volume', ... |
---|
| 22 | 'alkaline phosphotase', ... |
---|
| 23 | 'alamine aminotransferase', ... |
---|
| 24 | 'aspartate aminotransferase', ... |
---|
| 25 | 'gamma-glutamyl transpeptidase', ... |
---|
| 26 | 'half-pint equivalents')); |
---|
Note: See
TracBrowser
for help on using the repository browser.