source: prdatasets/yeast.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 964 bytes
Line 
1%YEAST Predicting the Cellular Localization Sites of Proteins
2%PRTools dataset import from UCI, 1484 objects, 8 features, 10 classes
3%
4%  A = YEAST
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/Yeast">related website</a>
9%for further information. Please make the appropriate references in
10%publications that make use of this dataset.
11%
12%The sequence names are stored as a second label list (see ADDLABELS) under
13%the name 'sequence'.
14%
15%SEE ALSO <a href="http://prtools.tudelft.nl/prtools/">PRTools Guide</a>, <a href="http://archive.ics.uci.edu/ml/">UCI Website</a>
16%PRTOOLS, DATASETS, SETFEATDOM, FEATTYPES, CAT2REAL
17
18% Copyright: R.P.W. Duin
19
20function a = yeast
21
22a = pr_download_uci('yeast',[],[],[],[],[],[],' ');
23a = feat2lab(a,1,'sequence');
24a = setname(a,'Protein Localization');
25
Note: See TracBrowser for help on using the repository browser.