source: prdatasets/german_num_sl.m @ 159

Last change on this file since 159 was 150, checked in by bduin, 5 years ago
File size: 1.0 KB
RevLine 
[142]1%GERMAN_NUM_SL Statlog (German Credit Approval, numeric) Data Set
2%PRTools dataset import from UCI, 1000 objects, 24 features, 2 classes
3%
4%  A = GERMAN_NUM_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+(German+Credit+Data)">related website</a>
9%for further information. Please make the appropriate references in
10%publications that make use of this dataset.
11%
12%This is the numeric version of an originally categorical dataset, see
13%STATLOG_GERMAN_NUM
14%
[150]15%SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
[142]16%PRTOOLS, DATASETS, SETFEATDOM, FEATTYPES, CAT2REAL, GERMAN_SL
17
[150]18% Copyright: R.P.W. Duin
[142]19
20function a = german_num_sl
21
22a = pr_download_uci('Statlog+(German+Credit+Data)','german.data-numeric',[],[],[],[],[],' ');
23a = setname(a,'Statlog German Credit Num');
24
Note: See TracBrowser for help on using the repository browser.