source: prdatasets/heart_sl.m @ 142

Last change on this file since 142 was 142, checked in by bduin, 5 years ago

Updated collection of datasets

File size: 815 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%
12%SEE ALSO <a href="http://37steps.com/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, r.p.w.duin@37steps.com
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.