source: prdatasets/liver.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 830 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
12% Faculty EWI, Delft University of Technology
13% P.O. Box 5031, 2600 GA Delft, The Netherlands
14
15function a = liver
16
17a = pr_getdata;
18a = setname(a,'Liver disorder dataset');
19a = setlablist(a,char('healthy','disorder'));
20a = setfeatlab(a,char(...
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.