[142] | 1 | %SATELLITE_SL Statlog (Landsat Satellite) Data Set
|
---|
| 2 | %PRTools dataset import from UCI, 4435+2000 objects, 36 features, 6 classes
|
---|
| 3 | %
|
---|
| 4 | % [TRAIN,TEST] = SATELLITE_SL
|
---|
| 5 | % TRAIN_TEST = SATELLITE_SL
|
---|
| 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/Statlog+(Landsat+Satellite)">related website</a>
|
---|
| 10 | %for further information. Please make the appropriate references in
|
---|
| 11 | %publications that make use of this dataset.
|
---|
| 12 | %
|
---|
| 13 | %This dataset is identical to the SATELLITE dataset.
|
---|
| 14 | %
|
---|
| 15 | %SEE ALSO <a href="http://37steps.com/prtools">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
|
---|
| 16 | %PRTOOLS, DATASETS, SATELLITE
|
---|
| 17 |
|
---|
| 18 | % Copyright: R.P.W. Duin, r.p.w.duin@37steps.com
|
---|
| 19 |
|
---|
| 20 | function [a,b] = satellite_sl
|
---|
| 21 |
|
---|
| 22 | [a,b] = pr_download_uci('Statlog+(Landsat+Satellite)',{'sat.trn','sat.tst'},[],[],[],[],[],' ');
|
---|
| 23 | a = setname(a,'Statlog Satellite');
|
---|
| 24 | b = setname(b,'Statlog Satellite');
|
---|
| 25 | if nargout < 2, a = [a;b]; end
|
---|