source: prdatasets/soybean1.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 1.8 KB
Line 
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
11% Faculty EWI, Delft University of Technology
12% P.O. Box 5031, 2600 GA Delft, The Netherlands
13
14function a = soybean1
15
16a = pr_getdata;
17a = setname(a,'Large soybean dataset');
18a = setlablist(a,char(...
19    'diaporthe stem canker',...
20    'charcoal rot',...
21    'rhizoctonia root rot',...
22    'phytophthora rot',...
23    'brown stem rot',...
24    'powdery mildew',...
25    'downy mildew',...
26    'brown spot',...
27    'bacterial blight',...
28    'bacterial pustule',...
29    'purple seed stain',...
30    'anthracnose',...
31    'phyllosticta leaf spot',...
32    'alternarialeaf spot',...
33    'frog eye leaf spot',...
34    'diaporthe pod and stem blight',...
35    'cyst nematode',...
36    '2-4-d injury',...
37    'herbicide injury'));
38a = setfeatlab(a,char(...
39    'date',...
40    'plant stand',...
41    'precipitation',...
42    'temperature',...
43    'hail',...
44    'crop history',...
45    'area damaged',...
46    'severity',...
47    'seed treatment',...
48    'germination',...
49    'plant growth',...
50    'leaves',...
51    'leafspots halo',...
52    'leafspots marginal',...
53    'leafspot size',...
54    'leaf shread',...
55    'leaf malfunction',...
56    'leaf mildew',...
57    'stem',...
58    'lodging',...
59    'stem cankers',...
60    'canker lesion',...
61    'fruiting bodies',...
62    'external decay',...
63    'mycelium',...
64    'int discolor',...
65    'sclerotia',...
66    'fruit pods',...
67    'fruit spots',...
68    'seed',...
69    'mold growth',...
70    'seed discolor',...
71    'seed size',...
72    'shriveling',...
73    'roots'));
74   
75
Note: See TracBrowser for help on using the repository browser.