Last change
on this file since 144 was
142,
checked in by bduin, 5 years ago
|
Updated collection of datasets
|
File size:
1.1 KB
|
Rev | Line | |
---|
[142] | 1 | %GERMAN_SL Statlog (German Credit Approval, original) Data Set
|
---|
| 2 | %PRTools dataset import from UCI, 1000 objects, 20 features, 2 classes
|
---|
| 3 | %
|
---|
| 4 | % A = GERMAN_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 dataset contains a number of categorical features with N > 2
|
---|
| 13 | %categories. They may be converted to N new real features by CAT2REAL.
|
---|
| 14 | %There is a numeric version of this dataset: STATLOG_GERMAN_NUM
|
---|
| 15 | %
|
---|
| 16 | %SEE ALSO <a href="http://37steps.com/prtools">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
|
---|
| 17 | %PRTOOLS, DATASETS, SETFEATDOM, FEATTYPES, CAT2REAL, GERMAN_NUM_SL
|
---|
| 18 |
|
---|
| 19 | % Copyright: R.P.W. Duin, r.p.w.duin@37steps.com
|
---|
| 20 |
|
---|
| 21 | function a = german_sl
|
---|
| 22 |
|
---|
| 23 | a = pr_download_uci('Statlog+(German+Credit+Data)','german.data',[],[],[],[],[],' ');
|
---|
| 24 | a = setname(a,'Statlog German Credit');
|
---|
| 25 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.