Rev | Line | |
---|
[80] | 1 | %SOYBEAN1 Large soybean dataset 266 objects with 35 features in 4 classes |
---|
| 2 | % |
---|
| 3 | % A = SOYBEAN1 |
---|
| 4 | % |
---|
| 5 | % Load the dataset in A. This is the large Soybean dataset from the UCI |
---|
| 6 | % Machine Learning Repository, //www.ics.uci.edu/~mlearn/MLRepository.html. |
---|
| 7 | % |
---|
| 8 | % See also DATASETS, PRDATASETS, SOYBEAN2 |
---|
| 9 | |
---|
| 10 | % Copyright: R.P.W. Duin, r.p.w.duin@prtools.org |
---|
| 11 | % Faculty EWI, Delft University of Technology |
---|
| 12 | % P.O. Box 5031, 2600 GA Delft, The Netherlands |
---|
| 13 | |
---|
| 14 | function a = soybean1 |
---|
| 15 | |
---|
| 16 | prdatasets(mfilename,1); |
---|
[81] | 17 | a = pr_dataset('soybean1'); |
---|
[80] | 18 | a = setname(a,'Large soybean dataset'); |
---|
[122] | 19 | a = setlablist(a,char(... |
---|
[80] | 20 | 'diaporthe stem canker',... |
---|
| 21 | 'charcoal rot',... |
---|
| 22 | 'rhizoctonia root rot',... |
---|
| 23 | 'phytophthora rot',... |
---|
| 24 | 'brown stem rot',... |
---|
| 25 | 'powdery mildew',... |
---|
| 26 | 'downy mildew',... |
---|
| 27 | 'brown spot',... |
---|
| 28 | 'bacterial blight',... |
---|
| 29 | 'bacterial pustule',... |
---|
| 30 | 'purple seed stain',... |
---|
| 31 | 'anthracnose',... |
---|
| 32 | 'phyllosticta leaf spot',... |
---|
| 33 | 'alternarialeaf spot',... |
---|
| 34 | 'frog eye leaf spot',... |
---|
| 35 | 'diaporthe pod and stem blight',... |
---|
| 36 | 'cyst nematode',... |
---|
| 37 | '2-4-d injury',... |
---|
| 38 | 'herbicide injury')); |
---|
[122] | 39 | a = setfeatlab(a,char(... |
---|
[80] | 40 | 'date',... |
---|
| 41 | 'plant stand',... |
---|
| 42 | 'precipitation',... |
---|
| 43 | 'temperature',... |
---|
| 44 | 'hail',... |
---|
| 45 | 'crop history',... |
---|
| 46 | 'area damaged',... |
---|
| 47 | 'severity',... |
---|
| 48 | 'seed treatment',... |
---|
| 49 | 'germination',... |
---|
| 50 | 'plant growth',... |
---|
| 51 | 'leaves',... |
---|
| 52 | 'leafspots halo',... |
---|
| 53 | 'leafspots marginal',... |
---|
| 54 | 'leafspot size',... |
---|
| 55 | 'leaf shread',... |
---|
| 56 | 'leaf malfunction',... |
---|
| 57 | 'leaf mildew',... |
---|
| 58 | 'stem',... |
---|
| 59 | 'lodging',... |
---|
| 60 | 'stem cankers',... |
---|
| 61 | 'canker lesion',... |
---|
| 62 | 'fruiting bodies',... |
---|
| 63 | 'external decay',... |
---|
| 64 | 'mycelium',... |
---|
| 65 | 'int discolor',... |
---|
| 66 | 'sclerotia',... |
---|
| 67 | 'fruit pods',... |
---|
| 68 | 'fruit spots',... |
---|
| 69 | 'seed',... |
---|
| 70 | 'mold growth',... |
---|
| 71 | 'seed discolor',... |
---|
| 72 | 'seed size',... |
---|
| 73 | 'shriveling',... |
---|
| 74 | 'roots')); |
---|
| 75 | |
---|
| 76 | |
---|
Note: See
TracBrowser
for help on using the repository browser.