1 | %ARCENE Cancer recognition based on mass spectra
|
---|
2 | %PRTools UCI dataset import, 100+100+700 objects, 10000 features, 2 classes
|
---|
3 | %
|
---|
4 | % [TRAIN,VALID,TEST] = ARCENE
|
---|
5 | % TRAIN_VALID = ARCENE
|
---|
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/Arcene">related website</a>.
|
---|
10 | %for further information. Please make the appropriate references in
|
---|
11 | %publications that make use of this dataset.
|
---|
12 | %
|
---|
13 | %The training set (100 objects) and the validation set (100 objects) are
|
---|
14 | %labeled. The test set (700 objects) is unlabeled. The order of the
|
---|
15 | %original feature (spectral bands) is randomized. Moreover, the set is
|
---|
16 | %merged with a large number of random features. See the dataset <a href="http://archive.ics.uci.edu/ml/datasets/Arcene">website</a>.
|
---|
17 | %
|
---|
18 | %SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
|
---|
19 | %PRTOOLS, DATASETS
|
---|
20 |
|
---|
21 | % Copyright: R.P.W. Duin
|
---|
22 |
|
---|
23 | function [a,b,c] = arcene
|
---|
24 |
|
---|
25 | datfiles = {'ARCENE/arcene_train.data','ARCENE/arcene_valid.data','ARCENE/arcene_test.data'};
|
---|
26 | labfiles = {'ARCENE/arcene_train.labels','arcene_valid.labels',0};
|
---|
27 | % use old call
|
---|
28 | [a,b,c] = pr_download_uci('Arcene',datfiles,[],[],[3,3,18],[],[],' ',labfiles);
|
---|
29 | c = setlablist(c,[]);
|
---|
30 |
|
---|
31 | if nargout < 2
|
---|
32 | a = [a;b];
|
---|
33 | a = setname(a,'Arcene Mass Spectra');
|
---|
34 | end
|
---|
35 |
|
---|
36 |
|
---|
37 |
|
---|