Rev | Line | |
---|
[142] | 1 | %BALLOONS Psychology experiment conditions
|
---|
| 2 | %PRTools UCI dataset import, 20+20+16+16 objects, 4 categorical features, 2 classes
|
---|
| 3 | %
|
---|
| 4 | % [A1,A2,A3,A4] = BALLOONS
|
---|
| 5 | % A1_4 = BALLOONS
|
---|
| 6 | %
|
---|
| 7 | %DESCRIPTION
|
---|
| 8 | %This command downloads one of the UCI data sets, converts it into PRTools
|
---|
| 9 | %format and stores it locally for future use. Consult the <a href="http://archive.ics.uci.edu/ml/datasets/Balloons">related website</a>
|
---|
| 10 | %for further information. Please make the appropriate references in
|
---|
| 11 | %publications that make use of this dataset.
|
---|
| 12 | %
|
---|
| 13 | %All categorical features are binary and might be used as such in
|
---|
| 14 | %routines expecting continuous features.
|
---|
| 15 | %
|
---|
[150] | 16 | %SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
|
---|
[142] | 17 | %DATASETS
|
---|
| 18 |
|
---|
| 19 | function [a1,a2,a3,a4] = balloons
|
---|
| 20 |
|
---|
| 21 | [a1,a2,a3,a4] = pr_download_uci('balloons',{'adult+stretch.data','adult-stretch.data','yellow-small+adult-stretch.data','yellow-small.data'});
|
---|
| 22 |
|
---|
| 23 | if nargout < 2, a1 = [a1;a2;a3;a4]; a1 = setname(a1,'Balloons'); end |
---|
Note: See
TracBrowser
for help on using the repository browser.