Rev | Line | |
---|
[142] | 1 | %CMC Contraceptive Method Choice
|
---|
| 2 | %PRTools dataset import from UCI, 690 objects, 15 mixed features, 2 classes
|
---|
| 3 | %
|
---|
| 4 | % A = CMC
|
---|
| 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/Contraceptive+Method+Choice">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 one categorical features with 4 categories.
|
---|
| 13 | %It may be converted to 4 new real features by CAT2REAL.
|
---|
| 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
|
---|
| 17 |
|
---|
[150] | 18 | % Copyright: R.P.W. Duin
|
---|
[142] | 19 |
|
---|
| 20 | function a = cmc
|
---|
| 21 |
|
---|
| 22 | a = pr_download_uci('Contraceptive+Method+Choice','cmc.data');
|
---|
| 23 | a = setfeatdom(a,{char({'1','2','3','4'})},7);
|
---|
| 24 | a = setname(a,'Contraceptive Method Choice');
|
---|
| 25 |
|
---|
| 26 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.