Rev | Line | |
---|
[142] | 1 | %ABALONE Predict the age of abalone from physical measurements
|
---|
| 2 | %PRTools dataset import from UCI, 4177 objects, 8 features, 28 classes
|
---|
| 3 | %
|
---|
| 4 | % A = ABALONE
|
---|
| 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/Abalone">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 | %
|
---|
[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 = abalone
|
---|
| 21 |
|
---|
| 22 | a = pr_download_uci('abalone');
|
---|
| 23 | f = textscan('Length Diam Height Whole Shucked Viscera Shell Rings','%s');
|
---|
| 24 | a = setfeatlab(a,f{1});
|
---|
| 25 | a = setname(a,'Abalone Age Estimation');
|
---|
| 26 |
|
---|
| 27 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.