Last change
on this file since 142 was
142,
checked in by bduin, 5 years ago
|
Updated collection of datasets
|
File size:
1.1 KB
|
Rev | Line | |
---|
[80] | 1 | %ECOLI 336 objects with 7 features in 8 classes |
---|
| 2 | % |
---|
| 3 | % X = ECOLI |
---|
| 4 | % |
---|
| 5 | % Predict the localization site of protein in a cell, by Kenta Nakai |
---|
| 6 | % Institue of Molecular and Cellular Biology Osaka, University |
---|
| 7 | % This is the 'Ecoli' dataset of the UCI Machine Learning Repository, |
---|
| 8 | % //www.ics.uci.edu/~mlearn/MLRepository.html |
---|
| 9 | |
---|
[137] | 10 | function a = ecoli |
---|
[80] | 11 | |
---|
[137] | 12 | a = pr_loadmatfile; |
---|
| 13 | if isempty(a) |
---|
| 14 | opt.labfeat = 8; |
---|
| 15 | opt.featnames = {'mcg' 'gvh' 'lip' 'chg' 'aac' 'alm1' 'alm2'}; |
---|
| 16 | opt.classnames = {'cytoplasm' 'inner membrane without signal sequence' ... |
---|
| 17 | 'periplasm' 'inner membrane, uncleavable signal sequence' ... |
---|
| 18 | 'outer membrane' 'outer membrane lipoprotein' ... |
---|
| 19 | 'inner membrane lipoprotein' 'inner membrane, cleavable signal sequence'}; |
---|
| 20 | opt.desc='The Ecoli database from UCI. Goal is to Predict the localization site of protein in a cell, by Kenta Nakai Institue of Molecular and Cellular Biology Osaka, University.'; |
---|
| 21 | opt.link = 'ftp://ftp.ics.uci.edu/pub/machine-learning-databases/ecoli/'; |
---|
[142] | 22 | opt.dsetname = 'Ecoli Dataset'; |
---|
[137] | 23 | a = pr_download('http://prtools.tudelft.nl/prdatasets/ecoli.dat',[],opt); |
---|
| 24 | end |
---|
[80] | 25 | |
---|
| 26 | return |
---|
Note: See
TracBrowser
for help on using the repository browser.