Line | |
---|
1 | %IMSEGMENT Survival of patients after surgery for breast cancer
|
---|
2 | %PRTools dataset import from UCI, 210+2100 objects, 19 features, 7 classes
|
---|
3 | %
|
---|
4 | % [TRAIN,TEST] = IMSEGMENT
|
---|
5 | % TRAIN_TEST = IMSEGMENT
|
---|
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/Image+Segmentation">related website</a>
|
---|
10 | %for further information. Please make the appropriate references in
|
---|
11 | %publications that make use of this dataset.
|
---|
12 | %
|
---|
13 | %SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
|
---|
14 | %PRTOOLS, DATASETS
|
---|
15 |
|
---|
16 | % Copyright: R.P.W. Duin
|
---|
17 |
|
---|
18 | function [a,b] = imsegment
|
---|
19 |
|
---|
20 | [a,b] = pr_download_uci('Image+Segmentation',{'segmentation.data','segmentation.test'},[],[],[],[5 5],[],[],1);
|
---|
21 | a = setname(a,'Image Segmentation');
|
---|
22 | b = setname(b,'Image Segmentation');
|
---|
23 | if nargout < 2, a = [a;b]; end
|
---|
Note: See
TracBrowser
for help on using the repository browser.