%LIVER Liver disorder dataset, 345 objects, 6 features, 2 classes % % A = LIVER % % Load the dataset in A, select the objects and features according to the % index vectors M and N. This is the Liver-disorders database from the UCI % Machine Learning Repository, //www.ics.uci.edu/~mlearn/MLRepository.html % % See also DATASETS, PRDATASETS % Copyright: R.P.W. Duin, r.p.w.duin@37steps.com % Faculty EWI, Delft University of Technology % P.O. Box 5031, 2600 GA Delft, The Netherlands function a = liver a = pr_getdata; a = setname(a,'Liver disorder dataset'); a = setlablist(a,char('healthy','disorder')); a = setfeatlab(a,char(... 'mean corpuscular volume', ... 'alkaline phosphotase', ... 'alamine aminotransferase', ... 'aspartate aminotransferase', ... 'gamma-glutamyl transpeptidase', ... 'half-pint equivalents'));