source: prdatasets/soybean2.m

Last change on this file was 150, checked in by bduin, 5 years ago
File size: 1.4 KB
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
11% Faculty EWI, Delft University of Technology
12% P.O. Box 5031, 2600 GA Delft, The Netherlands
13
14function a = soybean2
15
16a = pr_getdata;
17a = setname(a,'Small soybean dataset');
18a = setlablist(a,char(...
19    'phytophthora rot',...
20    'brown spot',...
21    'alternarialeaf spot',...
22    'frog eye leaf spot'));
23a = setfeatlab(a,char(...
24    'date',...
25    'plant stand',...
26    'precipitation',...
27    'temperature',...
28    'hail',...
29    'crop history',...
30    'area damaged',...
31    'severity',...
32    'seed treatment',...
33    'germination',...
34    'plant growth',...
35    'leaves',...
36    'leafspots halo',...
37    'leafspots marginal',...
38    'leafspot size',...
39    'leaf shread',...
40    'leaf malfunction',...
41    'leaf mildew',...
42    'stem',...
43    'lodging',...
44    'stem cankers',...
45    'canker lesion',...
46    'fruiting bodies',...
47    'external decay',...
48    'mycelium',...
49    'int discolor',...
50    'sclerotia',...
51    'fruit pods',...
52    'fruit spots',...
53    'seed',...
54    'mold growth',...
55    'seed discolor',...
56    'seed size',...
57    'shriveling',...
58    'roots'));
59   
Note: See TracBrowser for help on using the repository browser.