source: prdatasets/heart_sl.m @ 160

Last change on this file since 160 was 150, checked in by bduin, 5 years ago
File size: 800 bytes
RevLine 
[142]1%HEART_SL Statlog (Heart) Data Set
2%PRTools dataset import from UCI, 270 objects, 13 features, 2 classes
3%
4%  A = HEART_SL
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/Statlog+(Heart)">related website</a>
9%for further information. Please make the appropriate references in
10%publications that make use of this dataset.
11%
[150]12%SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
[142]13%PRTOOLS, DATASETS
14
[150]15% Copyright: R.P.W. Duin
[142]16
17function a = heart_sl
18
19a = pr_download_uci('Statlog+(Heart)','heart.dat',[],[],[],[],[],' ');
20a = setname(a,'Statlog Heart');
21
22
Note: See TracBrowser for help on using the repository browser.