Line | |
---|
1 | %SOYBEAN2 Small soybean dataset 136 objects with 35 features in 4 classes |
---|
2 | % |
---|
3 | % A = SOYBEAN2 |
---|
4 | % |
---|
5 | % Load the dataset in A. This is the small Soybean dataset from the UCI |
---|
6 | % Machine Learning Repository, //www.ics.uci.edu/~mlearn/MLRepository.html. |
---|
7 | % |
---|
8 | % See also DATASETS, PRDATASETS, SOYBEAN1 |
---|
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 = soybean2 |
---|
15 | |
---|
16 | prdatasets(mfilename,1); |
---|
17 | a = pr_dataset('soybean2'); |
---|
18 | a = setname(a,'Small soybean dataset'); |
---|
19 | a = setlablist(a,str2mat(... |
---|
20 | 'phytophthora rot',... |
---|
21 | 'brown spot',... |
---|
22 | 'alternarialeaf spot',... |
---|
23 | 'frog eye leaf spot')); |
---|
24 | a = setfeatlab(a,str2mat(... |
---|
25 | 'date',... |
---|
26 | 'plant stand',... |
---|
27 | 'precipitation',... |
---|
28 | 'temperature',... |
---|
29 | 'hail',... |
---|
30 | 'crop history',... |
---|
31 | 'area damaged',... |
---|
32 | 'severity',... |
---|
33 | 'seed treatment',... |
---|
34 | 'germination',... |
---|
35 | 'plant growth',... |
---|
36 | 'leaves',... |
---|
37 | 'leafspots halo',... |
---|
38 | 'leafspots marginal',... |
---|
39 | 'leafspot size',... |
---|
40 | 'leaf shread',... |
---|
41 | 'leaf malfunction',... |
---|
42 | 'leaf mildew',... |
---|
43 | 'stem',... |
---|
44 | 'lodging',... |
---|
45 | 'stem cankers',... |
---|
46 | 'canker lesion',... |
---|
47 | 'fruiting bodies',... |
---|
48 | 'external decay',... |
---|
49 | 'mycelium',... |
---|
50 | 'int discolor',... |
---|
51 | 'sclerotia',... |
---|
52 | 'fruit pods',... |
---|
53 | 'fruit spots',... |
---|
54 | 'seed',... |
---|
55 | 'mold growth',... |
---|
56 | 'seed discolor',... |
---|
57 | 'seed size',... |
---|
58 | 'shriveling',... |
---|
59 | 'roots')); |
---|
60 | |
---|
Note: See
TracBrowser
for help on using the repository browser.