Assignment 2

Downloads

Algorithm & Analysis

I analyzed the abalone data using decision trees built using Weka’s implementation of C4.5, with the intent of being able to predict the number of rings on an abalone shell from other characteristics, given data from the University of California, Irvine.

Decision trees yield discrete values, not numbers. So, in order to train the tree, I algorithmically binned the ring counts such that each bin had an approximately equal number of samples.

Since the number of rings is a fundamentally numeric attribute, I concluded that root-mean-square error (RMS error) was the best method for calculating accuracy. However, a decision tree cannot give the numeric values necessary for such a metric. Therefore, in order to test accuracy on each decision tree, I converted the bins back into numbers by considering a classification of a sample into an interval as the midpoint of the interval. If either bound of the interval was infinite, I used the other bound instead. So, if a sample had 8 rings and was classified as having a number of rings in [8.5, 9.5), the predicted number of rings would be considered to be 9; thus, there would be an error of -1. This would be squared and averaged with other such squared errors, and the total error would be the square root of that.

Training and testing was done by training on a random 90% of the data and testing on the remaining 10%. This may be iterated an arbitrary number of times to yield different, possibly better, trees. While training, I allowed the decision tree engine (J48) to prune to reduce error. This seems to have worked.

 

Table 1 Results of testing 300 iterations of training and testing with random sets with a 90/10 split
Bins Average RMS Error Sample Standard Deviation
2 3.2332093745 0.1682421685
3 2.8625707597 0.1583609278
4 2.6012545937 0.1620899615
5 2.6085169047 0.1643659917
6 2.5476391545 0.1246571898
7 2.5285629343 0.1523100806
8 2.4876458462 0.1415066316
9 2.5328953833 0.1478735303
10 2.5850855382 0.1539681321
11 2.6385904281 0.1512146224
12 2.6373574411 0.1419340222
13 text-align: left; 2.6834302081 0.1811795605
14 2.6658865147 0.1590587788
15 2.6636347945 0.1725667781
16 2.6488776422 0.161201125
17 2.6486083691 0.1829259814
18 2.6226892908 0.1777683565
19 2.6352686808 0.1581677756
20 2.6458737015 0.1672765751
21 2.6156310484 0.1524668947
22 2.6376640876 0.1518566427
23 2.636344432 0.1606466731
24 2.6257048279 0.1413820279
25 2.6366155277 0.1659916566
26 2.6103144413 0.1660024481

In order to maximize performance, I searched for the number of bins that would, yield the least error averaged over multiple iterations of training and testing. In order to do this, I first ran a small (20) number of iterations with each of the possible number of bins. The difference between the error of the best (8 bins) and second best (6 bins) was ~0.03, while the sample standard deviation was near 0.14. In order to get means that could be statistically distinguished with over 99.7% confidence, I needed to have enough samples that the standard deviation of the means was less than one third of difference the two lowest means. Since the standard deviation of the mean is the sample standard deviation divided by the square root of the number of samples, the number of required observations was the solution to , that is, 196. However, I did the math wrong, but that was okay, as I decided to use 300 trials, which was better. Doing 300 iterations resulted in Table 1, wherein it can be seen that 8 is the best number of bins. As such, it can be stated with better than 0.9999999 confidence that this is the best value.

Results

 

shell weight <= 0.1435
|   diameter <= 0.22: ’(-inf-6.5]’ (132.0/15.0)
|   diameter > 0.22
|   |   sex = M
|   |   |   shell weight <= 0.056: ’(-inf-6.5]’ (12.0/8.0)
|   |   |   shell weight > 0.056
|   |   |   |   shucked weight <= 0.1705
|   |   |   |   |   diameter <= 0.325
|   |   |   |   |   |   height <= 0.115
|   |   |   |   |   |   |   whole weight <= 0.1855: ’(7.5-8.5]’ (6.0/4.0)
|   |   |   |   |   |   |   whole weight > 0.1855
|   |   |   |   |   |   |   |   length <= 0.335: ’(6.5-7.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   length > 0.335
|   |   |   |   |   |   |   |   |   shell weight <= 0.0755
|   |   |   |   |   |   |   |   |   |   shucked weight <= 0.082: ’(8.5-9.5]’ (7.0/2.0)
|   |   |   |   |   |   |   |   |   |   shucked weight > 0.082: ’(-inf-6.5]’ (9.0/5.0)
|   |   |   |   |   |   |   |   |   shell weight > 0.0755
|   |   |   |   |   |   |   |   |   |   height <= 0.1
|   |   |   |   |   |   |   |   |   |   |   diameter <= 0.275: ’(6.5-7.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   diameter > 0.275
|   |   |   |   |   | shell weight <= 0.1435
|   diameter <= 0.22: ’(-inf-6.5]’ (132.0/15.0)
|   diameter > 0.22
|   |   sex = M
|   |   |   shell weight <= 0.056: ’(-inf-6.5]’ (12.0/8.0)
|   |   |   shell weight > 0.056
|   |   |   |   shucked weight <= 0.1705
|   |   |   |   |   diameter <= 0.325
|   |   |   |   |   |   height <= 0.115
|   |   |   |   |   |   |   whole weight <= 0.1855: ’(7.5-8.5]’ (6.0/4.0)
|   |   |   |   |   |   |   whole weight > 0.1855
|   |   |   |   |   |   |   |   length <= 0.335: ’(6.5-7.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   length > 0.335
|   |   |   |   |   |   |   |   |   shell weight <= 0.0755
|   |   |   |   |   |   |   |   |   |   shucked weight <= 0.082: ’(8.5-9.5]’ (7.0/2.0)
|   |   |   |   |   |   |   |   |   |   shucked weight > 0.082: ’(-inf-6.5]’ (9.0/5.0)
|   |   |   |   |   |   |   |   |   shell weight > 0.0755
|   |   |   |   |   |   |   |   |   |   height <= 0.1
|   |   |   |   |   |   |   |   |   |   |   diameter <= 0.275: ’(6.5-7.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   diameter > 0.275
|   |   |   |   |   |   |   |   |   |   |   |   length <= 0.41: ’(8.5-9.5]’ (6.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   length > 0.41: ’(6.5-7.5]’ (4.0/2.0)
|   |   |   |   |   |   |   |   |   |   height > 0.1: ’(7.5-8.5]’ (4.0/2.0)
|   |   |   |   |   |   height > 0.115: ’(8.5-9.5]’ (6.0/4.0)
|   |   |   |   |   diameter > 0.325: ’(8.5-9.5]’ (8.0/4.0)
|   |   |   |   shucked weight > 0.1705: ’(7.5-8.5]’ (35.0/20.0)
|   |   sex = F
|   |   |   diameter <= 0.295
|   |   |   |   shell weight <= 0.073: ’(-inf-6.5]’ (10.0/6.0)
|   |   |   |   shell weight > 0.073
|   |   |   |   |   shucked weight <= 0.1075: ’(9.5-10.5]’ (4.0)
|   |   |   |   |   shucked weight > 0.1075: ’(6.5-7.5]’ (3.0)
|   |   |   diameter > 0.295
|   |   |   |   shucked weight <= 0.194
|   |   |   |   |   shell weight <= 0.0985
|   |   |   |   |   |   viscera weight <= 0.057: ’(7.5-8.5]’ (2.0)
|   |   |   |   |   |   viscera weight > 0.057: ’(11.5-13.5]’ (5.0/1.0)
|   |   |   |   |   shell weight > 0.0985
|   |   |   |   |   |   length <= 0.42: ’(9.5-10.5]’ (14.0/9.0)
|   |   |   |   |   |   length > 0.42
|   |   |   |   |   |   |   shucked weight <= 0.1565: ’(7.5-8.5]’ (11.0/8.0)
|   |   |   |   |   |   |   shucked weight > 0.1565
|   |   |   |   |   |   |   |   length <= 0.45
|   |   |   |   |   |   |   |   |   shell weight <= 0.1295: ’(8.5-9.5]’ (6.0)
|   |   |   |   |   |   |   |   |   shell weight > 0.1295: ’(10.5-11.5]’ (6.0/3.0)
|   |   |   |   |   |   |   |   length > 0.45: ’(7.5-8.5]’ (6.0/3.0)
|   |   |   |   shucked weight > 0.194
|   |   |   |   |   viscera weight <= 0.1185: ’(-inf-6.5]’ (10.0/5.0)
|   |   |   |   |   viscera weight > 0.1185: ’(9.5-10.5]’ (4.0/2.0)
|   |   sex = I
|   |   |   shell weight <= 0.0705
|   |   |   |   shucked weight <= 0.0635
|   |   |   |   |   shell weight <= 0.052: ’(-inf-6.5]’ (21.0/11.0)
|   |   |   |   |   shell weight > 0.052
|   |   |   |   |   |   whole weight <= 0.167: ’(7.5-8.5]’ (3.0/1.0)
|   |   |   |   |   |   whole weight > 0.167: ’(6.5-7.5]’ (2.0/1.0)
|   |   |   |   shucked weight > 0.0635
|   |   |   |   |   viscera weight <= 0.033: ’(-inf-6.5]’ (15.0/1.0)
|   |   |   |   |   viscera weight > 0.033
|   |   |   |   |   |   shell weight <= 0.0605
|   |   |   |   |   |   |   length <= 0.3: ’(-inf-6.5]’ (2.0/1.0)
|   |   |   |   |   |   |   length > 0.3
|   |   |   |   |   |   |   |   diameter <= 0.25: ’(6.5-7.5]’ (16.0/6.0)
|   |   |   |   |   |   |   |   diameter > 0.25
|   |   |   |   |   |   |   |   |   shell weight <= 0.06
|   |   |   |   |   |   |   |   |   |   whole weight <= 0.1925: ’(-inf-6.5]’ (10.0/1.0)
|   |   |   |   |   |   |   |   |   |   whole weight > 0.1925
|   |   |   |   |   |   |   |   |   |   |   length <= 0.335: ’(6.5-7.5]’ (2.0)
|   |   |   |   |   |   |   |   |   |   |   length > 0.335: ’(-inf-6.5]’ (11.0/2.0)
|   |   |   |   |   |   |   |   |   shell weight > 0.06: ’(6.5-7.5]’ (3.0)
|   |   |   |   |   |   shell weight > 0.0605: ’(-inf-6.5]’ (47.0/23.0)
|   |   |   shell weight > 0.0705
|   |   |   |   diameter <= 0.275
|   |   |   |   |   diameter <= 0.245: ’(-inf-6.5]’ (3.0)
|   |   |   |   |   diameter > 0.245
|   |   |   |   |   |   diameter <= 0.27: ’(6.5-7.5]’ (8.0/4.0)
|   |   |   |   |   |   diameter > 0.27
|   |   |   |   |   |   |   length <= 0.365: ’(6.5-7.5]’ (2.0)
|   |   |   |   |   |   |   length > 0.365: ’(-inf-6.5]’ (5.0/1.0)
|   |   |   |   diameter > 0.275
|   |   |   |   |   viscera weight <= 0.1155
|   |   |   |   |   |   shell weight <= 0.119
|   |   |   |   |   |   |   shell weight <= 0.11
|   |   |   |   |   |   |   |   diameter <= 0.285
|   |   |   |   |   |   |   |   |   diameter <= 0.28: ’(7.5-8.5]’ (5.0/3.0)
|   |   |   |   |   |   |   |   |   diameter > 0.28: ’(6.5-7.5]’ (7.0/2.0)
|   |   |   |   |   |   |   |   diameter > 0.285
|   |   |   |   |   |   |   |   |   whole weight <= 0.258: ’(6.5-7.5]’ (9.0/4.0)
|   |   |   |   |   |   |   |   |   whole weight > 0.258
|   |   |   |   |   |   |   |   |   |   height <= 0.115
|   |   |   |   |   |   |   |   |   |   |   shell weight <= 0.0945
|   |   |   |   |   |   |   |   |   |   |   |   whole weight <= 0.347
|   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.1
|   |   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.095
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.085: ’(6.5-7.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.085
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.42: ’(-inf-6.5]’ (20.0/11.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.42: ’(6.5-7.5]’ (2.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.095
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter <= 0.305: ’(6.5-7.5]’ (7.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter > 0.305: ’(-inf-6.5]’ (4.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.1
|   |   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.395: ’(7.5-8.5]’ (4.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.395: ’(-inf-6.5]’ (5.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   |   whole weight > 0.347: ’(-inf-6.5]’ (7.0)
|   |   |   |   |   |   |   |   |   |   |   shell weight > 0.0945
|   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.124: ’(8.5-9.5]’ (5.0/3.0)
|   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.124
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.227
|   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter <= 0.33
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.09: ’(6.5-7.5]’ (5.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.09
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   whole weight <= 0.4075
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter <= 0.315: ’(7.5-8.5]’ (9.0/5.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter > 0.315
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.1: ’(6.5-7.5]’ (6.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.1
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.171: ’(7.5-8.5]’ (12.0/7.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.171: ’(6.5-7.5]’ (4.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   whole weight > 0.4075: ’(-inf-6.5]’ (3.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter > 0.33
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.44: ’(6.5-7.5]’ (5.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.44: ’(7.5-8.5]’ (7.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.227: ’(-inf-6.5]’ (3.0)
|   |   |   |   |   |   |   |   |   |   height > 0.115
|   |   |   |   |   |   |   |   |   |   |   viscera weight <= 0.069: ’(7.5-8.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   viscera weight > 0.069: ’(6.5-7.5]’ (5.0)
|   |   |   |   |   |   |   shell weight > 0.11
|   |   |   |   |   |   |   |   height <= 0.11
|   |   |   |   |   |   |   |   |   diameter <= 0.34
|   |   |   |   |   |   |   |   |   |   diameter <= 0.335: ’(6.5-7.5]’ (11.0/4.0)
|   |   |   |   |   |   |   |   |   |   diameter > 0.335: ’(7.5-8.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   diameter > 0.34: ’(6.5-7.5]’ (6.0/1.0)
|   |   |   |   |   |   |   |   height > 0.11: ’(-inf-6.5]’ (7.0/4.0)
|   |   |   |   |   |   shell weight > 0.119: ’(7.5-8.5]’ (62.0/35.0)
|   |   |   |   |   viscera weight > 0.1155
|   |   |   |   |   |   height <= 0.105: ’(-inf-6.5]’ (4.0/3.0)
|   |   |   |   |   |   height > 0.105: ’(7.5-8.5]’ (13.0/9.0)
shell weight > 0.1435
|   shell weight <= 0.2895
|   |   shell weight <= 0.2335
|   |   |   shucked weight <= 0.3345
|   |   |   |   sex = M
|   |   |   |   |   shell weight <= 0.182
|   |   |   |   |   |   diameter <= 0.36: ’(10.5-11.5]’ (20.0/14.0)
|   |   |   |   |   |   diameter > 0.36
|   |   |   |   |   |   |   height <= 0.135
|   |   |   |   |   |   |   |   length <= 0.46: ’(9.5-10.5]’ (5.0/2.0)
|   |   |   |   |   |   |   |   length > 0.46
|   |   |   |   |   |   |   |   |   shell weight <= 0.1785
|   |   |   |   |   |   |   |   |   |   viscera weight <= 0.102: ’(7.5-8.5]’ (5.0)
|   |   |   |   |   |   |   |   |   |   viscera weight > 0.102
|   |   |   |   |   |   |   |   |   |   |   length <= 0.515
|   |   |   |   |   |   |   |   |   |   |   |   height <= 0.125
|   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.495
|   |   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.12: ’(7.5-8.5]’ (4.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.12: ’(8.5-9.5]’ (3.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.495: ’(8.5-9.5]’ (9.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   |   height > 0.125: ’(9.5-10.5]’ (9.0/6.0)
|   |   |   |   |   |   |   |   |   |   |   length > 0.515: ’(7.5-8.5]’ (7.0/3.0)
|   |   |   |   |   |   |   |   |   shell weight > 0.1785: ’(6.5-7.5]’ (4.0/2.0)
|   |   |   |   |   |   |   height > 0.135: ’(8.5-9.5]’ (4.0/2.0)
|   |   |   |   |   shell weight > 0.182
|   |   |   |   |   |   length <= 0.505
|   |   |   |   |   |   |   length <= 0.46: ’(8.5-9.5]’ (8.0/4.0)
|   |   |   |   |   |   |   length > 0.46
|   |   |   |   |   |   |   |   length <= 0.485: ’(9.5-10.5]’ (8.0/5.0)
|   |   |   |   |   |   |   |   length > 0.485: ’(13.5-inf)’ (19.0/12.0)
|   |   |   |   |   |   length > 0.505: ’(9.5-10.5]’ (20.0/13.0)
|   |   |   |   sex = F
|   |   |   |   |   diameter <= 0.325: ’(6.5-7.5]’ (3.0)
|   |   |   |   |   diameter > 0.325
|   |   |   |   |   |   viscera weight <= 0.1105: ’(9.5-10.5]’ (20.0/15.0)
|   |   |   |   |   |   viscera weight > 0.1105
|   |   |   |   |   |   |   shell weight <= 0.2245
|   |   |   |   |   |   |   |   height <= 0.115: ’(8.5-9.5]’ (9.0/5.0)
|   |   |   |   |   |   |   |   height > 0.115
|   |   |   |   |   |   |   |   |   height <= 0.165
|   |   |   |   |   |   |   |   |   |   diameter <= 0.415: ’(9.5-10.5]’ (72.0/56.0)
|   |   |   |   |   |   |   |   |   |   diameter > 0.415: ’(7.5-8.5]’ (12.0/6.0)
|   |   |   |   |   |   |   |   |   height > 0.165: ’(10.5-11.5]’ (4.0/2.0)
|   |   |   |   |   |   |   shell weight > 0.2245: ’(11.5-13.5]’ (8.0/3.0)
|   |   |   |   sex = I
|   |   |   |   |   whole weight <= 0.6255
|   |   |   |   |   |   length <= 0.45: ’(11.5-13.5]’ (7.0/5.0)
|   |   |   |   |   |   length > 0.45
|   |   |   |   |   |   |   shucked weight <= 0.2455
|   |   |   |   |   |   |   |   height <= 0.115: ’(7.5-8.5]’ (20.0/10.0)
|   |   |   |   |   |   |   |   height > 0.115
|   |   |   |   |   |   |   |   |   height <= 0.125
|   |   |   |   |   |   |   |   |   |   height <= 0.12: ’(7.5-8.5]’ (12.0/7.0)
|   |   |   |   |   |   |   |   |   |   height > 0.12
|   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.2275: ’(7.5-8.5]’ (6.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.2275
|   |   |   |   |   |   |   |   |   |   |   |   viscera weight <= 0.1185: ’(8.5-9.5]’ (5.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   viscera weight > 0.1185: ’(7.5-8.5]’ (3.0)
|   |   |   |   |   |   |   |   |   height > 0.125
|   |   |   |   |   |   |   |   |   |   diameter <= 0.39
|   |   |   |   |   |   |   |   |   |   |   diameter <= 0.375
|   |   |   |   |   |   |   |   |   |   |   |   diameter <= 0.36: ’(8.5-9.5]’ (3.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   |   diameter > 0.36
|   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.49: ’(7.5-8.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.49: ’(8.5-9.5]’ (2.0)
|   |   |   |   |   |   |   |   |   |   |   diameter > 0.375: ’(7.5-8.5]’ (9.0/5.0)
|   |   |   |   |   |   |   |   |   |   diameter > 0.39
|   |   |   |   |   |   |   |   |   |   |   diameter <= 0.4: ’(8.5-9.5]’ (4.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   diameter > 0.4: ’(10.5-11.5]’ (4.0/1.0)
|   |   |   |   |   |   |   shucked weight > 0.2455
|   |   |   |   |   |   |   |   shell weight <= 0.194: ’(7.5-8.5]’ (42.0/18.0)
|   |   |   |   |   |   |   |   shell weight > 0.194: ’(8.5-9.5]’ (2.0/1.0)
|   |   |   |   |   whole weight > 0.6255
|   |   |   |   |   |   shucked weight <= 0.276
|   |   |   |   |   |   |   shucked weight <= 0.2635: ’(9.5-10.5]’ (3.0/1.0)
|   |   |   |   |   |   |   shucked weight > 0.2635
|   |   |   |   |   |   |   |   length <= 0.535: ’(11.5-13.5]’ (4.0)
|   |   |   |   |   |   |   |   length > 0.535: ’(8.5-9.5]’ (2.0/1.0)
|   |   |   |   |   |   shucked weight > 0.276
|   |   |   |   |   |   |   height <= 0.135
|   |   |   |   |   |   |   |   height <= 0.125: ’(8.5-9.5]’ (6.0/3.0)
|   |   |   |   |   |   |   |   height > 0.125
|   |   |   |   |   |   |   |   |   height <= 0.13: ’(7.5-8.5]’ (5.0/2.0)
|   |   |   |   |   |   |   |   |   height > 0.13: ’(8.5-9.5]’ (7.0/1.0)
|   |   |   |   |   |   |   height > 0.135
|   |   |   |   |   |   |   |   length <= 0.55
|   |   |   |   |   |   |   |   |   length <= 0.53: ’(7.5-8.5]’ (6.0/3.0)
|   |   |   |   |   |   |   |   |   length > 0.53: ’(9.5-10.5]’ (6.0/1.0)
|   |   |   |   |   |   |   |   length > 0.55: ’(8.5-9.5]’ (4.0/1.0)
|   |   |   shucked weight > 0.3345
|   |   |   |   sex = M
|   |   |   |   |   shell weight <= 0.229: ’(8.5-9.5]’ (52.0/34.0)
|   |   |   |   |   shell weight > 0.229: ’(7.5-8.5]’ (5.0)
|   |   |   |   sex = F
|   |   |   |   |   diameter <= 0.465
|   |   |   |   |   |   height <= 0.165
|   |   |   |   |   |   |   shucked weight <= 0.389
|   |   |   |   |   |   |   |   viscera weight <= 0.1965: ’(8.5-9.5]’ (8.0)
|   |   |   |   |   |   |   |   viscera weight > 0.1965: ’(7.5-8.5]’ (3.0/1.0)
|   |   |   |   |   |   |   shucked weight > 0.389
|   |   |   |   |   |   |   |   diameter <= 0.425
|   |   |   |   |   |   |   |   |   height <= 0.135: ’(7.5-8.5]’ (7.0/1.0)
|   |   |   |   |   |   |   |   |   height > 0.135
|   |   |   |   |   |   |   |   |   |   height <= 0.145: ’(9.5-10.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   height > 0.145: ’(7.5-8.5]’ (2.0)
|   |   |   |   |   |   |   |   diameter > 0.425: ’(7.5-8.5]’ (17.0/9.0)
|   |   |   |   |   |   height > 0.165: ’(-inf-6.5]’ (2.0/1.0)
|   |   |   |   |   diameter > 0.465: ’(9.5-10.5]’ (2.0/1.0)
|   |   |   |   sex = I
|   |   |   |   |   diameter <= 0.445: ’(7.5-8.5]’ (25.0/11.0)
|   |   |   |   |   diameter > 0.445
|   |   |   |   |   |   viscera weight <= 0.1755: ’(9.5-10.5]’ (3.0/1.0)
|   |   |   |   |   |   viscera weight > 0.1755: ’(8.5-9.5]’ (2.0)
|   |   shell weight > 0.2335
|   |   |   shucked weight <= 0.379
|   |   |   |   length <= 0.53: ’(13.5-inf)’ (62.0/35.0)
|   |   |   |   length > 0.53
|   |   |   |   |   viscera weight <= 0.1485
|   |   |   |   |   |   whole weight <= 0.7265: ’(8.5-9.5]’ (4.0/1.0)
|   |   |   |   |   |   whole weight > 0.7265: ’(9.5-10.5]’ (12.0/3.0)
|   |   |   |   |   viscera weight > 0.1485
|   |   |   |   |   |   viscera weight <= 0.179
|   |   |   |   |   |   |   sex = M
|   |   |   |   |   |   |   |   length <= 0.56: ’(11.5-13.5]’ (10.0/2.0)
|   |   |   |   |   |   |   |   length > 0.56
|   |   |   |   |   |   |   |   |   height <= 0.15: ’(13.5-inf)’ (3.0)
|   |   |   |   |   |   |   |   |   height > 0.15: ’(10.5-11.5]’ (3.0/1.0)
|   |   |   |   |   |   |   sex = F
|   |   |   |   |   |   |   |   viscera weight <= 0.1625
|   |   |   |   |   |   |   |   |   height <= 0.145: ’(8.5-9.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   height > 0.145: ’(13.5-inf)’ (3.0)
|   |   |   |   |   |   |   |   viscera weight > 0.1625
|   |   |   |   |   |   |   |   |   whole weight <= 0.8665
|   |   |   |   |   |   |   |   |   |   diameter <= 0.425: ’(9.5-10.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   |   diameter > 0.425
|   |   |   |   |   |   |   |   |   |   |   whole weight <= 0.84: ’(9.5-10.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   whole weight > 0.84: ’(11.5-13.5]’ (4.0)
|   |   |   |   |   |   |   |   |   whole weight > 0.8665: ’(13.5-inf)’ (2.0)
|   |   |   |   |   |   |   sex = I: ’(8.5-9.5]’ (12.0/8.0)
|   |   |   |   |   |   viscera weight > 0.179: ’(9.5-10.5]’ (56.0/41.0)
|   |   |   shucked weight > 0.379
|   |   |   |   shell weight <= 0.239: ’(8.5-9.5]’ (19.0/6.0)
|   |   |   |   shell weight > 0.239
|   |   |   |   |   sex = M
|   |   |   |   |   |   viscera weight <= 0.286
|   |   |   |   |   |   |   shell weight <= 0.248
|   |   |   |   |   |   |   |   length <= 0.565: ’(8.5-9.5]’ (3.0)
|   |   |   |   |   |   |   |   length > 0.565: ’(7.5-8.5]’ (10.0/4.0)
|   |   |   |   |   |   |   shell weight > 0.248
|   |   |   |   |   |   |   |   height <= 0.16
|   |   |   |   |   |   |   |   |   diameter <= 0.44: ’(7.5-8.5]’ (13.0/8.0)
|   |   |   |   |   |   |   |   |   diameter > 0.44
|   |   |   |   |   |   |   |   |   |   height <= 0.13: ’(7.5-8.5]’ (4.0/1.0)
|   |   |   |   |   |   |   |   |   |   height > 0.13
|   |   |   |   |   |   |   |   |   |   |   length <= 0.565: ’(10.5-11.5]’ (4.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   length > 0.565
|   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.458
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.4185: ’(9.5-10.5]’ (10.0/3.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.4185
|   |   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.15
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   shell weight <= 0.2765: ’(8.5-9.5]’ (4.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   shell weight > 0.2765: ’(10.5-11.5]’ (2.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.15: ’(10.5-11.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.458
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.4755: ’(6.5-7.5]’ (3.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.4755
|   |   |   |   |   |   |   |   |   |   |   |   |   |   whole weight <= 1.189
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter <= 0.475: ’(8.5-9.5]’ (18.0/9.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter > 0.475: ’(7.5-8.5]’ (3.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   whole weight > 1.189: ’(8.5-9.5]’ (5.0/2.0)
|   |   |   |   |   |   |   |   height > 0.16: ’(8.5-9.5]’ (14.0/6.0)
|   |   |   |   |   |   viscera weight > 0.286
|   |   |   |   |   |   |   length <= 0.62: ’(9.5-10.5]’ (3.0/1.0)
|   |   |   |   |   |   |   length > 0.62: ’(10.5-11.5]’ (2.0)
|   |   |   |   |   sex = F
|   |   |   |   |   |   shell weight <= 0.2845
|   |   |   |   |   |   |   viscera weight <= 0.2645
|   |   |   |   |   |   |   |   whole weight <= 1.0765
|   |   |   |   |   |   |   |   |   height <= 0.13: ’(10.5-11.5]’ (6.0/3.0)
|   |   |   |   |   |   |   |   |   height > 0.13
|   |   |   |   |   |   |   |   |   |   diameter <= 0.46
|   |   |   |   |   |   |   |   |   |   |   diameter <= 0.455: ’(8.5-9.5]’ (24.0/14.0)
|   |   |   |   |   |   |   |   |   |   |   diameter > 0.455: ’(7.5-8.5]’ (9.0/4.0)
|   |   |   |   |   |   |   |   |   |   diameter > 0.46
|   |   |   |   |   |   |   |   |   |   |   height <= 0.16
|   |   |   |   |   |   |   |   |   |   |   |   shell weight <= 0.2625: ’(10.5-11.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   shell weight > 0.2625
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.4635: ’(9.5-10.5]’ (4.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.4635: ’(10.5-11.5]’ (4.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   height > 0.16: ’(8.5-9.5]’ (3.0/2.0)
|   |   |   |   |   |   |   |   whole weight > 1.0765
|   |   |   |   |   |   |   |   |   shucked weight <= 0.534: ’(11.5-13.5]’ (3.0)
|   |   |   |   |   |   |   |   |   shucked weight > 0.534: ’(7.5-8.5]’ (7.0/4.0)
|   |   |   |   |   |   |   viscera weight > 0.2645: ’(9.5-10.5]’ (4.0)
|   |   |   |   |   |   shell weight > 0.2845: ’(8.5-9.5]’ (16.0/6.0)
|   |   |   |   |   sex = I: ’(8.5-9.5]’ (20.0/13.0)
|   shell weight > 0.2895
|   |   shucked weight <= 0.414
|   |   |   length <= 0.495: ’(-inf-6.5]’ (2.0)
|   |   |   length > 0.495
|   |   |   |   shell weight <= 0.356
|   |   |   |   |   length <= 0.57
|   |   |   |   |   |   height <= 0.17: ’(13.5-inf)’ (37.0/17.0)
|   |   |   |   |   |   height > 0.17
|   |   |   |   |   |   |   sex = M
|   |   |   |   |   |   |   |   whole weight <= 0.8855: ’(9.5-10.5]’ (3.0/2.0)
|   |   |   |   |   |   |   |   whole weight > 0.8855: ’(13.5-inf)’ (8.0)
|   |   |   |   |   |   |   sex = F: ’(13.5-inf)’ (4.0)
|   |   |   |   |   |   |   sex = I: ’(13.5-inf)’ (0.0)
|   |   |   |   |   length > 0.57: ’(13.5-inf)’ (50.0/35.0)
|   |   |   |   shell weight > 0.356: ’(13.5-inf)’ (38.0/9.0)
|   |   shucked weight > 0.414
|   |   |   shell weight <= 0.4095
|   |   |   |   shell weight <= 0.314
|   |   |   |   |   shell weight <= 0.2905: ’(8.5-9.5]’ (7.0/2.0)
|   |   |   |   |   shell weight > 0.2905
|   |   |   |   |   |   diameter <= 0.44: ’(8.5-9.5]’ (5.0/2.0)
|   |   |   |   |   |   diameter > 0.44: ’(9.5-10.5]’ (91.0/60.0)
|   |   |   |   shell weight > 0.314
|   |   |   |   |   shucked weight <= 0.5115
|   |   |   |   |   |   shell weight <= 0.3775
|   |   |   |   |   |   |   viscera weight <= 0.303
|   |   |   |   |   |   |   |   shell weight <= 0.32
|   |   |   |   |   |   |   |   |   shucked weight <= 0.4995
|   |   |   |   |   |   |   |   |   |   shell weight <= 0.3185
|   |   |   |   |   |   |   |   |   |   |   length <= 0.605: ’(13.5-inf)’ (4.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   length > 0.605: ’(11.5-13.5]’ (8.0/5.0)
|   |   |   |   |   |   |   |   |   |   shell weight > 0.3185: ’(11.5-13.5]’ (4.0/1.0)
|   |   |   |   |   |   |   |   |   shucked weight > 0.4995: ’(9.5-10.5]’ (4.0/2.0)
|   |   |   |   |   |   |   |   shell weight > 0.32
|   |   |   |   |   |   |   |   |   shell weight <= 0.3605
|   |   |   |   |   |   |   |   |   |   height <= 0.17
|   |   |   |   |   |   |   |   |   |   |   shell weight <= 0.3255: ’(10.5-11.5]’ (7.0/3.0)
|   |   |   |   |   |   |   |   |   |   |   shell weight > 0.3255
|   |   |   |   |   |   |   |   |   |   |   |   diameter <= 0.48: ’(9.5-10.5]’ (14.0/6.0)
|   |   |   |   |   |   |   |   |   |   |   |   diameter > 0.48
|   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.165
|   |   |   |   |   |   |   |   |   |   |   |   |   |   shell weight <= 0.34: ’(13.5-inf)’ (8.0/4.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   shell weight > 0.34: ’(9.5-10.5]’ (19.0/11.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.165: ’(11.5-13.5]’ (6.0/3.0)
|   |   |   |   |   |   |   |   |   |   height > 0.17
|   |   |   |   |   |   |   |   |   |   |   sex = M: ’(9.5-10.5]’ (4.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   sex = F: ’(8.5-9.5]’ (11.0/7.0)
|   |   |   |   |   |   |   |   |   |   |   sex = I: ’(9.5-10.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   shell weight > 0.3605: ’(9.5-10.5]’ (7.0/3.0)
|   |   |   |   |   |   |   viscera weight > 0.303: ’(13.5-inf)’ (5.0/2.0)
|   |   |   |   |   |   shell weight > 0.3775: ’(11.5-13.5]’ (10.0/3.0)
|   |   |   |   |   shucked weight > 0.5115
|   |   |   |   |   |   shell weight <= 0.3595: ’(9.5-10.5]’ (111.0/78.0)
|   |   |   |   |   |   shell weight > 0.3595
|   |   |   |   |   |   |   shell weight <= 0.36: ’(10.5-11.5]’ (6.0/2.0)
|   |   |   |   |   |   |   shell weight > 0.36
|   |   |   |   |   |   |   |   sex = M
|   |   |   |   |   |   |   |   |   height <= 0.16
|   |   |   |   |   |   |   |   |   |   length <= 0.66: ’(8.5-9.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   length > 0.66: ’(10.5-11.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   height > 0.16
|   |   |   |   |   |   |   |   |   |   shell weight <= 0.389
|   |   |   |   |   |   |   |   |   |   |   viscera weight <= 0.22: ’(11.5-13.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   viscera weight > 0.22
|   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.7425
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.5455: ’(7.5-8.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.5455
|   |   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.685
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   shell weight <= 0.371: ’(9.5-10.5]’ (10.0/5.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   shell weight > 0.371
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.645: ’(9.5-10.5]’ (5.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.645: ’(8.5-9.5]’ (6.0/3.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.685: ’(11.5-13.5]’ (2.0)
|   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.7425: ’(10.5-11.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   shell weight > 0.389: ’(10.5-11.5]’ (24.0/16.0)
|   |   |   |   |   |   |   |   sex = F: ’(10.5-11.5]’ (48.0/33.0)
|   |   |   |   |   |   |   |   sex = I: ’(11.5-13.5]’ (2.0/1.0)
|   |   |   shell weight > 0.4095
|   |   |   |   shucked weight <= 0.639
|   |   |   |   |   viscera weight <= 0.324: ’(13.5-inf)’ (64.0/24.0)
|   |   |   |   |   viscera weight > 0.324
|   |   |   |   |   |   shell weight <= 0.4645
|   |   |   |   |   |   |   shell weight <= 0.4375: ’(9.5-10.5]’ (9.0/5.0)
|   |   |   |   |   |   |   shell weight > 0.4375: ’(11.5-13.5]’ (8.0/2.0)
|   |   |   |   |   |   shell weight > 0.4645: ’(13.5-inf)’ (17.0/2.0)
|   |   |   |   shucked weight > 0.639
|   |   |   |   |   height <= 0.22
|   |   |   |   |   |   shell weight <= 0.4535: ’(10.5-11.5]’ (48.0/28.0)
|   |   |   |   |   |   shell weight > 0.4535
|   |   |   |   |   |   |   shell weight <= 0.5675
|   |   |   |   |   |   |   |   sex = M
|   |   |   |   |   |   |   |   |   length <= 0.665: ’(9.5-10.5]’ (5.0/3.0)
|   |   |   |   |   |   |   |   |   length > 0.665
|   |   |   |   |   |   |   |   |   |   height <= 0.205: ’(11.5-13.5]’ (25.0/13.0)
|   |   |   |   |   |   |   |   |   |   height > 0.205: ’(10.5-11.5]’ (8.0/2.0)
|   |   |   |   |   |   |   |   sex = F
|   |   |   |   |   |   |   |   |   shucked weight <= 0.7055: ’(13.5-inf)’ (14.0/7.0)
|   |   |   |   |   |   |   |   |   shucked weight > 0.7055
|   |   |   |   |   |   |   |   |   |   height <= 0.18: ’(11.5-13.5]’ (8.0/5.0)
|   |   |   |   |   |   |   |   |   |   height > 0.18: ’(10.5-11.5]’ (23.0/11.0)
|   |   |   |   |   |   |   |   sex = I: ’(10.5-11.5]’ (0.0)
|   |   |   |   |   |   |   shell weight > 0.5675
|   |   |   |   |   |   |   |   shucked weight <= 1.109: ’(13.5-inf)’ (17.0/7.0)
|   |   |   |   |   |   |   |   shucked weight > 1.109: ’(10.5-11.5]’ (3.0)
|   |   |   |   |   height > 0.22: ’(13.5-inf)’ (12.0/4.0)
​
Number of Leaves  : 	225
​
Size of the tree : 	440
​
RMS error: 2.2760979789036715  |   |   |   |   |   |   length <= 0.41: ’(8.5-9.5]’ (6.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   length > 0.41: ’(6.5-7.5]’ (4.0/2.0)
|   |   |   |   |   |   |   |   |   |   height > 0.1: ’(7.5-8.5]’ (4.0/2.0)
|   |   |   |   |   |   height > 0.115: ’(8.5-9.5]’ (6.0/4.0)
|   |   |   |   |   diameter > 0.325: ’(8.5-9.5]’ (8.0/4.0)
|   |   |   |   shucked weight > 0.1705: ’(7.5-8.5]’ (35.0/20.0)
|   |   sex = F
|   |   |   diameter <= 0.295
|   |   |   |   shell weight <= 0.073: ’(-inf-6.5]’ (10.0/6.0)
|   |   |   |   shell weight > 0.073
|   |   |   |   |   shucked weight <= 0.1075: ’(9.5-10.5]’ (4.0)
|   |   |   |   |   shucked weight > 0.1075: ’(6.5-7.5]’ (3.0)
|   |   |   diameter > 0.295
|   |   |   |   shucked weight <= 0.194
|   |   |   |   |   shell weight <= 0.0985
|   |   |   |   |   |   viscera weight <= 0.057: ’(7.5-8.5]’ (2.0)
|   |   |   |   |   |   viscera weight > 0.057: ’(11.5-13.5]’ (5.0/1.0)
|   |   |   |   |   shell weight > 0.0985
|   |   |   |   |   |   length <= 0.42: ’(9.5-10.5]’ (14.0/9.0)
|   |   |   |   |   |   length > 0.42
|   |   |   |   |   |   |   shucked weight <= 0.1565: ’(7.5-8.5]’ (11.0/8.0)
|   |   |   |   |   |   |   shucked weight > 0.1565
|   |   |   |   |   |   |   |   length <= 0.45
|   |   |   |   |   |   |   |   |   shell weight <= 0.1295: ’(8.5-9.5]’ (6.0)
|   |   |   |   |   |   |   |   |   shell weight > 0.1295: ’(10.5-11.5]’ (6.0/3.0)
|   |   |   |   |   |   |   |   length > 0.45: ’(7.5-8.5]’ (6.0/3.0)
|   |   |   |   shucked weight > 0.194
|   |   |   |   |   viscera weight <= 0.1185: ’(-inf-6.5]’ (10.0/5.0)
|   |   |   |   |   viscera weight > 0.1185: ’(9.5-10.5]’ (4.0/2.0)
|   |   sex = I
|   |   |   shell weight <= 0.0705
|   |   |   |   shucked weight <= 0.0635
|   |   |   |   |   shell weight <= 0.052: ’(-inf-6.5]’ (21.0/11.0)
|   |   |   |   |   shell weight > 0.052
|   |   |   |   |   |   whole weight <= 0.167: ’(7.5-8.5]’ (3.0/1.0)
|   |   |   |   |   |   whole weight > 0.167: ’(6.5-7.5]’ (2.0/1.0)
|   |   |   |   shucked weight > 0.0635
|   |   |   |   |   viscera weight <= 0.033: ’(-inf-6.5]’ (15.0/1.0)
|   |   |   |   |   viscera weight > 0.033
|   |   |   |   |   |   shell weight <= 0.0605
|   |   |   |   |   |   |   length <= 0.3: ’(-inf-6.5]’ (2.0/1.0)
|   |   |   |   |   |   |   length > 0.3
|   |   |   |   |   |   |   |   diameter <= 0.25: ’(6.5-7.5]’ (16.0/6.0)
|   |   |   |   |   |   |   |   diameter > 0.25
|   |   |   |   |   |   |   |   |   shell weight <= 0.06
|   |   |   |   |   |   |   |   |   |   whole weight <= 0.1925: ’(-inf-6.5]’ (10.0/1.0)
|   |   |   |   |   |   |   |   |   |   whole weight > 0.1925
|   |   |   |   |   |   |   |   |   |   |   length <= 0.335: ’(6.5-7.5]’ (2.0)
|   |   |   |   |   |   |   |   |   |   |   length > 0.335: ’(-inf-6.5]’ (11.0/2.0)
|   |   |   |   |   |   |   |   |   shell weight > 0.06: ’(6.5-7.5]’ (3.0)
|   |   |   |   |   |   shell weight > 0.0605: ’(-inf-6.5]’ (47.0/23.0)
|   |   |   shell weight > 0.0705
|   |   |   |   diameter <= 0.275
|   |   |   |   |   diameter <= 0.245: ’(-inf-6.5]’ (3.0)
|   |   |   |   |   diameter > 0.245
|   |   |   |   |   |   diameter <= 0.27: ’(6.5-7.5]’ (8.0/4.0)
|   |   |   |   |   |   diameter > 0.27
|   |   |   |   |   |   |   length <= 0.365: ’(6.5-7.5]’ (2.0)
|   |   |   |   |   |   |   length > 0.365: ’(-inf-6.5]’ (5.0/1.0)
|   |   |   |   diameter > 0.275
|   |   |   |   |   viscera weight <= 0.1155
|   |   |   |   |   |   shell weight <= 0.119
|   |   |   |   |   |   |   shell weight <= 0.11
|   |   |   |   |   |   |   |   diameter <= 0.285
|   |   |   |   |   |   |   |   |   diameter <= 0.28: ’(7.5-8.5]’ (5.0/3.0)
|   |   |   |   |   |   |   |   |   diameter > 0.28: ’(6.5-7.5]’ (7.0/2.0)
|   |   |   |   |   |   |   |   diameter > 0.285
|   |   |   |   |   |   |   |   |   whole weight <= 0.258: ’(6.5-7.5]’ (9.0/4.0)
|   |   |   |   |   |   |   |   |   whole weight > 0.258
|   |   |   |   |   |   |   |   |   |   height <= 0.115
|   |   |   |   |   |   |   |   |   |   |   shell weight <= 0.0945
|   |   |   |   |   |   |   |   |   |   |   |   whole weight <= 0.347
|   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.1
|   |   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.095
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.085: ’(6.5-7.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.085
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.42: ’(-inf-6.5]’ (20.0/11.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.42: ’(6.5-7.5]’ (2.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.095
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter <= 0.305: ’(6.5-7.5]’ (7.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter > 0.305: ’(-inf-6.5]’ (4.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.1
|   |   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.395: ’(7.5-8.5]’ (4.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.395: ’(-inf-6.5]’ (5.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   |   whole weight > 0.347: ’(-inf-6.5]’ (7.0)
|   |   |   |   |   |   |   |   |   |   |   shell weight > 0.0945
|   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.124: ’(8.5-9.5]’ (5.0/3.0)
|   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.124
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.227
|   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter <= 0.33
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.09: ’(6.5-7.5]’ (5.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.09
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   whole weight <= 0.4075
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter <= 0.315: ’(7.5-8.5]’ (9.0/5.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter > 0.315
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.1: ’(6.5-7.5]’ (6.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.1
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.171: ’(7.5-8.5]’ (12.0/7.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.171: ’(6.5-7.5]’ (4.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   whole weight > 0.4075: ’(-inf-6.5]’ (3.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter > 0.33
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.44: ’(6.5-7.5]’ (5.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.44: ’(7.5-8.5]’ (7.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.227: ’(-inf-6.5]’ (3.0)
|   |   |   |   |   |   |   |   |   |   height > 0.115
|   |   |   |   |   |   |   |   |   |   |   viscera weight <= 0.069: ’(7.5-8.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   viscera weight > 0.069: ’(6.5-7.5]’ (5.0)
|   |   |   |   |   |   |   shell weight > 0.11
|   |   |   |   |   |   |   |   height <= 0.11
|   |   |   |   |   |   |   |   |   diameter <= 0.34
|   |   |   |   |   |   |   |   |   |   diameter <= 0.335: ’(6.5-7.5]’ (11.0/4.0)
|   |   |   |   |   |   |   |   |   |   diameter > 0.335: ’(7.5-8.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   diameter > 0.34: ’(6.5-7.5]’ (6.0/1.0)
|   |   |   |   |   |   |   |   height > 0.11: ’(-inf-6.5]’ (7.0/4.0)
|   |   |   |   |   |   shell weight > 0.119: ’(7.5-8.5]’ (62.0/35.0)
|   |   |   |   |   viscera weight > 0.1155
|   |   |   |   |   |   height <= 0.105: ’(-inf-6.5]’ (4.0/3.0)
|   |   |   |   |   |   height > 0.105: ’(7.5-8.5]’ (13.0/9.0)
shell weight > 0.1435
|   shell weight <= 0.2895
|   |   shell weight <= 0.2335
|   |   |   shucked weight <= 0.3345
|   |   |   |   sex = M
|   |   |   |   |   shell weight <= 0.182
|   |   |   |   |   |   diameter <= 0.36: ’(10.5-11.5]’ (20.0/14.0)
|   |   |   |   |   |   diameter > 0.36
|   |   |   |   |   |   |   height <= 0.135
|   |   |   |   |   |   |   |   length <= 0.46: ’(9.5-10.5]’ (5.0/2.0)
|   |   |   |   |   |   |   |   length > 0.46
|   |   |   |   |   |   |   |   |   shell weight <= 0.1785
|   |   |   |   |   |   |   |   |   |   viscera weight <= 0.102: ’(7.5-8.5]’ (5.0)
|   |   |   |   |   |   |   |   |   |   viscera weight > 0.102
|   |   |   |   |   |   |   |   |   |   |   length <= 0.515
|   |   |   |   |   |   |   |   |   |   |   |   height <= 0.125
|   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.495
|   |   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.12: ’(7.5-8.5]’ (4.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.12: ’(8.5-9.5]’ (3.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.495: ’(8.5-9.5]’ (9.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   |   height > 0.125: ’(9.5-10.5]’ (9.0/6.0)
|   |   |   |   |   |   |   |   |   |   |   length > 0.515: ’(7.5-8.5]’ (7.0/3.0)
|   |   |   |   |   |   |   |   |   shell weight > 0.1785: ’(6.5-7.5]’ (4.0/2.0)
|   |   |   |   |   |   |   height > 0.135: ’(8.5-9.5]’ (4.0/2.0)
|   |   |   |   |   shell weight > 0.182
|   |   |   |   |   |   length <= 0.505
|   |   |   |   |   |   |   length <= 0.46: ’(8.5-9.5]’ (8.0/4.0)
|   |   |   |   |   |   |   length > 0.46
|   |   |   |   |   |   |   |   length <= 0.485: ’(9.5-10.5]’ (8.0/5.0)
|   |   |   |   |   |   |   |   length > 0.485: ’(13.5-inf)’ (19.0/12.0)
|   |   |   |   |   |   length > 0.505: ’(9.5-10.5]’ (20.0/13.0)
|   |   |   |   sex = F
|   |   |   |   |   diameter <= 0.325: ’(6.5-7.5]’ (3.0)
|   |   |   |   |   diameter > 0.325
|   |   |   |   |   |   viscera weight <= 0.1105: ’(9.5-10.5]’ (20.0/15.0)
|   |   |   |   |   |   viscera weight > 0.1105
|   |   |   |   |   |   |   shell weight <= 0.2245
|   |   |   |   |   |   |   |   height <= 0.115: ’(8.5-9.5]’ (9.0/5.0)
|   |   |   |   |   |   |   |   height > 0.115
|   |   |   |   |   |   |   |   |   height <= 0.165
|   |   |   |   |   |   |   |   |   |   diameter <= 0.415: ’(9.5-10.5]’ (72.0/56.0)
|   |   |   |   |   |   |   |   |   |   diameter > 0.415: ’(7.5-8.5]’ (12.0/6.0)
|   |   |   |   |   |   |   |   |   height > 0.165: ’(10.5-11.5]’ (4.0/2.0)
|   |   |   |   |   |   |   shell weight > 0.2245: ’(11.5-13.5]’ (8.0/3.0)
|   |   |   |   sex = I
|   |   |   |   |   whole weight <= 0.6255
|   |   |   |   |   |   length <= 0.45: ’(11.5-13.5]’ (7.0/5.0)
|   |   |   |   |   |   length > 0.45
|   |   |   |   |   |   |   shucked weight <= 0.2455
|   |   |   |   |   |   |   |   height <= 0.115: ’(7.5-8.5]’ (20.0/10.0)
|   |   |   |   |   |   |   |   height > 0.115
|   |   |   |   |   |   |   |   |   height <= 0.125
|   |   |   |   |   |   |   |   |   |   height <= 0.12: ’(7.5-8.5]’ (12.0/7.0)
|   |   |   |   |   |   |   |   |   |   height > 0.12
|   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.2275: ’(7.5-8.5]’ (6.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.2275
|   |   |   |   |   |   |   |   |   |   |   |   viscera weight <= 0.1185: ’(8.5-9.5]’ (5.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   viscera weight > 0.1185: ’(7.5-8.5]’ (3.0)
|   |   |   |   |   |   |   |   |   height > 0.125
|   |   |   |   |   |   |   |   |   |   diameter <= 0.39
|   |   |   |   |   |   |   |   |   |   |   diameter <= 0.375
|   |   |   |   |   |   |   |   |   |   |   |   diameter <= 0.36: ’(8.5-9.5]’ (3.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   |   diameter > 0.36
|   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.49: ’(7.5-8.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.49: ’(8.5-9.5]’ (2.0)
|   |   |   |   |   |   |   |   |   |   |   diameter > 0.375: ’(7.5-8.5]’ (9.0/5.0)
|   |   |   |   |   |   |   |   |   |   diameter > 0.39
|   |   |   |   |   |   |   |   |   |   |   diameter <= 0.4: ’(8.5-9.5]’ (4.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   diameter > 0.4: ’(10.5-11.5]’ (4.0/1.0)
|   |   |   |   |   |   |   shucked weight > 0.2455
|   |   |   |   |   |   |   |   shell weight <= 0.194: ’(7.5-8.5]’ (42.0/18.0)
|   |   |   |   |   |   |   |   shell weight > 0.194: ’(8.5-9.5]’ (2.0/1.0)
|   |   |   |   |   whole weight > 0.6255
|   |   |   |   |   |   shucked weight <= 0.276
|   |   |   |   |   |   |   shucked weight <= 0.2635: ’(9.5-10.5]’ (3.0/1.0)
|   |   |   |   |   |   |   shucked weight > 0.2635
|   |   |   |   |   |   |   |   length <= 0.535: ’(11.5-13.5]’ (4.0)
|   |   |   |   |   |   |   |   length > 0.535: ’(8.5-9.5]’ (2.0/1.0)
|   |   |   |   |   |   shucked weight > 0.276
|   |   |   |   |   |   |   height <= 0.135
|   |   |   |   |   |   |   |   height <= 0.125: ’(8.5-9.5]’ (6.0/3.0)
|   |   |   |   |   |   |   |   height > 0.125
|   |   |   |   |   |   |   |   |   height <= 0.13: ’(7.5-8.5]’ (5.0/2.0)
|   |   |   |   |   |   |   |   |   height > 0.13: ’(8.5-9.5]’ (7.0/1.0)
|   |   |   |   |   |   |   height > 0.135
|   |   |   |   |   |   |   |   length <= 0.55
|   |   |   |   |   |   |   |   |   length <= 0.53: ’(7.5-8.5]’ (6.0/3.0)
|   |   |   |   |   |   |   |   |   length > 0.53: ’(9.5-10.5]’ (6.0/1.0)
|   |   |   |   |   |   |   |   length > 0.55: ’(8.5-9.5]’ (4.0/1.0)
|   |   |   shucked weight > 0.3345
|   |   |   |   sex = M
|   |   |   |   |   shell weight <= 0.229: ’(8.5-9.5]’ (52.0/34.0)
|   |   |   |   |   shell weight > 0.229: ’(7.5-8.5]’ (5.0)
|   |   |   |   sex = F
|   |   |   |   |   diameter <= 0.465
|   |   |   |   |   |   height <= 0.165
|   |   |   |   |   |   |   shucked weight <= 0.389
|   |   |   |   |   |   |   |   viscera weight <= 0.1965: ’(8.5-9.5]’ (8.0)
|   |   |   |   |   |   |   |   viscera weight > 0.1965: ’(7.5-8.5]’ (3.0/1.0)
|   |   |   |   |   |   |   shucked weight > 0.389
|   |   |   |   |   |   |   |   diameter <= 0.425
|   |   |   |   |   |   |   |   |   height <= 0.135: ’(7.5-8.5]’ (7.0/1.0)
|   |   |   |   |   |   |   |   |   height > 0.135
|   |   |   |   |   |   |   |   |   |   height <= 0.145: ’(9.5-10.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   height > 0.145: ’(7.5-8.5]’ (2.0)
|   |   |   |   |   |   |   |   diameter > 0.425: ’(7.5-8.5]’ (17.0/9.0)
|   |   |   |   |   |   height > 0.165: ’(-inf-6.5]’ (2.0/1.0)
|   |   |   |   |   diameter > 0.465: ’(9.5-10.5]’ (2.0/1.0)
|   |   |   |   sex = I
|   |   |   |   |   diameter <= 0.445: ’(7.5-8.5]’ (25.0/11.0)
|   |   |   |   |   diameter > 0.445
|   |   |   |   |   |   viscera weight <= 0.1755: ’(9.5-10.5]’ (3.0/1.0)
|   |   |   |   |   |   viscera weight > 0.1755: ’(8.5-9.5]’ (2.0)
|   |   shell weight > 0.2335
|   |   |   shucked weight <= 0.379
|   |   |   |   length <= 0.53: ’(13.5-inf)’ (62.0/35.0)
|   |   |   |   length > 0.53
|   |   |   |   |   viscera weight <= 0.1485
|   |   |   |   |   |   whole weight <= 0.7265: ’(8.5-9.5]’ (4.0/1.0)
|   |   |   |   |   |   whole weight > 0.7265: ’(9.5-10.5]’ (12.0/3.0)
|   |   |   |   |   viscera weight > 0.1485
|   |   |   |   |   |   viscera weight <= 0.179
|   |   |   |   |   |   |   sex = M
|   |   |   |   |   |   |   |   length <= 0.56: ’(11.5-13.5]’ (10.0/2.0)
|   |   |   |   |   |   |   |   length > 0.56
|   |   |   |   |   |   |   |   |   height <= 0.15: ’(13.5-inf)’ (3.0)
|   |   |   |   |   |   |   |   |   height > 0.15: ’(10.5-11.5]’ (3.0/1.0)
|   |   |   |   |   |   |   sex = F
|   |   |   |   |   |   |   |   viscera weight <= 0.1625
|   |   |   |   |   |   |   |   |   height <= 0.145: ’(8.5-9.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   height > 0.145: ’(13.5-inf)’ (3.0)
|   |   |   |   |   |   |   |   viscera weight > 0.1625
|   |   |   |   |   |   |   |   |   whole weight <= 0.8665
|   |   |   |   |   |   |   |   |   |   diameter <= 0.425: ’(9.5-10.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   |   diameter > 0.425
|   |   |   |   |   |   |   |   |   |   |   whole weight <= 0.84: ’(9.5-10.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   whole weight > 0.84: ’(11.5-13.5]’ (4.0)
|   |   |   |   |   |   |   |   |   whole weight > 0.8665: ’(13.5-inf)’ (2.0)
|   |   |   |   |   |   |   sex = I: ’(8.5-9.5]’ (12.0/8.0)
|   |   |   |   |   |   viscera weight > 0.179: ’(9.5-10.5]’ (56.0/41.0)
|   |   |   shucked weight > 0.379
|   |   |   |   shell weight <= 0.239: ’(8.5-9.5]’ (19.0/6.0)
|   |   |   |   shell weight > 0.239
|   |   |   |   |   sex = M
|   |   |   |   |   |   viscera weight <= 0.286
|   |   |   |   |   |   |   shell weight <= 0.248
|   |   |   |   |   |   |   |   length <= 0.565: ’(8.5-9.5]’ (3.0)
|   |   |   |   |   |   |   |   length > 0.565: ’(7.5-8.5]’ (10.0/4.0)
|   |   |   |   |   |   |   shell weight > 0.248
|   |   |   |   |   |   |   |   height <= 0.16
|   |   |   |   |   |   |   |   |   diameter <= 0.44: ’(7.5-8.5]’ (13.0/8.0)
|   |   |   |   |   |   |   |   |   diameter > 0.44
|   |   |   |   |   |   |   |   |   |   height <= 0.13: ’(7.5-8.5]’ (4.0/1.0)
|   |   |   |   |   |   |   |   |   |   height > 0.13
|   |   |   |   |   |   |   |   |   |   |   length <= 0.565: ’(10.5-11.5]’ (4.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   length > 0.565
|   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.458
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.4185: ’(9.5-10.5]’ (10.0/3.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.4185
|   |   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.15
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   shell weight <= 0.2765: ’(8.5-9.5]’ (4.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   shell weight > 0.2765: ’(10.5-11.5]’ (2.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.15: ’(10.5-11.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.458
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.4755: ’(6.5-7.5]’ (3.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.4755
|   |   |   |   |   |   |   |   |   |   |   |   |   |   whole weight <= 1.189
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter <= 0.475: ’(8.5-9.5]’ (18.0/9.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   diameter > 0.475: ’(7.5-8.5]’ (3.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   whole weight > 1.189: ’(8.5-9.5]’ (5.0/2.0)
|   |   |   |   |   |   |   |   height > 0.16: ’(8.5-9.5]’ (14.0/6.0)
|   |   |   |   |   |   viscera weight > 0.286
|   |   |   |   |   |   |   length <= 0.62: ’(9.5-10.5]’ (3.0/1.0)
|   |   |   |   |   |   |   length > 0.62: ’(10.5-11.5]’ (2.0)
|   |   |   |   |   sex = F
|   |   |   |   |   |   shell weight <= 0.2845
|   |   |   |   |   |   |   viscera weight <= 0.2645
|   |   |   |   |   |   |   |   whole weight <= 1.0765
|   |   |   |   |   |   |   |   |   height <= 0.13: ’(10.5-11.5]’ (6.0/3.0)
|   |   |   |   |   |   |   |   |   height > 0.13
|   |   |   |   |   |   |   |   |   |   diameter <= 0.46
|   |   |   |   |   |   |   |   |   |   |   diameter <= 0.455: ’(8.5-9.5]’ (24.0/14.0)
|   |   |   |   |   |   |   |   |   |   |   diameter > 0.455: ’(7.5-8.5]’ (9.0/4.0)
|   |   |   |   |   |   |   |   |   |   diameter > 0.46
|   |   |   |   |   |   |   |   |   |   |   height <= 0.16
|   |   |   |   |   |   |   |   |   |   |   |   shell weight <= 0.2625: ’(10.5-11.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   shell weight > 0.2625
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.4635: ’(9.5-10.5]’ (4.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.4635: ’(10.5-11.5]’ (4.0/2.0)
|   |   |   |   |   |   |   |   |   |   |   height > 0.16: ’(8.5-9.5]’ (3.0/2.0)
|   |   |   |   |   |   |   |   whole weight > 1.0765
|   |   |   |   |   |   |   |   |   shucked weight <= 0.534: ’(11.5-13.5]’ (3.0)
|   |   |   |   |   |   |   |   |   shucked weight > 0.534: ’(7.5-8.5]’ (7.0/4.0)
|   |   |   |   |   |   |   viscera weight > 0.2645: ’(9.5-10.5]’ (4.0)
|   |   |   |   |   |   shell weight > 0.2845: ’(8.5-9.5]’ (16.0/6.0)
|   |   |   |   |   sex = I: ’(8.5-9.5]’ (20.0/13.0)
|   shell weight > 0.2895
|   |   shucked weight <= 0.414
|   |   |   length <= 0.495: ’(-inf-6.5]’ (2.0)
|   |   |   length > 0.495
|   |   |   |   shell weight <= 0.356
|   |   |   |   |   length <= 0.57
|   |   |   |   |   |   height <= 0.17: ’(13.5-inf)’ (37.0/17.0)
|   |   |   |   |   |   height > 0.17
|   |   |   |   |   |   |   sex = M
|   |   |   |   |   |   |   |   whole weight <= 0.8855: ’(9.5-10.5]’ (3.0/2.0)
|   |   |   |   |   |   |   |   whole weight > 0.8855: ’(13.5-inf)’ (8.0)
|   |   |   |   |   |   |   sex = F: ’(13.5-inf)’ (4.0)
|   |   |   |   |   |   |   sex = I: ’(13.5-inf)’ (0.0)
|   |   |   |   |   length > 0.57: ’(13.5-inf)’ (50.0/35.0)
|   |   |   |   shell weight > 0.356: ’(13.5-inf)’ (38.0/9.0)
|   |   shucked weight > 0.414
|   |   |   shell weight <= 0.4095
|   |   |   |   shell weight <= 0.314
|   |   |   |   |   shell weight <= 0.2905: ’(8.5-9.5]’ (7.0/2.0)
|   |   |   |   |   shell weight > 0.2905
|   |   |   |   |   |   diameter <= 0.44: ’(8.5-9.5]’ (5.0/2.0)
|   |   |   |   |   |   diameter > 0.44: ’(9.5-10.5]’ (91.0/60.0)
|   |   |   |   shell weight > 0.314
|   |   |   |   |   shucked weight <= 0.5115
|   |   |   |   |   |   shell weight <= 0.3775
|   |   |   |   |   |   |   viscera weight <= 0.303
|   |   |   |   |   |   |   |   shell weight <= 0.32
|   |   |   |   |   |   |   |   |   shucked weight <= 0.4995
|   |   |   |   |   |   |   |   |   |   shell weight <= 0.3185
|   |   |   |   |   |   |   |   |   |   |   length <= 0.605: ’(13.5-inf)’ (4.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   length > 0.605: ’(11.5-13.5]’ (8.0/5.0)
|   |   |   |   |   |   |   |   |   |   shell weight > 0.3185: ’(11.5-13.5]’ (4.0/1.0)
|   |   |   |   |   |   |   |   |   shucked weight > 0.4995: ’(9.5-10.5]’ (4.0/2.0)
|   |   |   |   |   |   |   |   shell weight > 0.32
|   |   |   |   |   |   |   |   |   shell weight <= 0.3605
|   |   |   |   |   |   |   |   |   |   height <= 0.17
|   |   |   |   |   |   |   |   |   |   |   shell weight <= 0.3255: ’(10.5-11.5]’ (7.0/3.0)
|   |   |   |   |   |   |   |   |   |   |   shell weight > 0.3255
|   |   |   |   |   |   |   |   |   |   |   |   diameter <= 0.48: ’(9.5-10.5]’ (14.0/6.0)
|   |   |   |   |   |   |   |   |   |   |   |   diameter > 0.48
|   |   |   |   |   |   |   |   |   |   |   |   |   height <= 0.165
|   |   |   |   |   |   |   |   |   |   |   |   |   |   shell weight <= 0.34: ’(13.5-inf)’ (8.0/4.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   shell weight > 0.34: ’(9.5-10.5]’ (19.0/11.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   height > 0.165: ’(11.5-13.5]’ (6.0/3.0)
|   |   |   |   |   |   |   |   |   |   height > 0.17
|   |   |   |   |   |   |   |   |   |   |   sex = M: ’(9.5-10.5]’ (4.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   sex = F: ’(8.5-9.5]’ (11.0/7.0)
|   |   |   |   |   |   |   |   |   |   |   sex = I: ’(9.5-10.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   shell weight > 0.3605: ’(9.5-10.5]’ (7.0/3.0)
|   |   |   |   |   |   |   viscera weight > 0.303: ’(13.5-inf)’ (5.0/2.0)
|   |   |   |   |   |   shell weight > 0.3775: ’(11.5-13.5]’ (10.0/3.0)
|   |   |   |   |   shucked weight > 0.5115
|   |   |   |   |   |   shell weight <= 0.3595: ’(9.5-10.5]’ (111.0/78.0)
|   |   |   |   |   |   shell weight > 0.3595
|   |   |   |   |   |   |   shell weight <= 0.36: ’(10.5-11.5]’ (6.0/2.0)
|   |   |   |   |   |   |   shell weight > 0.36
|   |   |   |   |   |   |   |   sex = M
|   |   |   |   |   |   |   |   |   height <= 0.16
|   |   |   |   |   |   |   |   |   |   length <= 0.66: ’(8.5-9.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   length > 0.66: ’(10.5-11.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   height > 0.16
|   |   |   |   |   |   |   |   |   |   shell weight <= 0.389
|   |   |   |   |   |   |   |   |   |   |   viscera weight <= 0.22: ’(11.5-13.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   viscera weight > 0.22
|   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.7425
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight <= 0.5455: ’(7.5-8.5]’ (2.0/1.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.5455
|   |   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.685
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   shell weight <= 0.371: ’(9.5-10.5]’ (10.0/5.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   shell weight > 0.371
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   length <= 0.645: ’(9.5-10.5]’ (5.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.645: ’(8.5-9.5]’ (6.0/3.0)
|   |   |   |   |   |   |   |   |   |   |   |   |   |   length > 0.685: ’(11.5-13.5]’ (2.0)
|   |   |   |   |   |   |   |   |   |   |   |   shucked weight > 0.7425: ’(10.5-11.5]’ (3.0/1.0)
|   |   |   |   |   |   |   |   |   |   shell weight > 0.389: ’(10.5-11.5]’ (24.0/16.0)
|   |   |   |   |   |   |   |   sex = F: ’(10.5-11.5]’ (48.0/33.0)
|   |   |   |   |   |   |   |   sex = I: ’(11.5-13.5]’ (2.0/1.0)
|   |   |   shell weight > 0.4095
|   |   |   |   shucked weight <= 0.639
|   |   |   |   |   viscera weight <= 0.324: ’(13.5-inf)’ (64.0/24.0)
|   |   |   |   |   viscera weight > 0.324
|   |   |   |   |   |   shell weight <= 0.4645
|   |   |   |   |   |   |   shell weight <= 0.4375: ’(9.5-10.5]’ (9.0/5.0)
|   |   |   |   |   |   |   shell weight > 0.4375: ’(11.5-13.5]’ (8.0/2.0)
|   |   |   |   |   |   shell weight > 0.4645: ’(13.5-inf)’ (17.0/2.0)
|   |   |   |   shucked weight > 0.639
|   |   |   |   |   height <= 0.22
|   |   |   |   |   |   shell weight <= 0.4535: ’(10.5-11.5]’ (48.0/28.0)
|   |   |   |   |   |   shell weight > 0.4535
|   |   |   |   |   |   |   shell weight <= 0.5675
|   |   |   |   |   |   |   |   sex = M
|   |   |   |   |   |   |   |   |   length <= 0.665: ’(9.5-10.5]’ (5.0/3.0)
|   |   |   |   |   |   |   |   |   length > 0.665
|   |   |   |   |   |   |   |   |   |   height <= 0.205: ’(11.5-13.5]’ (25.0/13.0)
|   |   |   |   |   |   |   |   |   |   height > 0.205: ’(10.5-11.5]’ (8.0/2.0)
|   |   |   |   |   |   |   |   sex = F
|   |   |   |   |   |   |   |   |   shucked weight <= 0.7055: ’(13.5-inf)’ (14.0/7.0)
|   |   |   |   |   |   |   |   |   shucked weight > 0.7055
|   |   |   |   |   |   |   |   |   |   height <= 0.18: ’(11.5-13.5]’ (8.0/5.0)
|   |   |   |   |   |   |   |   |   |   height > 0.18: ’(10.5-11.5]’ (23.0/11.0)
|   |   |   |   |   |   |   |   sex = I: ’(10.5-11.5]’ (0.0)
|   |   |   |   |   |   |   shell weight > 0.5675
|   |   |   |   |   |   |   |   shucked weight <= 1.109: ’(13.5-inf)’ (17.0/7.0)
|   |   |   |   |   |   |   |   shucked weight > 1.109: ’(10.5-11.5]’ (3.0)
|   |   |   |   |   height > 0.22: ’(13.5-inf)’ (12.0/4.0)
​
Number of Leaves  : 	225
​
Size of the tree : 	440
​
RMS error: 2.2760979789036715