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 | %WAVEFORM1 Waveform Database Generator (Version 1) Data Set
|
---|
| 2 | %PRTools dataset import from UCI, 5000 objects, 21 features, 3 classes
|
---|
| 3 | %
|
---|
| 4 | % A = WAVEFORM1
|
---|
| 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/Waveform+Database+Generator+(Version+1)">related website</a>
|
---|
| 9 | %for further information. Please make the appropriate references in
|
---|
| 10 | %publications that make use of this dataset.
|
---|
| 11 | %
|
---|
| 12 | %REFERENCE
|
---|
| 13 | %Breiman,L., Friedman,J.H., Olshen,R.A., & Stone,C.J. (1984).
|
---|
| 14 | %Classification and Regression Trees. Wadsworth International
|
---|
| 15 | %Group: Belmont, California. (see pages 43-49).
|
---|
| 16 | %
|
---|
| 17 | %SEE ALSO <a href="http://37steps.com/prtools">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
|
---|
| 18 |
|
---|
| 19 | function a = waveform1
|
---|
| 20 |
|
---|
| 21 | % UCI data is Z-compressed. No Matlab command found for uncompressing.
|
---|
| 22 | % Load zipped data from PRTools.
|
---|
| 23 | url = 'http://37steps.com/data/prdatasets/waveform.zip';
|
---|
| 24 | a = pr_download_uci('Waveform+Database+Generator+(Version+1)',url);
|
---|
| 25 | a = setname(a,'Simple Waveform Data');
|
---|
Note: See
TracBrowser
for help on using the repository browser.