source: prdatasets/haberman.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 829 bytes
Line 
1%HABERMAN Survival of patients after surgery for breast cancer
2%PRTools dataset import from UCI, 306 objects, 3 features, 2 classes
3%
4%  A = HABERMAN
5%
6%DESCRIPTION
7%This command downloads one of the UCI data sets, converts it into PRTools
8%format and stores it locally for future use. Consult the <a href="http://archive.ics.uci.edu/ml/datasets/Haberman's+Survival">related website</a>
9%for further information. Please make the appropriate references in
10%publications that make use of this dataset.
11%
12%SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
13%PRTOOLS, DATASETS
14
15% Copyright: R.P.W. Duin
16
17function a = haberman
18
19a = pr_download_uci('Haberman''s+Survival','haberman.data');
20a = setname(a,['Haberman''''s Survival']);
21
Note: See TracBrowser for help on using the repository browser.