Skip to content

Instantly share code, notes, and snippets.

@loleg
Created January 28, 2019 15:58
Show Gist options
  • Save loleg/2ba345b9a1cabf46c33b0e30b6d71696 to your computer and use it in GitHub Desktop.
Save loleg/2ba345b9a1cabf46c33b0e30b6d71696 to your computer and use it in GitHub Desktop.
An example of using DataHub and the Frictionless Data libraries with the Keras library for Machine Learning
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Data Package with ML example\n",
"\n",
"This is an example notebook for an [AMLD 2019 workshop](https://www.appliedmldays.org/workshops/industrial-open-data). Slides and additional notes are [available here](https://forum.schoolofdata.ch/t/27-1-shipshape-open-data-amld-2019/491/1).\n",
"\n",
"We use a classic Machine Learning dataset, [Abalone](https://datahub.io/machine-learning/abalone#python), based on research made [in the 90's](http://archive.ics.uci.edu/ml/datasets/Abalone) - and now hosted in the [Machine Learning collection](https://datahub.io/machine-learning/) on DataHub.\n",
"\n",
"The basic ML test is copied with very slight modifications from a [blog post](http://ericstrong.org/abalone-with-keras-part-1/) by Eric Strong, whose sources are also [on GitHub](https://github.com/drericstrong/Blog/blob/master/20170304_AbaloneWithKerasPart1.ipynb). We also add some in-line visuals. \n",
"\n",
"We also strongly encourage the reader to check out this dataset at [OpenML](https://www.openml.org), which conveniently summarizes studies and provides comparative reports like [this one](https://www.openml.org/t/2075) for a given dataset like [abalone](https://www.openml.org/d/183). OpenML [supports Frictionless Data](https://frictionlessdata.io/articles/openml/) and can help you integrate and scale your research."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"Using TensorFlow backend.\n"
]
}
],
"source": [
"from datapackage import Package\n",
"\n",
"from keras.models import Sequential\n",
"from keras.layers import Dense\n",
"import keras\n",
"\n",
"import pandas as pd\n",
"from sklearn.model_selection import train_test_split\n",
"\n",
"from vega import VegaLite "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"After the Package is loaded from DataHub with the handy one-liner below, we print list of all resources, to make sure we're loaded and ready."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"['validation_report', 'abalone_csv', 'abalone_json', 'abalone_zip', 'abalone_csv_preview', 'abalone_arff', 'abalone']\n"
]
}
],
"source": [
"package = Package('https://datahub.io/machine-learning/abalone/datapackage.json')\n",
"print(package.resource_names)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now we can pick the CSV formatted file using `get_resource`. The next command checks foreign keys and raises an exception if there are integrity issues."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"True"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"abalone = package.get_resource('abalone_csv')\n",
"abalone.check_relations()"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"True"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"abalone.tabular"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[['M',\n",
" Decimal('0.455'),\n",
" Decimal('0.365'),\n",
" Decimal('0.095'),\n",
" Decimal('0.514'),\n",
" Decimal('0.2245'),\n",
" Decimal('0.101'),\n",
" Decimal('0.15'),\n",
" Decimal('15')]]"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"abalone.read(limit=1)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We can see that the Data Package library is able to fetch the resource and it's data, do a basic consistency check according to the [Table Schema](https://frictionlessdata.io/specs/table-schema/). Instead of using the data diretly in the form of arrays, it's more convenient to load it into [Pandas](https://pandas.pydata.org/). We can then assign our own names to the columns and use convenience functions."
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['Sex',\n",
" 'Length',\n",
" 'Diameter',\n",
" 'Height',\n",
" 'Whole_weight',\n",
" 'Shucked_weight',\n",
" 'Viscera_weight',\n",
" 'Shell_weight',\n",
" 'Class_number_of_rings']"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"abalone_df = pd.read_csv(abalone.descriptor['path'])\n",
"abalone.headers"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Sex</th>\n",
" <th>Length</th>\n",
" <th>Diameter</th>\n",
" <th>Height</th>\n",
" <th>Whole_weight</th>\n",
" <th>Shucked_weight</th>\n",
" <th>Viscera_weight</th>\n",
" <th>Shell_weight</th>\n",
" <th>Rings</th>\n",
" <th>Male</th>\n",
" <th>Female</th>\n",
" <th>Infant</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>M</td>\n",
" <td>0.455</td>\n",
" <td>0.365</td>\n",
" <td>0.095</td>\n",
" <td>0.5140</td>\n",
" <td>0.2245</td>\n",
" <td>0.1010</td>\n",
" <td>0.150</td>\n",
" <td>15</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>M</td>\n",
" <td>0.350</td>\n",
" <td>0.265</td>\n",
" <td>0.090</td>\n",
" <td>0.2255</td>\n",
" <td>0.0995</td>\n",
" <td>0.0485</td>\n",
" <td>0.070</td>\n",
" <td>7</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>F</td>\n",
" <td>0.530</td>\n",
" <td>0.420</td>\n",
" <td>0.135</td>\n",
" <td>0.6770</td>\n",
" <td>0.2565</td>\n",
" <td>0.1415</td>\n",
" <td>0.210</td>\n",
" <td>9</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>M</td>\n",
" <td>0.440</td>\n",
" <td>0.365</td>\n",
" <td>0.125</td>\n",
" <td>0.5160</td>\n",
" <td>0.2155</td>\n",
" <td>0.1140</td>\n",
" <td>0.155</td>\n",
" <td>10</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>I</td>\n",
" <td>0.330</td>\n",
" <td>0.255</td>\n",
" <td>0.080</td>\n",
" <td>0.2050</td>\n",
" <td>0.0895</td>\n",
" <td>0.0395</td>\n",
" <td>0.055</td>\n",
" <td>7</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" Sex Length Diameter Height Whole_weight Shucked_weight Viscera_weight \\\n",
"0 M 0.455 0.365 0.095 0.5140 0.2245 0.1010 \n",
"1 M 0.350 0.265 0.090 0.2255 0.0995 0.0485 \n",
"2 F 0.530 0.420 0.135 0.6770 0.2565 0.1415 \n",
"3 M 0.440 0.365 0.125 0.5160 0.2155 0.1140 \n",
"4 I 0.330 0.255 0.080 0.2050 0.0895 0.0395 \n",
"\n",
" Shell_weight Rings Male Female Infant \n",
"0 0.150 15 1 0 0 \n",
"1 0.070 7 1 0 0 \n",
"2 0.210 9 0 1 0 \n",
"3 0.155 10 1 0 0 \n",
"4 0.055 7 0 0 1 "
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"abalone_df.rename(inplace=True, columns={\"Class_number_of_rings\": \"Rings\"})\n",
"abalone_df.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's do a quick plot as well using [iPyVega](https://github.com/vega/ipyvega):"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [
{
"data": {
"application/javascript": [
"var spec = {\"$schema\": \"https://vega.github.io/schema/vega-lite/v3.json\", \"mark\": \"point\", \"encoding\": {\"y\": {\"type\": \"quantitative\", \"field\": \"Rings\"}, \"x\": {\"type\": \"quantitative\", \"field\": \"Length\"}}, \"data\": {\"values\": [{\"Sex\": \"M\", \"Length\": 0.455, \"Diameter\": 0.365, \"Height\": 0.095, \"Whole_weight\": 0.514, \"Shucked_weight\": 0.2245, \"Viscera_weight\": 0.10099999999999999, \"Shell_weight\": 0.15, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.35, \"Diameter\": 0.265, \"Height\": 0.09, \"Whole_weight\": 0.2255, \"Shucked_weight\": 0.0995, \"Viscera_weight\": 0.0485, \"Shell_weight\": 0.07, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.42, \"Height\": 0.135, \"Whole_weight\": 0.677, \"Shucked_weight\": 0.2565, \"Viscera_weight\": 0.1415, \"Shell_weight\": 0.21, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.44, \"Diameter\": 0.365, \"Height\": 0.125, \"Whole_weight\": 0.516, \"Shucked_weight\": 0.2155, \"Viscera_weight\": 0.114, \"Shell_weight\": 0.155, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.33, \"Diameter\": 0.255, \"Height\": 0.08, \"Whole_weight\": 0.205, \"Shucked_weight\": 0.0895, \"Viscera_weight\": 0.0395, \"Shell_weight\": 0.055, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.3, \"Height\": 0.095, \"Whole_weight\": 0.3515, \"Shucked_weight\": 0.141, \"Viscera_weight\": 0.0775, \"Shell_weight\": 0.12, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.415, \"Height\": 0.15, \"Whole_weight\": 0.7775, \"Shucked_weight\": 0.237, \"Viscera_weight\": 0.1415, \"Shell_weight\": 0.33, \"Rings\": 20, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.425, \"Height\": 0.125, \"Whole_weight\": 0.768, \"Shucked_weight\": 0.294, \"Viscera_weight\": 0.1495, \"Shell_weight\": 0.26, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.475, \"Diameter\": 0.37, \"Height\": 0.125, \"Whole_weight\": 0.5095, \"Shucked_weight\": 0.2165, \"Viscera_weight\": 0.1125, \"Shell_weight\": 0.165, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 0.8945, \"Shucked_weight\": 0.3145, \"Viscera_weight\": 0.151, \"Shell_weight\": 0.32, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.38, \"Height\": 0.14, \"Whole_weight\": 0.6065, \"Shucked_weight\": 0.19399999999999998, \"Viscera_weight\": 0.1475, \"Shell_weight\": 0.21, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.43, \"Diameter\": 0.35, \"Height\": 0.11, \"Whole_weight\": 0.406, \"Shucked_weight\": 0.1675, \"Viscera_weight\": 0.081, \"Shell_weight\": 0.135, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.5415, \"Shucked_weight\": 0.2175, \"Viscera_weight\": 0.095, \"Shell_weight\": 0.19, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.405, \"Height\": 0.145, \"Whole_weight\": 0.6845, \"Shucked_weight\": 0.2725, \"Viscera_weight\": 0.171, \"Shell_weight\": 0.205, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.355, \"Height\": 0.1, \"Whole_weight\": 0.4755, \"Shucked_weight\": 0.1675, \"Viscera_weight\": 0.0805, \"Shell_weight\": 0.185, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.6645, \"Shucked_weight\": 0.258, \"Viscera_weight\": 0.133, \"Shell_weight\": 0.24, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.28, \"Height\": 0.085, \"Whole_weight\": 0.2905, \"Shucked_weight\": 0.095, \"Viscera_weight\": 0.0395, \"Shell_weight\": 0.115, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.44, \"Diameter\": 0.34, \"Height\": 0.1, \"Whole_weight\": 0.451, \"Shucked_weight\": 0.188, \"Viscera_weight\": 0.087, \"Shell_weight\": 0.13, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.365, \"Diameter\": 0.295, \"Height\": 0.08, \"Whole_weight\": 0.2555, \"Shucked_weight\": 0.09699999999999999, \"Viscera_weight\": 0.043, \"Shell_weight\": 0.1, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.32, \"Height\": 0.1, \"Whole_weight\": 0.381, \"Shucked_weight\": 0.1705, \"Viscera_weight\": 0.075, \"Shell_weight\": 0.115, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.355, \"Diameter\": 0.28, \"Height\": 0.095, \"Whole_weight\": 0.2455, \"Shucked_weight\": 0.0955, \"Viscera_weight\": 0.062, \"Shell_weight\": 0.075, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.38, \"Diameter\": 0.275, \"Height\": 0.1, \"Whole_weight\": 0.2255, \"Shucked_weight\": 0.08, \"Viscera_weight\": 0.049, \"Shell_weight\": 0.085, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.155, \"Whole_weight\": 0.9395, \"Shucked_weight\": 0.4275, \"Viscera_weight\": 0.214, \"Shell_weight\": 0.27, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.415, \"Height\": 0.135, \"Whole_weight\": 0.7635, \"Shucked_weight\": 0.318, \"Viscera_weight\": 0.21, \"Shell_weight\": 0.2, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.1615, \"Shucked_weight\": 0.513, \"Viscera_weight\": 0.301, \"Shell_weight\": 0.305, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.44, \"Height\": 0.14, \"Whole_weight\": 0.9285, \"Shucked_weight\": 0.3825, \"Viscera_weight\": 0.188, \"Shell_weight\": 0.3, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.185, \"Whole_weight\": 0.9955, \"Shucked_weight\": 0.3945, \"Viscera_weight\": 0.272, \"Shell_weight\": 0.285, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.445, \"Height\": 0.14, \"Whole_weight\": 0.9309999999999999, \"Shucked_weight\": 0.35600000000000004, \"Viscera_weight\": 0.23399999999999999, \"Shell_weight\": 0.28, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.18, \"Whole_weight\": 0.9365, \"Shucked_weight\": 0.39399999999999996, \"Viscera_weight\": 0.21899999999999997, \"Shell_weight\": 0.295, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.425, \"Height\": 0.14, \"Whole_weight\": 0.8635, \"Shucked_weight\": 0.39299999999999996, \"Viscera_weight\": 0.22699999999999998, \"Shell_weight\": 0.2, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 0.9975, \"Shucked_weight\": 0.3935, \"Viscera_weight\": 0.242, \"Shell_weight\": 0.33, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.56, \"Height\": 0.165, \"Whole_weight\": 1.639, \"Shucked_weight\": 0.6055, \"Viscera_weight\": 0.2805, \"Shell_weight\": 0.46, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.525, \"Height\": 0.165, \"Whole_weight\": 1.338, \"Shucked_weight\": 0.5515, \"Viscera_weight\": 0.3575, \"Shell_weight\": 0.35, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.55, \"Height\": 0.175, \"Whole_weight\": 1.798, \"Shucked_weight\": 0.815, \"Viscera_weight\": 0.3925, \"Shell_weight\": 0.455, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.705, \"Diameter\": 0.55, \"Height\": 0.2, \"Whole_weight\": 1.7095, \"Shucked_weight\": 0.633, \"Viscera_weight\": 0.4115, \"Shell_weight\": 0.49, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.355, \"Height\": 0.105, \"Whole_weight\": 0.4795, \"Shucked_weight\": 0.22699999999999998, \"Viscera_weight\": 0.124, \"Shell_weight\": 0.125, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.54, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 1.217, \"Shucked_weight\": 0.5305, \"Viscera_weight\": 0.3075, \"Shell_weight\": 0.34, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.45, \"Diameter\": 0.355, \"Height\": 0.105, \"Whole_weight\": 0.5225, \"Shucked_weight\": 0.237, \"Viscera_weight\": 0.1165, \"Shell_weight\": 0.145, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.445, \"Height\": 0.135, \"Whole_weight\": 0.883, \"Shucked_weight\": 0.381, \"Viscera_weight\": 0.2035, \"Shell_weight\": 0.26, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.355, \"Diameter\": 0.29, \"Height\": 0.09, \"Whole_weight\": 0.3275, \"Shucked_weight\": 0.134, \"Viscera_weight\": 0.086, \"Shell_weight\": 0.09, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.45, \"Diameter\": 0.335, \"Height\": 0.105, \"Whole_weight\": 0.425, \"Shucked_weight\": 0.1865, \"Viscera_weight\": 0.091, \"Shell_weight\": 0.115, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.135, \"Whole_weight\": 0.8515, \"Shucked_weight\": 0.36200000000000004, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.27, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.24, \"Diameter\": 0.175, \"Height\": 0.045, \"Whole_weight\": 0.07, \"Shucked_weight\": 0.0315, \"Viscera_weight\": 0.0235, \"Shell_weight\": 0.02, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.205, \"Diameter\": 0.15, \"Height\": 0.055, \"Whole_weight\": 0.042, \"Shucked_weight\": 0.0255, \"Viscera_weight\": 0.015, \"Shell_weight\": 0.012, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.21, \"Diameter\": 0.15, \"Height\": 0.05, \"Whole_weight\": 0.042, \"Shucked_weight\": 0.0175, \"Viscera_weight\": 0.0125, \"Shell_weight\": 0.015, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.295, \"Height\": 0.095, \"Whole_weight\": 0.203, \"Shucked_weight\": 0.0875, \"Viscera_weight\": 0.045, \"Shell_weight\": 0.075, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.37, \"Height\": 0.12, \"Whole_weight\": 0.5795, \"Shucked_weight\": 0.293, \"Viscera_weight\": 0.22699999999999998, \"Shell_weight\": 0.14, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.46, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.4605, \"Shucked_weight\": 0.1775, \"Viscera_weight\": 0.11, \"Shell_weight\": 0.15, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.245, \"Height\": 0.07, \"Whole_weight\": 0.161, \"Shucked_weight\": 0.0755, \"Viscera_weight\": 0.0255, \"Shell_weight\": 0.045, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.425, \"Height\": 0.16, \"Whole_weight\": 0.8355, \"Shucked_weight\": 0.3545, \"Viscera_weight\": 0.2135, \"Shell_weight\": 0.245, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.41, \"Height\": 0.12, \"Whole_weight\": 0.595, \"Shucked_weight\": 0.2385, \"Viscera_weight\": 0.111, \"Shell_weight\": 0.19, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.4, \"Diameter\": 0.32, \"Height\": 0.095, \"Whole_weight\": 0.303, \"Shucked_weight\": 0.1335, \"Viscera_weight\": 0.06, \"Shell_weight\": 0.1, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.485, \"Diameter\": 0.36, \"Height\": 0.13, \"Whole_weight\": 0.5415, \"Shucked_weight\": 0.2595, \"Viscera_weight\": 0.096, \"Shell_weight\": 0.16, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.36, \"Height\": 0.12, \"Whole_weight\": 0.4775, \"Shucked_weight\": 0.2105, \"Viscera_weight\": 0.1055, \"Shell_weight\": 0.15, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.405, \"Diameter\": 0.31, \"Height\": 0.1, \"Whole_weight\": 0.385, \"Shucked_weight\": 0.17300000000000001, \"Viscera_weight\": 0.0915, \"Shell_weight\": 0.11, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.4, \"Height\": 0.14, \"Whole_weight\": 0.6615, \"Shucked_weight\": 0.2565, \"Viscera_weight\": 0.1755, \"Shell_weight\": 0.22, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.445, \"Diameter\": 0.35, \"Height\": 0.12, \"Whole_weight\": 0.4425, \"Shucked_weight\": 0.192, \"Viscera_weight\": 0.0955, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.385, \"Height\": 0.135, \"Whole_weight\": 0.5895, \"Shucked_weight\": 0.2765, \"Viscera_weight\": 0.12, \"Shell_weight\": 0.17, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.245, \"Diameter\": 0.19, \"Height\": 0.06, \"Whole_weight\": 0.086, \"Shucked_weight\": 0.042, \"Viscera_weight\": 0.013999999999999999, \"Shell_weight\": 0.025, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.583, \"Shucked_weight\": 0.24600000000000002, \"Viscera_weight\": 0.13, \"Shell_weight\": 0.175, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.345, \"Height\": 0.105, \"Whole_weight\": 0.4115, \"Shucked_weight\": 0.18, \"Viscera_weight\": 0.1125, \"Shell_weight\": 0.135, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.405, \"Height\": 0.11, \"Whole_weight\": 0.625, \"Shucked_weight\": 0.305, \"Viscera_weight\": 0.16, \"Shell_weight\": 0.175, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.41, \"Height\": 0.13, \"Whole_weight\": 0.6965, \"Shucked_weight\": 0.302, \"Viscera_weight\": 0.1935, \"Shell_weight\": 0.2, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.425, \"Diameter\": 0.325, \"Height\": 0.095, \"Whole_weight\": 0.3785, \"Shucked_weight\": 0.1705, \"Viscera_weight\": 0.08, \"Shell_weight\": 0.1, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.4, \"Height\": 0.12, \"Whole_weight\": 0.58, \"Shucked_weight\": 0.23399999999999999, \"Viscera_weight\": 0.1315, \"Shell_weight\": 0.185, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.475, \"Diameter\": 0.355, \"Height\": 0.12, \"Whole_weight\": 0.48, \"Shucked_weight\": 0.23399999999999999, \"Viscera_weight\": 0.1015, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.16, \"Whole_weight\": 0.915, \"Shucked_weight\": 0.354, \"Viscera_weight\": 0.1935, \"Shell_weight\": 0.32, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.495, \"Height\": 0.185, \"Whole_weight\": 1.285, \"Shucked_weight\": 0.41600000000000004, \"Viscera_weight\": 0.22399999999999998, \"Shell_weight\": 0.485, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.39, \"Height\": 0.12, \"Whole_weight\": 0.5305, \"Shucked_weight\": 0.2135, \"Viscera_weight\": 0.1155, \"Shell_weight\": 0.17, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.31, \"Diameter\": 0.235, \"Height\": 0.07, \"Whole_weight\": 0.151, \"Shucked_weight\": 0.063, \"Viscera_weight\": 0.0405, \"Shell_weight\": 0.045, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.425, \"Height\": 0.13, \"Whole_weight\": 0.7665, \"Shucked_weight\": 0.264, \"Viscera_weight\": 0.168, \"Shell_weight\": 0.275, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.4, \"Diameter\": 0.32, \"Height\": 0.11, \"Whole_weight\": 0.353, \"Shucked_weight\": 0.1405, \"Viscera_weight\": 0.0985, \"Shell_weight\": 0.1, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.475, \"Height\": 0.17, \"Whole_weight\": 1.247, \"Shucked_weight\": 0.48, \"Viscera_weight\": 0.225, \"Shell_weight\": 0.425, \"Rings\": 20, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.48, \"Height\": 0.175, \"Whole_weight\": 1.185, \"Shucked_weight\": 0.474, \"Viscera_weight\": 0.261, \"Shell_weight\": 0.38, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.45, \"Height\": 0.195, \"Whole_weight\": 1.0979999999999999, \"Shucked_weight\": 0.48100000000000004, \"Viscera_weight\": 0.2895, \"Shell_weight\": 0.315, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 1.0075, \"Shucked_weight\": 0.4425, \"Viscera_weight\": 0.221, \"Shell_weight\": 0.28, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.475, \"Height\": 0.14, \"Whole_weight\": 0.9440000000000001, \"Shucked_weight\": 0.3625, \"Viscera_weight\": 0.18899999999999997, \"Shell_weight\": 0.315, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 0.922, \"Shucked_weight\": 0.363, \"Viscera_weight\": 0.19399999999999998, \"Shell_weight\": 0.305, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.555, \"Diameter\": 0.425, \"Height\": 0.14, \"Whole_weight\": 0.7879999999999999, \"Shucked_weight\": 0.282, \"Viscera_weight\": 0.1595, \"Shell_weight\": 0.285, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.17, \"Whole_weight\": 1.1025, \"Shucked_weight\": 0.4695, \"Viscera_weight\": 0.2355, \"Shell_weight\": 0.345, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.445, \"Height\": 0.14, \"Whole_weight\": 0.941, \"Shucked_weight\": 0.3845, \"Viscera_weight\": 0.252, \"Shell_weight\": 0.285, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.615, \"Shucked_weight\": 0.5105, \"Viscera_weight\": 0.192, \"Shell_weight\": 0.675, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.425, \"Height\": 0.165, \"Whole_weight\": 0.9885, \"Shucked_weight\": 0.396, \"Viscera_weight\": 0.225, \"Shell_weight\": 0.32, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.3175, \"Shucked_weight\": 0.408, \"Viscera_weight\": 0.23399999999999999, \"Shell_weight\": 0.58, \"Rings\": 21, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.14, \"Whole_weight\": 1.013, \"Shucked_weight\": 0.38, \"Viscera_weight\": 0.21600000000000003, \"Shell_weight\": 0.36, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.465, \"Height\": 0.18, \"Whole_weight\": 1.295, \"Shucked_weight\": 0.33899999999999997, \"Viscera_weight\": 0.2225, \"Shell_weight\": 0.44, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.465, \"Height\": 0.14, \"Whole_weight\": 1.195, \"Shucked_weight\": 0.4825, \"Viscera_weight\": 0.205, \"Shell_weight\": 0.4, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.44, \"Height\": 0.16, \"Whole_weight\": 0.8645, \"Shucked_weight\": 0.3305, \"Viscera_weight\": 0.2075, \"Shell_weight\": 0.26, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.46, \"Diameter\": 0.355, \"Height\": 0.13, \"Whole_weight\": 0.517, \"Shucked_weight\": 0.2205, \"Viscera_weight\": 0.114, \"Shell_weight\": 0.165, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 0.9775, \"Shucked_weight\": 0.3135, \"Viscera_weight\": 0.231, \"Shell_weight\": 0.33, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.425, \"Height\": 0.135, \"Whole_weight\": 0.8115, \"Shucked_weight\": 0.341, \"Viscera_weight\": 0.1675, \"Shell_weight\": 0.255, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 0.755, \"Shucked_weight\": 0.307, \"Viscera_weight\": 0.1525, \"Shell_weight\": 0.26, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.465, \"Height\": 0.175, \"Whole_weight\": 1.115, \"Shucked_weight\": 0.4015, \"Viscera_weight\": 0.254, \"Shell_weight\": 0.39, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.495, \"Height\": 0.165, \"Whole_weight\": 1.262, \"Shucked_weight\": 0.507, \"Viscera_weight\": 0.318, \"Shell_weight\": 0.39, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.695, \"Diameter\": 0.56, \"Height\": 0.19, \"Whole_weight\": 1.494, \"Shucked_weight\": 0.588, \"Viscera_weight\": 0.3425, \"Shell_weight\": 0.485, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.535, \"Height\": 0.195, \"Whole_weight\": 1.6059999999999999, \"Shucked_weight\": 0.5755, \"Viscera_weight\": 0.38799999999999996, \"Shell_weight\": 0.48, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.435, \"Height\": 0.15, \"Whole_weight\": 0.725, \"Shucked_weight\": 0.26899999999999996, \"Viscera_weight\": 0.1385, \"Shell_weight\": 0.25, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.375, \"Height\": 0.13, \"Whole_weight\": 0.523, \"Shucked_weight\": 0.214, \"Viscera_weight\": 0.132, \"Shell_weight\": 0.145, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.37, \"Height\": 0.13, \"Whole_weight\": 0.5225, \"Shucked_weight\": 0.201, \"Viscera_weight\": 0.133, \"Shell_weight\": 0.165, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.375, \"Height\": 0.125, \"Whole_weight\": 0.5785, \"Shucked_weight\": 0.2775, \"Viscera_weight\": 0.085, \"Shell_weight\": 0.155, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.265, \"Height\": 0.095, \"Whole_weight\": 0.2315, \"Shucked_weight\": 0.105, \"Viscera_weight\": 0.046, \"Shell_weight\": 0.075, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.435, \"Height\": 0.145, \"Whole_weight\": 0.843, \"Shucked_weight\": 0.32799999999999996, \"Viscera_weight\": 0.1915, \"Shell_weight\": 0.255, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.435, \"Height\": 0.16, \"Whole_weight\": 0.883, \"Shucked_weight\": 0.316, \"Viscera_weight\": 0.16399999999999998, \"Shell_weight\": 0.335, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.415, \"Height\": 0.14, \"Whole_weight\": 0.7240000000000001, \"Shucked_weight\": 0.3105, \"Viscera_weight\": 0.1675, \"Shell_weight\": 0.205, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.47, \"Height\": 0.16, \"Whole_weight\": 1.1735, \"Shucked_weight\": 0.4975, \"Viscera_weight\": 0.2405, \"Shell_weight\": 0.345, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.41, \"Height\": 0.155, \"Whole_weight\": 0.727, \"Shucked_weight\": 0.29100000000000004, \"Viscera_weight\": 0.1835, \"Shell_weight\": 0.235, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.43, \"Height\": 0.165, \"Whole_weight\": 0.802, \"Shucked_weight\": 0.2935, \"Viscera_weight\": 0.183, \"Shell_weight\": 0.28, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.6675, \"Shucked_weight\": 0.261, \"Viscera_weight\": 0.1315, \"Shell_weight\": 0.22, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.51, \"Diameter\": 0.39, \"Height\": 0.135, \"Whole_weight\": 0.6335, \"Shucked_weight\": 0.231, \"Viscera_weight\": 0.179, \"Shell_weight\": 0.2, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.435, \"Diameter\": 0.395, \"Height\": 0.105, \"Whole_weight\": 0.3635, \"Shucked_weight\": 0.136, \"Viscera_weight\": 0.098, \"Shell_weight\": 0.13, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.395, \"Height\": 0.125, \"Whole_weight\": 0.5415, \"Shucked_weight\": 0.2375, \"Viscera_weight\": 0.1345, \"Shell_weight\": 0.155, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.36, \"Height\": 0.105, \"Whole_weight\": 0.431, \"Shucked_weight\": 0.172, \"Viscera_weight\": 0.107, \"Shell_weight\": 0.175, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.32, \"Height\": 0.08, \"Whole_weight\": 0.3325, \"Shucked_weight\": 0.1485, \"Viscera_weight\": 0.0635, \"Shell_weight\": 0.105, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.425, \"Diameter\": 0.35, \"Height\": 0.105, \"Whole_weight\": 0.39299999999999996, \"Shucked_weight\": 0.13, \"Viscera_weight\": 0.063, \"Shell_weight\": 0.165, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.41, \"Height\": 0.125, \"Whole_weight\": 0.6935, \"Shucked_weight\": 0.2975, \"Viscera_weight\": 0.146, \"Shell_weight\": 0.21, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.415, \"Height\": 0.115, \"Whole_weight\": 0.5915, \"Shucked_weight\": 0.233, \"Viscera_weight\": 0.1585, \"Shell_weight\": 0.18, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.375, \"Height\": 0.135, \"Whole_weight\": 0.6125, \"Shucked_weight\": 0.2555, \"Viscera_weight\": 0.102, \"Shell_weight\": 0.22, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.44, \"Diameter\": 0.34, \"Height\": 0.105, \"Whole_weight\": 0.402, \"Shucked_weight\": 0.1305, \"Viscera_weight\": 0.0955, \"Shell_weight\": 0.165, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.8825, \"Shucked_weight\": 0.3465, \"Viscera_weight\": 0.172, \"Shell_weight\": 0.31, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.405, \"Diameter\": 0.305, \"Height\": 0.085, \"Whole_weight\": 0.2605, \"Shucked_weight\": 0.1145, \"Viscera_weight\": 0.0595, \"Shell_weight\": 0.085, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.365, \"Height\": 0.105, \"Whole_weight\": 0.4205, \"Shucked_weight\": 0.163, \"Viscera_weight\": 0.1035, \"Shell_weight\": 0.14, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.295, \"Height\": 0.085, \"Whole_weight\": 0.2535, \"Shucked_weight\": 0.10300000000000001, \"Viscera_weight\": 0.0575, \"Shell_weight\": 0.085, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.425, \"Height\": 0.14, \"Whole_weight\": 0.7659999999999999, \"Shucked_weight\": 0.304, \"Viscera_weight\": 0.1725, \"Shell_weight\": 0.255, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.37, \"Diameter\": 0.265, \"Height\": 0.075, \"Whole_weight\": 0.214, \"Shucked_weight\": 0.09, \"Viscera_weight\": 0.051, \"Shell_weight\": 0.07, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.28, \"Height\": 0.08, \"Whole_weight\": 0.1755, \"Shucked_weight\": 0.081, \"Viscera_weight\": 0.0505, \"Shell_weight\": 0.07, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.27, \"Diameter\": 0.195, \"Height\": 0.06, \"Whole_weight\": 0.073, \"Shucked_weight\": 0.0285, \"Viscera_weight\": 0.0235, \"Shell_weight\": 0.03, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.275, \"Height\": 0.09, \"Whole_weight\": 0.23800000000000002, \"Shucked_weight\": 0.1075, \"Viscera_weight\": 0.0545, \"Shell_weight\": 0.07, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.29, \"Height\": 0.085, \"Whole_weight\": 0.2505, \"Shucked_weight\": 0.11199999999999999, \"Viscera_weight\": 0.061, \"Shell_weight\": 0.08, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.535, \"Height\": 0.16, \"Whole_weight\": 1.7255, \"Shucked_weight\": 0.63, \"Viscera_weight\": 0.2635, \"Shell_weight\": 0.54, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.71, \"Diameter\": 0.54, \"Height\": 0.165, \"Whole_weight\": 1.959, \"Shucked_weight\": 0.7665, \"Viscera_weight\": 0.261, \"Shell_weight\": 0.78, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.262, \"Shucked_weight\": 0.4835, \"Viscera_weight\": 0.28300000000000003, \"Shell_weight\": 0.41, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.44, \"Diameter\": 0.35, \"Height\": 0.125, \"Whole_weight\": 0.4035, \"Shucked_weight\": 0.175, \"Viscera_weight\": 0.063, \"Shell_weight\": 0.129, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.325, \"Diameter\": 0.26, \"Height\": 0.09, \"Whole_weight\": 0.1915, \"Shucked_weight\": 0.085, \"Viscera_weight\": 0.036000000000000004, \"Shell_weight\": 0.062, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.26, \"Height\": 0.095, \"Whole_weight\": 0.21100000000000002, \"Shucked_weight\": 0.086, \"Viscera_weight\": 0.055999999999999994, \"Shell_weight\": 0.068, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.265, \"Diameter\": 0.2, \"Height\": 0.065, \"Whole_weight\": 0.0975, \"Shucked_weight\": 0.04, \"Viscera_weight\": 0.0205, \"Shell_weight\": 0.027999999999999997, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.425, \"Diameter\": 0.33, \"Height\": 0.115, \"Whole_weight\": 0.406, \"Shucked_weight\": 0.1635, \"Viscera_weight\": 0.081, \"Shell_weight\": 0.1355, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.305, \"Diameter\": 0.23, \"Height\": 0.08, \"Whole_weight\": 0.156, \"Shucked_weight\": 0.0675, \"Viscera_weight\": 0.0345, \"Shell_weight\": 0.048, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.345, \"Diameter\": 0.255, \"Height\": 0.09, \"Whole_weight\": 0.2005, \"Shucked_weight\": 0.094, \"Viscera_weight\": 0.0295, \"Shell_weight\": 0.063, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.405, \"Diameter\": 0.325, \"Height\": 0.11, \"Whole_weight\": 0.3555, \"Shucked_weight\": 0.151, \"Viscera_weight\": 0.063, \"Shell_weight\": 0.11699999999999999, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.375, \"Diameter\": 0.285, \"Height\": 0.095, \"Whole_weight\": 0.253, \"Shucked_weight\": 0.096, \"Viscera_weight\": 0.0575, \"Shell_weight\": 0.0925, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.445, \"Height\": 0.155, \"Whole_weight\": 0.826, \"Shucked_weight\": 0.341, \"Viscera_weight\": 0.2055, \"Shell_weight\": 0.2475, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 0.741, \"Shucked_weight\": 0.295, \"Viscera_weight\": 0.1435, \"Shell_weight\": 0.2665, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.52, \"Height\": 0.19, \"Whole_weight\": 1.3445, \"Shucked_weight\": 0.519, \"Viscera_weight\": 0.306, \"Shell_weight\": 0.4465, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.455, \"Height\": 0.155, \"Whole_weight\": 0.797, \"Shucked_weight\": 0.34, \"Viscera_weight\": 0.19, \"Shell_weight\": 0.2425, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.475, \"Diameter\": 0.375, \"Height\": 0.13, \"Whole_weight\": 0.5175, \"Shucked_weight\": 0.2075, \"Viscera_weight\": 0.1165, \"Shell_weight\": 0.17, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.38, \"Height\": 0.125, \"Whole_weight\": 0.5489999999999999, \"Shucked_weight\": 0.245, \"Viscera_weight\": 0.1075, \"Shell_weight\": 0.174, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.35, \"Height\": 0.12, \"Whole_weight\": 0.515, \"Shucked_weight\": 0.22399999999999998, \"Viscera_weight\": 0.10800000000000001, \"Shell_weight\": 0.1565, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.205, \"Height\": 0.08, \"Whole_weight\": 0.127, \"Shucked_weight\": 0.052000000000000005, \"Viscera_weight\": 0.039, \"Shell_weight\": 0.042, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.175, \"Diameter\": 0.13, \"Height\": 0.055, \"Whole_weight\": 0.0315, \"Shucked_weight\": 0.0105, \"Viscera_weight\": 0.0065, \"Shell_weight\": 0.0125, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.17, \"Diameter\": 0.13, \"Height\": 0.095, \"Whole_weight\": 0.03, \"Shucked_weight\": 0.013000000000000001, \"Viscera_weight\": 0.008, \"Shell_weight\": 0.01, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.475, \"Height\": 0.145, \"Whole_weight\": 1.053, \"Shucked_weight\": 0.4415, \"Viscera_weight\": 0.262, \"Shell_weight\": 0.325, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.5, \"Height\": 0.185, \"Whole_weight\": 1.1185, \"Shucked_weight\": 0.469, \"Viscera_weight\": 0.2585, \"Shell_weight\": 0.335, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.515, \"Height\": 0.19, \"Whole_weight\": 1.3715, \"Shucked_weight\": 0.5065, \"Viscera_weight\": 0.305, \"Shell_weight\": 0.45, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.485, \"Height\": 0.16, \"Whole_weight\": 1.0565, \"Shucked_weight\": 0.37, \"Viscera_weight\": 0.2355, \"Shell_weight\": 0.355, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.45, \"Height\": 0.135, \"Whole_weight\": 0.9885, \"Shucked_weight\": 0.387, \"Viscera_weight\": 0.1495, \"Shell_weight\": 0.31, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.405, \"Height\": 0.13, \"Whole_weight\": 0.722, \"Shucked_weight\": 0.32, \"Viscera_weight\": 0.131, \"Shell_weight\": 0.21, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.46, \"Height\": 0.19, \"Whole_weight\": 0.9940000000000001, \"Shucked_weight\": 0.392, \"Viscera_weight\": 0.2425, \"Shell_weight\": 0.34, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.485, \"Height\": 0.215, \"Whole_weight\": 1.514, \"Shucked_weight\": 0.546, \"Viscera_weight\": 0.2615, \"Shell_weight\": 0.635, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.455, \"Height\": 0.17, \"Whole_weight\": 0.9075, \"Shucked_weight\": 0.374, \"Viscera_weight\": 0.2135, \"Shell_weight\": 0.285, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.46, \"Height\": 0.165, \"Whole_weight\": 1.124, \"Shucked_weight\": 0.2985, \"Viscera_weight\": 0.1785, \"Shell_weight\": 0.44, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.465, \"Height\": 0.165, \"Whole_weight\": 1.056, \"Shucked_weight\": 0.4215, \"Viscera_weight\": 0.2475, \"Shell_weight\": 0.34, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.485, \"Height\": 0.16, \"Whole_weight\": 1.222, \"Shucked_weight\": 0.53, \"Viscera_weight\": 0.2575, \"Shell_weight\": 0.28, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.485, \"Height\": 0.175, \"Whole_weight\": 1.2445, \"Shucked_weight\": 0.544, \"Viscera_weight\": 0.297, \"Shell_weight\": 0.345, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.725, \"Diameter\": 0.56, \"Height\": 0.21, \"Whole_weight\": 2.141, \"Shucked_weight\": 0.65, \"Viscera_weight\": 0.39799999999999996, \"Shell_weight\": 1.005, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.545, \"Height\": 0.23, \"Whole_weight\": 1.7519999999999998, \"Shucked_weight\": 0.5605, \"Viscera_weight\": 0.2895, \"Shell_weight\": 0.815, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.725, \"Diameter\": 0.57, \"Height\": 0.19, \"Whole_weight\": 2.55, \"Shucked_weight\": 1.0705, \"Viscera_weight\": 0.483, \"Shell_weight\": 0.725, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.725, \"Diameter\": 0.575, \"Height\": 0.175, \"Whole_weight\": 2.124, \"Shucked_weight\": 0.765, \"Viscera_weight\": 0.4515, \"Shell_weight\": 0.85, \"Rings\": 20, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.57, \"Height\": 0.205, \"Whole_weight\": 1.8419999999999999, \"Shucked_weight\": 0.625, \"Viscera_weight\": 0.408, \"Shell_weight\": 0.65, \"Rings\": 20, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.705, \"Diameter\": 0.56, \"Height\": 0.22, \"Whole_weight\": 1.9809999999999999, \"Shucked_weight\": 0.8175, \"Viscera_weight\": 0.3085, \"Shell_weight\": 0.76, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.515, \"Height\": 0.175, \"Whole_weight\": 1.6185, \"Shucked_weight\": 0.5125, \"Viscera_weight\": 0.409, \"Shell_weight\": 0.62, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.695, \"Diameter\": 0.55, \"Height\": 0.215, \"Whole_weight\": 1.9565, \"Shucked_weight\": 0.7125, \"Viscera_weight\": 0.541, \"Shell_weight\": 0.59, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.395, \"Height\": 0.145, \"Whole_weight\": 0.775, \"Shucked_weight\": 0.308, \"Viscera_weight\": 0.16899999999999998, \"Shell_weight\": 0.255, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.435, \"Height\": 0.155, \"Whole_weight\": 1.065, \"Shucked_weight\": 0.486, \"Viscera_weight\": 0.233, \"Shell_weight\": 0.285, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.405, \"Height\": 0.115, \"Whole_weight\": 0.7759999999999999, \"Shucked_weight\": 0.32, \"Viscera_weight\": 0.1845, \"Shell_weight\": 0.22, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.235, \"Diameter\": 0.16, \"Height\": 0.04, \"Whole_weight\": 0.048, \"Shucked_weight\": 0.0185, \"Viscera_weight\": 0.018000000000000002, \"Shell_weight\": 0.015, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.26, \"Height\": 0.09, \"Whole_weight\": 0.1785, \"Shucked_weight\": 0.0645, \"Viscera_weight\": 0.037000000000000005, \"Shell_weight\": 0.075, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.315, \"Diameter\": 0.21, \"Height\": 0.06, \"Whole_weight\": 0.125, \"Shucked_weight\": 0.06, \"Viscera_weight\": 0.0375, \"Shell_weight\": 0.035, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.315, \"Diameter\": 0.245, \"Height\": 0.085, \"Whole_weight\": 0.1435, \"Shucked_weight\": 0.053, \"Viscera_weight\": 0.0475, \"Shell_weight\": 0.05, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.225, \"Diameter\": 0.16, \"Height\": 0.045, \"Whole_weight\": 0.0465, \"Shucked_weight\": 0.025, \"Viscera_weight\": 0.015, \"Shell_weight\": 0.015, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 0.97, \"Shucked_weight\": 0.385, \"Viscera_weight\": 0.2165, \"Shell_weight\": 0.35, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.48, \"Height\": 0.18, \"Whole_weight\": 0.9395, \"Shucked_weight\": 0.39899999999999997, \"Viscera_weight\": 0.2, \"Shell_weight\": 0.295, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.368, \"Shucked_weight\": 0.515, \"Viscera_weight\": 0.266, \"Shell_weight\": 0.57, \"Rings\": 21, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 1.0235, \"Shucked_weight\": 0.429, \"Viscera_weight\": 0.268, \"Shell_weight\": 0.3, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.0165, \"Shucked_weight\": 0.4355, \"Viscera_weight\": 0.214, \"Shell_weight\": 0.325, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.51, \"Height\": 0.2, \"Whole_weight\": 1.5675, \"Shucked_weight\": 0.621, \"Viscera_weight\": 0.36700000000000005, \"Shell_weight\": 0.46, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.49, \"Height\": 0.19, \"Whole_weight\": 1.218, \"Shucked_weight\": 0.5455, \"Viscera_weight\": 0.2965, \"Shell_weight\": 0.355, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 1.0525, \"Shucked_weight\": 0.392, \"Viscera_weight\": 0.336, \"Shell_weight\": 0.285, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.5, \"Height\": 0.185, \"Whole_weight\": 1.383, \"Shucked_weight\": 0.54, \"Viscera_weight\": 0.3315, \"Shell_weight\": 0.38, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.48, \"Height\": 0.16, \"Whole_weight\": 1.199, \"Shucked_weight\": 0.5265, \"Viscera_weight\": 0.335, \"Shell_weight\": 0.315, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.46, \"Height\": 0.17, \"Whole_weight\": 0.9325, \"Shucked_weight\": 0.365, \"Viscera_weight\": 0.271, \"Shell_weight\": 0.29, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.48, \"Height\": 0.18, \"Whole_weight\": 1.1595, \"Shucked_weight\": 0.4845, \"Viscera_weight\": 0.2165, \"Shell_weight\": 0.325, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.485, \"Height\": 0.17, \"Whole_weight\": 1.0225, \"Shucked_weight\": 0.419, \"Viscera_weight\": 0.2405, \"Shell_weight\": 0.36, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 0.927, \"Shucked_weight\": 0.276, \"Viscera_weight\": 0.1815, \"Shell_weight\": 0.36, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.275, \"Height\": 0.085, \"Whole_weight\": 0.22, \"Shucked_weight\": 0.092, \"Viscera_weight\": 0.06, \"Shell_weight\": 0.15, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.51, \"Diameter\": 0.4, \"Height\": 0.14, \"Whole_weight\": 0.8145, \"Shucked_weight\": 0.45899999999999996, \"Viscera_weight\": 0.1965, \"Shell_weight\": 0.195, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.405, \"Height\": 0.155, \"Whole_weight\": 0.772, \"Shucked_weight\": 0.34600000000000003, \"Viscera_weight\": 0.1535, \"Shell_weight\": 0.245, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.41, \"Height\": 0.15, \"Whole_weight\": 0.644, \"Shucked_weight\": 0.285, \"Viscera_weight\": 0.145, \"Shell_weight\": 0.21, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.5, \"Height\": 0.185, \"Whole_weight\": 1.3035, \"Shucked_weight\": 0.4445, \"Viscera_weight\": 0.2635, \"Shell_weight\": 0.465, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 0.922, \"Shucked_weight\": 0.43200000000000005, \"Viscera_weight\": 0.17800000000000002, \"Shell_weight\": 0.26, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.46, \"Height\": 0.185, \"Whole_weight\": 0.922, \"Shucked_weight\": 0.3635, \"Viscera_weight\": 0.213, \"Shell_weight\": 0.285, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.45, \"Diameter\": 0.345, \"Height\": 0.12, \"Whole_weight\": 0.4165, \"Shucked_weight\": 0.1655, \"Viscera_weight\": 0.095, \"Shell_weight\": 0.135, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.4, \"Height\": 0.165, \"Whole_weight\": 0.825, \"Shucked_weight\": 0.254, \"Viscera_weight\": 0.205, \"Shell_weight\": 0.285, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.4, \"Height\": 0.145, \"Whole_weight\": 0.63, \"Shucked_weight\": 0.23399999999999999, \"Viscera_weight\": 0.1465, \"Shell_weight\": 0.23, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.435, \"Height\": 0.17, \"Whole_weight\": 0.8155, \"Shucked_weight\": 0.2985, \"Viscera_weight\": 0.155, \"Shell_weight\": 0.275, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.42, \"Diameter\": 0.335, \"Height\": 0.115, \"Whole_weight\": 0.369, \"Shucked_weight\": 0.171, \"Viscera_weight\": 0.071, \"Shell_weight\": 0.12, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.44, \"Diameter\": 0.34, \"Height\": 0.14, \"Whole_weight\": 0.48200000000000004, \"Shucked_weight\": 0.18600000000000003, \"Viscera_weight\": 0.1085, \"Shell_weight\": 0.16, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.3, \"Height\": 0.11, \"Whole_weight\": 0.315, \"Shucked_weight\": 0.109, \"Viscera_weight\": 0.067, \"Shell_weight\": 0.12, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.34, \"Height\": 0.11, \"Whole_weight\": 0.3795, \"Shucked_weight\": 0.1495, \"Viscera_weight\": 0.085, \"Shell_weight\": 0.12, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.415, \"Height\": 0.17, \"Whole_weight\": 0.8325, \"Shucked_weight\": 0.2755, \"Viscera_weight\": 0.1685, \"Shell_weight\": 0.31, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.28, \"Height\": 0.095, \"Whole_weight\": 0.2655, \"Shucked_weight\": 0.122, \"Viscera_weight\": 0.052000000000000005, \"Shell_weight\": 0.08, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.365, \"Height\": 0.145, \"Whole_weight\": 0.6345, \"Shucked_weight\": 0.1995, \"Viscera_weight\": 0.1625, \"Shell_weight\": 0.22, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.335, \"Diameter\": 0.25, \"Height\": 0.09, \"Whole_weight\": 0.18100000000000002, \"Shucked_weight\": 0.0755, \"Viscera_weight\": 0.0415, \"Shell_weight\": 0.06, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.415, \"Diameter\": 0.325, \"Height\": 0.105, \"Whole_weight\": 0.38, \"Shucked_weight\": 0.1595, \"Viscera_weight\": 0.0785, \"Shell_weight\": 0.12, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.405, \"Height\": 0.14, \"Whole_weight\": 0.6155, \"Shucked_weight\": 0.24100000000000002, \"Viscera_weight\": 0.1355, \"Shell_weight\": 0.205, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.485, \"Diameter\": 0.395, \"Height\": 0.16, \"Whole_weight\": 0.66, \"Shucked_weight\": 0.2475, \"Viscera_weight\": 0.128, \"Shell_weight\": 0.235, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.405, \"Height\": 0.14, \"Whole_weight\": 0.8025, \"Shucked_weight\": 0.244, \"Viscera_weight\": 0.1635, \"Shell_weight\": 0.255, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.35, \"Height\": 0.13, \"Whole_weight\": 0.46, \"Shucked_weight\": 0.174, \"Viscera_weight\": 0.111, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.3, \"Height\": 0.12, \"Whole_weight\": 0.324, \"Shucked_weight\": 0.1265, \"Viscera_weight\": 0.07, \"Shell_weight\": 0.11, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.36, \"Height\": 0.135, \"Whole_weight\": 0.501, \"Shucked_weight\": 0.1665, \"Viscera_weight\": 0.115, \"Shell_weight\": 0.165, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.415, \"Diameter\": 0.305, \"Height\": 0.13, \"Whole_weight\": 0.32, \"Shucked_weight\": 0.1305, \"Viscera_weight\": 0.0755, \"Shell_weight\": 0.105, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.445, \"Diameter\": 0.325, \"Height\": 0.125, \"Whole_weight\": 0.455, \"Shucked_weight\": 0.1785, \"Viscera_weight\": 0.1125, \"Shell_weight\": 0.14, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.35, \"Height\": 0.145, \"Whole_weight\": 0.5175, \"Shucked_weight\": 0.187, \"Viscera_weight\": 0.1235, \"Shell_weight\": 0.18, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.375, \"Height\": 0.15, \"Whole_weight\": 0.5755, \"Shucked_weight\": 0.22, \"Viscera_weight\": 0.14400000000000002, \"Shell_weight\": 0.19, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.445, \"Diameter\": 0.355, \"Height\": 0.15, \"Whole_weight\": 0.485, \"Shucked_weight\": 0.18100000000000002, \"Viscera_weight\": 0.125, \"Shell_weight\": 0.155, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.38, \"Height\": 0.105, \"Whole_weight\": 0.3265, \"Shucked_weight\": 0.1285, \"Viscera_weight\": 0.0785, \"Shell_weight\": 0.1, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.37, \"Height\": 0.135, \"Whole_weight\": 0.45, \"Shucked_weight\": 0.1715, \"Viscera_weight\": 0.1055, \"Shell_weight\": 0.155, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.39, \"Diameter\": 0.29, \"Height\": 0.125, \"Whole_weight\": 0.3055, \"Shucked_weight\": 0.121, \"Viscera_weight\": 0.08199999999999999, \"Shell_weight\": 0.09, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.27, \"Height\": 0.085, \"Whole_weight\": 0.205, \"Shucked_weight\": 0.078, \"Viscera_weight\": 0.0485, \"Shell_weight\": 0.07, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.465, \"Height\": 0.165, \"Whole_weight\": 1.1015, \"Shucked_weight\": 0.40399999999999997, \"Viscera_weight\": 0.2095, \"Shell_weight\": 0.35, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.415, \"Height\": 0.16, \"Whole_weight\": 0.7829999999999999, \"Shucked_weight\": 0.2935, \"Viscera_weight\": 0.158, \"Shell_weight\": 0.245, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.445, \"Height\": 0.135, \"Whole_weight\": 0.836, \"Shucked_weight\": 0.336, \"Viscera_weight\": 0.1625, \"Shell_weight\": 0.275, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.175, \"Whole_weight\": 0.9025, \"Shucked_weight\": 0.31, \"Viscera_weight\": 0.193, \"Shell_weight\": 0.325, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.505, \"Height\": 0.215, \"Whole_weight\": 1.4455, \"Shucked_weight\": 0.496, \"Viscera_weight\": 0.287, \"Shell_weight\": 0.435, \"Rings\": 22, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.215, \"Height\": 0.075, \"Whole_weight\": 0.1155, \"Shucked_weight\": 0.0485, \"Viscera_weight\": 0.028999999999999998, \"Shell_weight\": 0.035, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.35, \"Height\": 0.135, \"Whole_weight\": 0.435, \"Shucked_weight\": 0.1815, \"Viscera_weight\": 0.083, \"Shell_weight\": 0.125, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.295, \"Diameter\": 0.225, \"Height\": 0.08, \"Whole_weight\": 0.124, \"Shucked_weight\": 0.0485, \"Viscera_weight\": 0.032, \"Shell_weight\": 0.04, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.075, \"Diameter\": 0.055, \"Height\": 0.01, \"Whole_weight\": 0.002, \"Shucked_weight\": 0.001, \"Viscera_weight\": 0.0005, \"Shell_weight\": 0.0015, \"Rings\": 1, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.13, \"Diameter\": 0.1, \"Height\": 0.03, \"Whole_weight\": 0.013000000000000001, \"Shucked_weight\": 0.0045, \"Viscera_weight\": 0.003, \"Shell_weight\": 0.004, \"Rings\": 3, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.11, \"Diameter\": 0.09, \"Height\": 0.03, \"Whole_weight\": 0.008, \"Shucked_weight\": 0.0025, \"Viscera_weight\": 0.002, \"Shell_weight\": 0.003, \"Rings\": 3, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.16, \"Diameter\": 0.12, \"Height\": 0.035, \"Whole_weight\": 0.021, \"Shucked_weight\": 0.0075, \"Viscera_weight\": 0.0045, \"Shell_weight\": 0.005, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.425, \"Height\": 0.16, \"Whole_weight\": 0.9425, \"Shucked_weight\": 0.3495, \"Viscera_weight\": 0.2185, \"Shell_weight\": 0.275, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.27, \"Diameter\": 0.2, \"Height\": 0.07, \"Whole_weight\": 0.1, \"Shucked_weight\": 0.034, \"Viscera_weight\": 0.0245, \"Shell_weight\": 0.035, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.23, \"Diameter\": 0.175, \"Height\": 0.065, \"Whole_weight\": 0.0645, \"Shucked_weight\": 0.026000000000000002, \"Viscera_weight\": 0.0105, \"Shell_weight\": 0.02, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.3, \"Diameter\": 0.23, \"Height\": 0.08, \"Whole_weight\": 0.1275, \"Shucked_weight\": 0.0435, \"Viscera_weight\": 0.0265, \"Shell_weight\": 0.04, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.33, \"Diameter\": 0.255, \"Height\": 0.085, \"Whole_weight\": 0.1655, \"Shucked_weight\": 0.063, \"Viscera_weight\": 0.039, \"Shell_weight\": 0.06, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.26, \"Height\": 0.085, \"Whole_weight\": 0.174, \"Shucked_weight\": 0.0705, \"Viscera_weight\": 0.0345, \"Shell_weight\": 0.06, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.245, \"Height\": 0.08, \"Whole_weight\": 0.1585, \"Shucked_weight\": 0.0635, \"Viscera_weight\": 0.0325, \"Shell_weight\": 0.05, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.275, \"Height\": 0.085, \"Whole_weight\": 0.1975, \"Shucked_weight\": 0.0745, \"Viscera_weight\": 0.0415, \"Shell_weight\": 0.07, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.305, \"Diameter\": 0.245, \"Height\": 0.075, \"Whole_weight\": 0.156, \"Shucked_weight\": 0.0675, \"Viscera_weight\": 0.038, \"Shell_weight\": 0.045, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.345, \"Diameter\": 0.27, \"Height\": 0.11, \"Whole_weight\": 0.2135, \"Shucked_weight\": 0.08199999999999999, \"Viscera_weight\": 0.0545, \"Shell_weight\": 0.07, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.33, \"Diameter\": 0.25, \"Height\": 0.105, \"Whole_weight\": 0.1715, \"Shucked_weight\": 0.0655, \"Viscera_weight\": 0.035, \"Shell_weight\": 0.06, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.47, \"Height\": 0.18, \"Whole_weight\": 1.1235, \"Shucked_weight\": 0.4205, \"Viscera_weight\": 0.2805, \"Shell_weight\": 0.36, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.455, \"Height\": 0.155, \"Whole_weight\": 1.0605, \"Shucked_weight\": 0.5135, \"Viscera_weight\": 0.2165, \"Shell_weight\": 0.3, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.46, \"Height\": 0.185, \"Whole_weight\": 1.094, \"Shucked_weight\": 0.4485, \"Viscera_weight\": 0.217, \"Shell_weight\": 0.345, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.495, \"Height\": 0.165, \"Whole_weight\": 1.2415, \"Shucked_weight\": 0.485, \"Viscera_weight\": 0.2775, \"Shell_weight\": 0.34, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.45, \"Height\": 0.175, \"Whole_weight\": 1.011, \"Shucked_weight\": 0.3835, \"Viscera_weight\": 0.2065, \"Shell_weight\": 0.37, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.45, \"Height\": 0.185, \"Whole_weight\": 1.07, \"Shucked_weight\": 0.3805, \"Viscera_weight\": 0.175, \"Shell_weight\": 0.41, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.46, \"Height\": 0.16, \"Whole_weight\": 0.8975, \"Shucked_weight\": 0.341, \"Viscera_weight\": 0.1655, \"Shell_weight\": 0.345, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.505, \"Height\": 0.17, \"Whole_weight\": 1.415, \"Shucked_weight\": 0.605, \"Viscera_weight\": 0.297, \"Shell_weight\": 0.365, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.1015, \"Shucked_weight\": 0.4775, \"Viscera_weight\": 0.2555, \"Shell_weight\": 0.295, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.54, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 0.9279999999999999, \"Shucked_weight\": 0.39399999999999996, \"Viscera_weight\": 0.19399999999999998, \"Shell_weight\": 0.26, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.44, \"Height\": 0.125, \"Whole_weight\": 0.865, \"Shucked_weight\": 0.3675, \"Viscera_weight\": 0.1725, \"Shell_weight\": 0.27, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.42, \"Height\": 0.165, \"Whole_weight\": 0.8945, \"Shucked_weight\": 0.319, \"Viscera_weight\": 0.239, \"Shell_weight\": 0.245, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.245, \"Diameter\": 0.195, \"Height\": 0.06, \"Whole_weight\": 0.095, \"Shucked_weight\": 0.0445, \"Viscera_weight\": 0.0245, \"Shell_weight\": 0.026000000000000002, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.27, \"Diameter\": 0.2, \"Height\": 0.08, \"Whole_weight\": 0.1205, \"Shucked_weight\": 0.0465, \"Viscera_weight\": 0.027999999999999997, \"Shell_weight\": 0.04, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.46, \"Diameter\": 0.38, \"Height\": 0.13, \"Whole_weight\": 0.639, \"Shucked_weight\": 0.3, \"Viscera_weight\": 0.1525, \"Shell_weight\": 0.16, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 0.895, \"Shucked_weight\": 0.3615, \"Viscera_weight\": 0.18600000000000003, \"Shell_weight\": 0.235, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.35, \"Diameter\": 0.275, \"Height\": 0.11, \"Whole_weight\": 0.2925, \"Shucked_weight\": 0.1225, \"Viscera_weight\": 0.0635, \"Shell_weight\": 0.0905, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.39, \"Height\": 0.15, \"Whole_weight\": 0.6355, \"Shucked_weight\": 0.2185, \"Viscera_weight\": 0.0885, \"Shell_weight\": 0.255, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.45, \"Diameter\": 0.36, \"Height\": 0.125, \"Whole_weight\": 0.4995, \"Shucked_weight\": 0.2035, \"Viscera_weight\": 0.1, \"Shell_weight\": 0.17, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.525, \"Height\": 0.215, \"Whole_weight\": 1.7790000000000001, \"Shucked_weight\": 0.4535, \"Viscera_weight\": 0.2855, \"Shell_weight\": 0.55, \"Rings\": 22, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.5, \"Height\": 0.2, \"Whole_weight\": 1.187, \"Shucked_weight\": 0.41200000000000003, \"Viscera_weight\": 0.2705, \"Shell_weight\": 0.37, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.485, \"Height\": 0.205, \"Whole_weight\": 1.219, \"Shucked_weight\": 0.3875, \"Viscera_weight\": 0.2505, \"Shell_weight\": 0.385, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.505, \"Height\": 0.225, \"Whole_weight\": 1.525, \"Shucked_weight\": 0.56, \"Viscera_weight\": 0.3335, \"Shell_weight\": 0.45, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.515, \"Height\": 0.155, \"Whole_weight\": 1.2590000000000001, \"Shucked_weight\": 0.4105, \"Viscera_weight\": 0.19699999999999998, \"Shell_weight\": 0.41, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.54, \"Height\": 0.215, \"Whole_weight\": 1.844, \"Shucked_weight\": 0.7425, \"Viscera_weight\": 0.327, \"Shell_weight\": 0.585, \"Rings\": 22, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.53, \"Height\": 0.185, \"Whole_weight\": 1.3485, \"Shucked_weight\": 0.493, \"Viscera_weight\": 0.245, \"Shell_weight\": 0.49, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.5, \"Height\": 0.24, \"Whole_weight\": 1.642, \"Shucked_weight\": 0.532, \"Viscera_weight\": 0.3345, \"Shell_weight\": 0.69, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.525, \"Height\": 0.205, \"Whole_weight\": 1.484, \"Shucked_weight\": 0.55, \"Viscera_weight\": 0.3115, \"Shell_weight\": 0.43, \"Rings\": 20, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.425, \"Height\": 0.135, \"Whole_weight\": 0.7120000000000001, \"Shucked_weight\": 0.2665, \"Viscera_weight\": 0.1605, \"Shell_weight\": 0.25, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.415, \"Height\": 0.185, \"Whole_weight\": 0.8415, \"Shucked_weight\": 0.314, \"Viscera_weight\": 0.1585, \"Shell_weight\": 0.3, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.285, \"Height\": 0.105, \"Whole_weight\": 0.2415, \"Shucked_weight\": 0.0915, \"Viscera_weight\": 0.057, \"Shell_weight\": 0.075, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.455, \"Diameter\": 0.355, \"Height\": 0.12, \"Whole_weight\": 0.4495, \"Shucked_weight\": 0.177, \"Viscera_weight\": 0.10400000000000001, \"Shell_weight\": 0.15, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.485, \"Diameter\": 0.395, \"Height\": 0.14, \"Whole_weight\": 0.6295, \"Shucked_weight\": 0.2285, \"Viscera_weight\": 0.127, \"Shell_weight\": 0.225, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.38, \"Height\": 0.175, \"Whole_weight\": 0.9565, \"Shucked_weight\": 0.325, \"Viscera_weight\": 0.158, \"Shell_weight\": 0.31, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.415, \"Height\": 0.17, \"Whole_weight\": 0.879, \"Shucked_weight\": 0.295, \"Viscera_weight\": 0.1965, \"Shell_weight\": 0.285, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.435, \"Height\": 0.155, \"Whole_weight\": 0.6990000000000001, \"Shucked_weight\": 0.28800000000000003, \"Viscera_weight\": 0.1595, \"Shell_weight\": 0.205, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.495, \"Diameter\": 0.4, \"Height\": 0.155, \"Whole_weight\": 0.6445, \"Shucked_weight\": 0.242, \"Viscera_weight\": 0.1325, \"Shell_weight\": 0.205, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.44, \"Diameter\": 0.355, \"Height\": 0.125, \"Whole_weight\": 0.4775, \"Shucked_weight\": 0.132, \"Viscera_weight\": 0.0815, \"Shell_weight\": 0.19, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.435, \"Height\": 0.16, \"Whole_weight\": 0.8105, \"Shucked_weight\": 0.3155, \"Viscera_weight\": 0.1795, \"Shell_weight\": 0.24, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.435, \"Height\": 0.18, \"Whole_weight\": 0.996, \"Shucked_weight\": 0.3835, \"Viscera_weight\": 0.226, \"Shell_weight\": 0.325, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.505, \"Height\": 0.21, \"Whole_weight\": 1.2765, \"Shucked_weight\": 0.501, \"Viscera_weight\": 0.27899999999999997, \"Shell_weight\": 0.355, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.475, \"Height\": 0.165, \"Whole_weight\": 1.1159999999999999, \"Shucked_weight\": 0.428, \"Viscera_weight\": 0.2205, \"Shell_weight\": 0.315, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.455, \"Height\": 0.175, \"Whole_weight\": 1.013, \"Shucked_weight\": 0.342, \"Viscera_weight\": 0.207, \"Shell_weight\": 0.35, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.495, \"Height\": 0.195, \"Whole_weight\": 1.0575, \"Shucked_weight\": 0.384, \"Viscera_weight\": 0.19, \"Shell_weight\": 0.375, \"Rings\": 26, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.295, \"Diameter\": 0.215, \"Height\": 0.085, \"Whole_weight\": 0.128, \"Shucked_weight\": 0.049, \"Viscera_weight\": 0.034, \"Shell_weight\": 0.04, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.205, \"Height\": 0.075, \"Whole_weight\": 0.1105, \"Shucked_weight\": 0.045, \"Viscera_weight\": 0.0285, \"Shell_weight\": 0.035, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.21, \"Height\": 0.085, \"Whole_weight\": 0.1065, \"Shucked_weight\": 0.039, \"Viscera_weight\": 0.0295, \"Shell_weight\": 0.03, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.395, \"Height\": 0.14, \"Whole_weight\": 0.5489999999999999, \"Shucked_weight\": 0.2215, \"Viscera_weight\": 0.1275, \"Shell_weight\": 0.15, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.37, \"Diameter\": 0.28, \"Height\": 0.105, \"Whole_weight\": 0.23399999999999999, \"Shucked_weight\": 0.0905, \"Viscera_weight\": 0.0585, \"Shell_weight\": 0.075, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.405, \"Diameter\": 0.305, \"Height\": 0.095, \"Whole_weight\": 0.3485, \"Shucked_weight\": 0.1455, \"Viscera_weight\": 0.0895, \"Shell_weight\": 0.1, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.54, \"Diameter\": 0.435, \"Height\": 0.175, \"Whole_weight\": 0.892, \"Shucked_weight\": 0.322, \"Viscera_weight\": 0.174, \"Shell_weight\": 0.335, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.37, \"Diameter\": 0.28, \"Height\": 0.1, \"Whole_weight\": 0.252, \"Shucked_weight\": 0.1065, \"Viscera_weight\": 0.0595, \"Shell_weight\": 0.07400000000000001, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.36, \"Diameter\": 0.27, \"Height\": 0.1, \"Whole_weight\": 0.217, \"Shucked_weight\": 0.0885, \"Viscera_weight\": 0.0495, \"Shell_weight\": 0.0715, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.36, \"Height\": 0.13, \"Whole_weight\": 0.47200000000000003, \"Shucked_weight\": 0.182, \"Viscera_weight\": 0.114, \"Shell_weight\": 0.15, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.2, \"Diameter\": 0.145, \"Height\": 0.06, \"Whole_weight\": 0.037000000000000005, \"Shucked_weight\": 0.0125, \"Viscera_weight\": 0.0095, \"Shell_weight\": 0.011000000000000001, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.165, \"Diameter\": 0.12, \"Height\": 0.03, \"Whole_weight\": 0.0215, \"Shucked_weight\": 0.006999999999999999, \"Viscera_weight\": 0.005, \"Shell_weight\": 0.005, \"Rings\": 3, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.515, \"Height\": 0.24, \"Whole_weight\": 1.5415, \"Shucked_weight\": 0.47100000000000003, \"Viscera_weight\": 0.369, \"Shell_weight\": 0.535, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.41, \"Height\": 0.125, \"Whole_weight\": 0.7605, \"Shucked_weight\": 0.2505, \"Viscera_weight\": 0.1635, \"Shell_weight\": 0.195, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.435, \"Height\": 0.145, \"Whole_weight\": 0.9055, \"Shucked_weight\": 0.3925, \"Viscera_weight\": 0.2355, \"Shell_weight\": 0.275, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.485, \"Height\": 0.19, \"Whole_weight\": 1.2435, \"Shucked_weight\": 0.4635, \"Viscera_weight\": 0.3055, \"Shell_weight\": 0.39, \"Rings\": 21, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.44, \"Height\": 0.14, \"Whole_weight\": 0.971, \"Shucked_weight\": 0.44299999999999995, \"Viscera_weight\": 0.2045, \"Shell_weight\": 0.265, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.455, \"Height\": 0.195, \"Whole_weight\": 1.3305, \"Shucked_weight\": 0.4595, \"Viscera_weight\": 0.3235, \"Shell_weight\": 0.345, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.47, \"Height\": 0.2, \"Whole_weight\": 1.2255, \"Shucked_weight\": 0.381, \"Viscera_weight\": 0.27, \"Shell_weight\": 0.435, \"Rings\": 23, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.485, \"Height\": 0.175, \"Whole_weight\": 1.3, \"Shucked_weight\": 0.4335, \"Viscera_weight\": 0.2945, \"Shell_weight\": 0.46, \"Rings\": 23, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.355, \"Height\": 0.11, \"Whole_weight\": 0.4585, \"Shucked_weight\": 0.19399999999999998, \"Viscera_weight\": 0.067, \"Shell_weight\": 0.14, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.535, \"Height\": 0.19, \"Whole_weight\": 1.242, \"Shucked_weight\": 0.5760000000000001, \"Viscera_weight\": 0.2475, \"Shell_weight\": 0.39, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.35, \"Height\": 0.1, \"Whole_weight\": 0.3675, \"Shucked_weight\": 0.1465, \"Viscera_weight\": 0.1015, \"Shell_weight\": 0.12, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.455, \"Height\": 0.155, \"Whole_weight\": 0.8365, \"Shucked_weight\": 0.315, \"Viscera_weight\": 0.1385, \"Shell_weight\": 0.32, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.33, \"Diameter\": 0.255, \"Height\": 0.095, \"Whole_weight\": 0.172, \"Shucked_weight\": 0.066, \"Viscera_weight\": 0.0255, \"Shell_weight\": 0.06, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.265, \"Diameter\": 0.21, \"Height\": 0.06, \"Whole_weight\": 0.0965, \"Shucked_weight\": 0.0425, \"Viscera_weight\": 0.022000000000000002, \"Shell_weight\": 0.03, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.19, \"Diameter\": 0.145, \"Height\": 0.04, \"Whole_weight\": 0.038, \"Shucked_weight\": 0.0165, \"Viscera_weight\": 0.0065, \"Shell_weight\": 0.015, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.385, \"Diameter\": 0.31, \"Height\": 0.1, \"Whole_weight\": 0.2845, \"Shucked_weight\": 0.1065, \"Viscera_weight\": 0.075, \"Shell_weight\": 0.1, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.265, \"Diameter\": 0.205, \"Height\": 0.07, \"Whole_weight\": 0.1055, \"Shucked_weight\": 0.039, \"Viscera_weight\": 0.040999999999999995, \"Shell_weight\": 0.035, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.335, \"Diameter\": 0.265, \"Height\": 0.105, \"Whole_weight\": 0.222, \"Shucked_weight\": 0.0935, \"Viscera_weight\": 0.055999999999999994, \"Shell_weight\": 0.075, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.275, \"Height\": 0.09, \"Whole_weight\": 0.251, \"Shucked_weight\": 0.09699999999999999, \"Viscera_weight\": 0.053, \"Shell_weight\": 0.08, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.255, \"Height\": 0.1, \"Whole_weight\": 0.1755, \"Shucked_weight\": 0.073, \"Viscera_weight\": 0.0415, \"Shell_weight\": 0.065, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.6435, \"Shucked_weight\": 0.27, \"Viscera_weight\": 0.1665, \"Shell_weight\": 0.205, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.36, \"Diameter\": 0.295, \"Height\": 0.105, \"Whole_weight\": 0.24100000000000002, \"Shucked_weight\": 0.0865, \"Viscera_weight\": 0.053, \"Shell_weight\": 0.095, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.28, \"Height\": 0.09, \"Whole_weight\": 0.2255, \"Shucked_weight\": 0.0885, \"Viscera_weight\": 0.04, \"Shell_weight\": 0.09, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.38, \"Height\": 0.155, \"Whole_weight\": 0.5955, \"Shucked_weight\": 0.2135, \"Viscera_weight\": 0.161, \"Shell_weight\": 0.2, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.4, \"Diameter\": 0.325, \"Height\": 0.12, \"Whole_weight\": 0.3185, \"Shucked_weight\": 0.134, \"Viscera_weight\": 0.0565, \"Shell_weight\": 0.095, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.3, \"Diameter\": 0.22, \"Height\": 0.08, \"Whole_weight\": 0.121, \"Shucked_weight\": 0.0475, \"Viscera_weight\": 0.042, \"Shell_weight\": 0.035, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.235, \"Diameter\": 0.175, \"Height\": 0.04, \"Whole_weight\": 0.0705, \"Shucked_weight\": 0.0335, \"Viscera_weight\": 0.015, \"Shell_weight\": 0.02, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.74, \"Diameter\": 0.6, \"Height\": 0.195, \"Whole_weight\": 1.974, \"Shucked_weight\": 0.598, \"Viscera_weight\": 0.4085, \"Shell_weight\": 0.71, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.465, \"Height\": 0.19, \"Whole_weight\": 1.3415, \"Shucked_weight\": 0.5705, \"Viscera_weight\": 0.3175, \"Shell_weight\": 0.355, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.19, \"Whole_weight\": 1.0875, \"Shucked_weight\": 0.40299999999999997, \"Viscera_weight\": 0.2655, \"Shell_weight\": 0.325, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.45, \"Height\": 0.185, \"Whole_weight\": 1.2830000000000001, \"Shucked_weight\": 0.473, \"Viscera_weight\": 0.276, \"Shell_weight\": 0.425, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.475, \"Height\": 0.185, \"Whole_weight\": 1.325, \"Shucked_weight\": 0.6045, \"Viscera_weight\": 0.325, \"Shell_weight\": 0.33, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.45, \"Height\": 0.195, \"Whole_weight\": 1.0035, \"Shucked_weight\": 0.406, \"Viscera_weight\": 0.2505, \"Shell_weight\": 0.285, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.455, \"Height\": 0.145, \"Whole_weight\": 1.165, \"Shucked_weight\": 0.581, \"Viscera_weight\": 0.2275, \"Shell_weight\": 0.3, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.51, \"Height\": 0.205, \"Whole_weight\": 1.3475, \"Shucked_weight\": 0.4775, \"Viscera_weight\": 0.2565, \"Shell_weight\": 0.48, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.465, \"Height\": 0.185, \"Whole_weight\": 1.274, \"Shucked_weight\": 0.579, \"Viscera_weight\": 0.3065, \"Shell_weight\": 0.32, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.375, \"Height\": 0.18, \"Whole_weight\": 0.568, \"Shucked_weight\": 0.2325, \"Viscera_weight\": 0.1495, \"Shell_weight\": 0.17, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.46, \"Diameter\": 0.425, \"Height\": 0.155, \"Whole_weight\": 0.746, \"Shucked_weight\": 0.3005, \"Viscera_weight\": 0.152, \"Shell_weight\": 0.24, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.39, \"Height\": 0.14, \"Whole_weight\": 0.7070000000000001, \"Shucked_weight\": 0.2795, \"Viscera_weight\": 0.2185, \"Shell_weight\": 0.18, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.42, \"Height\": 0.16, \"Whole_weight\": 0.7559999999999999, \"Shucked_weight\": 0.2745, \"Viscera_weight\": 0.17300000000000001, \"Shell_weight\": 0.275, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.34, \"Diameter\": 0.26, \"Height\": 0.08, \"Whole_weight\": 0.2, \"Shucked_weight\": 0.08, \"Viscera_weight\": 0.0555, \"Shell_weight\": 0.055, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.305, \"Height\": 0.115, \"Whole_weight\": 0.2715, \"Shucked_weight\": 0.092, \"Viscera_weight\": 0.07400000000000001, \"Shell_weight\": 0.09, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 1.2, \"Shucked_weight\": 0.56, \"Viscera_weight\": 0.2455, \"Shell_weight\": 0.28, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.495, \"Height\": 0.185, \"Whole_weight\": 1.153, \"Shucked_weight\": 0.536, \"Viscera_weight\": 0.2905, \"Shell_weight\": 0.245, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.45, \"Height\": 0.17, \"Whole_weight\": 0.8685, \"Shucked_weight\": 0.3325, \"Viscera_weight\": 0.1635, \"Shell_weight\": 0.27, \"Rings\": 22, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.46, \"Height\": 0.14, \"Whole_weight\": 0.9535, \"Shucked_weight\": 0.4465, \"Viscera_weight\": 0.2065, \"Shell_weight\": 0.245, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.455, \"Height\": 0.17, \"Whole_weight\": 0.93, \"Shucked_weight\": 0.408, \"Viscera_weight\": 0.259, \"Shell_weight\": 0.22, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.515, \"Height\": 0.17, \"Whole_weight\": 1.275, \"Shucked_weight\": 0.509, \"Viscera_weight\": 0.28600000000000003, \"Shell_weight\": 0.34, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.58, \"Height\": 0.205, \"Whole_weight\": 2.13, \"Shucked_weight\": 0.7415, \"Viscera_weight\": 0.49, \"Shell_weight\": 0.58, \"Rings\": 20, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.675, \"Diameter\": 0.525, \"Height\": 0.185, \"Whole_weight\": 1.587, \"Shucked_weight\": 0.6935, \"Viscera_weight\": 0.336, \"Shell_weight\": 0.395, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.525, \"Height\": 0.19, \"Whole_weight\": 1.8085, \"Shucked_weight\": 0.7035, \"Viscera_weight\": 0.3885, \"Shell_weight\": 0.395, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.745, \"Diameter\": 0.585, \"Height\": 0.215, \"Whole_weight\": 2.499, \"Shucked_weight\": 0.9265, \"Viscera_weight\": 0.47200000000000003, \"Shell_weight\": 0.7, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.685, \"Diameter\": 0.545, \"Height\": 0.18, \"Whole_weight\": 1.768, \"Shucked_weight\": 0.7495, \"Viscera_weight\": 0.392, \"Shell_weight\": 0.485, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.49, \"Height\": 0.18, \"Whole_weight\": 1.227, \"Shucked_weight\": 0.48, \"Viscera_weight\": 0.287, \"Shell_weight\": 0.35, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 0.997, \"Shucked_weight\": 0.392, \"Viscera_weight\": 0.24600000000000002, \"Shell_weight\": 0.34, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.525, \"Height\": 0.175, \"Whole_weight\": 1.4225, \"Shucked_weight\": 0.61, \"Viscera_weight\": 0.2995, \"Shell_weight\": 0.445, \"Rings\": 20, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 1.0290000000000001, \"Shucked_weight\": 0.4085, \"Viscera_weight\": 0.2705, \"Shell_weight\": 0.295, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.186, \"Shucked_weight\": 0.4985, \"Viscera_weight\": 0.3015, \"Shell_weight\": 0.35, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.515, \"Height\": 0.16, \"Whole_weight\": 1.016, \"Shucked_weight\": 0.4215, \"Viscera_weight\": 0.244, \"Shell_weight\": 0.355, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.465, \"Height\": 0.145, \"Whole_weight\": 0.887, \"Shucked_weight\": 0.4405, \"Viscera_weight\": 0.1655, \"Shell_weight\": 0.265, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.455, \"Height\": 0.12, \"Whole_weight\": 1.0735, \"Shucked_weight\": 0.479, \"Viscera_weight\": 0.2735, \"Shell_weight\": 0.265, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.49, \"Height\": 0.18, \"Whole_weight\": 1.13, \"Shucked_weight\": 0.45799999999999996, \"Viscera_weight\": 0.2765, \"Shell_weight\": 0.315, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.69, \"Diameter\": 0.56, \"Height\": 0.215, \"Whole_weight\": 1.719, \"Shucked_weight\": 0.68, \"Viscera_weight\": 0.299, \"Shell_weight\": 0.47, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.545, \"Height\": 0.165, \"Whole_weight\": 1.5659999999999998, \"Shucked_weight\": 0.6645, \"Viscera_weight\": 0.3455, \"Shell_weight\": 0.415, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.565, \"Height\": 0.195, \"Whole_weight\": 1.7605, \"Shucked_weight\": 0.6920000000000001, \"Viscera_weight\": 0.3265, \"Shell_weight\": 0.5, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.58, \"Height\": 0.2, \"Whole_weight\": 1.787, \"Shucked_weight\": 0.585, \"Viscera_weight\": 0.45299999999999996, \"Shell_weight\": 0.6, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.575, \"Height\": 0.17, \"Whole_weight\": 1.31, \"Shucked_weight\": 0.5095, \"Viscera_weight\": 0.314, \"Shell_weight\": 0.42, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.685, \"Diameter\": 0.52, \"Height\": 0.15, \"Whole_weight\": 1.3430000000000002, \"Shucked_weight\": 0.4635, \"Viscera_weight\": 0.292, \"Shell_weight\": 0.4, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.545, \"Height\": 0.195, \"Whole_weight\": 1.7345, \"Shucked_weight\": 0.6845, \"Viscera_weight\": 0.3695, \"Shell_weight\": 0.605, \"Rings\": 20, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.49, \"Height\": 0.19, \"Whole_weight\": 1.1775, \"Shucked_weight\": 0.4935, \"Viscera_weight\": 0.3365, \"Shell_weight\": 0.285, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 1.077, \"Shucked_weight\": 0.4995, \"Viscera_weight\": 0.2875, \"Shell_weight\": 0.25, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.465, \"Height\": 0.175, \"Whole_weight\": 0.995, \"Shucked_weight\": 0.3895, \"Viscera_weight\": 0.183, \"Shell_weight\": 0.37, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.495, \"Height\": 0.185, \"Whole_weight\": 1.1085, \"Shucked_weight\": 0.3705, \"Viscera_weight\": 0.3135, \"Shell_weight\": 0.33, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.47, \"Height\": 0.18, \"Whole_weight\": 1.1405, \"Shucked_weight\": 0.3755, \"Viscera_weight\": 0.2805, \"Shell_weight\": 0.385, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.42, \"Height\": 0.145, \"Whole_weight\": 0.7909999999999999, \"Shucked_weight\": 0.33, \"Viscera_weight\": 0.18899999999999997, \"Shell_weight\": 0.25, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.485, \"Diameter\": 0.4, \"Height\": 0.135, \"Whole_weight\": 0.6629999999999999, \"Shucked_weight\": 0.313, \"Viscera_weight\": 0.13699999999999998, \"Shell_weight\": 0.2, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.5565, \"Shucked_weight\": 0.226, \"Viscera_weight\": 0.122, \"Shell_weight\": 0.195, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.425, \"Height\": 0.135, \"Whole_weight\": 0.8445, \"Shucked_weight\": 0.373, \"Viscera_weight\": 0.21, \"Shell_weight\": 0.235, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.455, \"Diameter\": 0.37, \"Height\": 0.105, \"Whole_weight\": 0.4925, \"Shucked_weight\": 0.21600000000000003, \"Viscera_weight\": 0.1245, \"Shell_weight\": 0.135, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.42, \"Height\": 0.155, \"Whole_weight\": 0.7385, \"Shucked_weight\": 0.3515, \"Viscera_weight\": 0.152, \"Shell_weight\": 0.215, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.48200000000000004, \"Shucked_weight\": 0.207, \"Viscera_weight\": 0.1225, \"Shell_weight\": 0.145, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.42, \"Height\": 0.125, \"Whole_weight\": 0.609, \"Shucked_weight\": 0.239, \"Viscera_weight\": 0.1435, \"Shell_weight\": 0.22, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.47100000000000003, \"Shucked_weight\": 0.222, \"Viscera_weight\": 0.11900000000000001, \"Shell_weight\": 0.14, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.3215, \"Shucked_weight\": 0.1535, \"Viscera_weight\": 0.0595, \"Shell_weight\": 0.105, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.475, \"Diameter\": 0.375, \"Height\": 0.125, \"Whole_weight\": 0.593, \"Shucked_weight\": 0.27699999999999997, \"Viscera_weight\": 0.115, \"Shell_weight\": 0.18, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.375, \"Height\": 0.125, \"Whole_weight\": 0.5615, \"Shucked_weight\": 0.252, \"Viscera_weight\": 0.13699999999999998, \"Shell_weight\": 0.18, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.295, \"Height\": 0.095, \"Whole_weight\": 0.25, \"Shucked_weight\": 0.1075, \"Viscera_weight\": 0.0545, \"Shell_weight\": 0.08, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.345, \"Diameter\": 0.275, \"Height\": 0.095, \"Whole_weight\": 0.1995, \"Shucked_weight\": 0.0755, \"Viscera_weight\": 0.0535, \"Shell_weight\": 0.07, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.31, \"Height\": 0.1, \"Whole_weight\": 0.302, \"Shucked_weight\": 0.11599999999999999, \"Viscera_weight\": 0.064, \"Shell_weight\": 0.115, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.395, \"Height\": 0.14, \"Whole_weight\": 0.7155, \"Shucked_weight\": 0.3165, \"Viscera_weight\": 0.17600000000000002, \"Shell_weight\": 0.24, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.38, \"Height\": 0.145, \"Whole_weight\": 0.5865, \"Shucked_weight\": 0.2385, \"Viscera_weight\": 0.14400000000000002, \"Shell_weight\": 0.185, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 0.6765, \"Shucked_weight\": 0.256, \"Viscera_weight\": 0.139, \"Shell_weight\": 0.26, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 0.987, \"Shucked_weight\": 0.4355, \"Viscera_weight\": 0.2075, \"Shell_weight\": 0.31, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.485, \"Diameter\": 0.365, \"Height\": 0.12, \"Whole_weight\": 0.5885, \"Shucked_weight\": 0.27, \"Viscera_weight\": 0.131, \"Shell_weight\": 0.175, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.455, \"Height\": 0.135, \"Whole_weight\": 0.7225, \"Shucked_weight\": 0.295, \"Viscera_weight\": 0.1625, \"Shell_weight\": 0.235, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.435, \"Diameter\": 0.325, \"Height\": 0.11, \"Whole_weight\": 0.4335, \"Shucked_weight\": 0.17800000000000002, \"Viscera_weight\": 0.0985, \"Shell_weight\": 0.155, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.415, \"Height\": 0.14, \"Whole_weight\": 0.6935, \"Shucked_weight\": 0.3115, \"Viscera_weight\": 0.152, \"Shell_weight\": 0.2, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.345, \"Height\": 0.12, \"Whole_weight\": 0.365, \"Shucked_weight\": 0.1655, \"Viscera_weight\": 0.083, \"Shell_weight\": 0.11, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 0.8425, \"Shucked_weight\": 0.3685, \"Viscera_weight\": 0.1985, \"Shell_weight\": 0.24, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.355, \"Height\": 0.115, \"Whole_weight\": 0.479, \"Shucked_weight\": 0.2125, \"Viscera_weight\": 0.1045, \"Shell_weight\": 0.15, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.485, \"Height\": 0.12, \"Whole_weight\": 0.9109999999999999, \"Shucked_weight\": 0.39, \"Viscera_weight\": 0.182, \"Shell_weight\": 0.29, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 0.915, \"Shucked_weight\": 0.4, \"Viscera_weight\": 0.24600000000000002, \"Shell_weight\": 0.285, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.44, \"Height\": 0.095, \"Whole_weight\": 0.8270000000000001, \"Shucked_weight\": 0.3395, \"Viscera_weight\": 0.2215, \"Shell_weight\": 0.235, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.1045, \"Shucked_weight\": 0.4565, \"Viscera_weight\": 0.2425, \"Shell_weight\": 0.34, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.475, \"Height\": 0.12, \"Whole_weight\": 0.945, \"Shucked_weight\": 0.41, \"Viscera_weight\": 0.2115, \"Shell_weight\": 0.28, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.12, \"Whole_weight\": 0.9935, \"Shucked_weight\": 0.4625, \"Viscera_weight\": 0.2385, \"Shell_weight\": 0.28, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.44, \"Height\": 0.12, \"Whole_weight\": 0.8565, \"Shucked_weight\": 0.3475, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.24, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.495, \"Height\": 0.17, \"Whole_weight\": 1.2385, \"Shucked_weight\": 0.528, \"Viscera_weight\": 0.2465, \"Shell_weight\": 0.39, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.47, \"Height\": 0.14, \"Whole_weight\": 1.0325, \"Shucked_weight\": 0.3605, \"Viscera_weight\": 0.22399999999999998, \"Shell_weight\": 0.36, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.5, \"Height\": 0.17, \"Whole_weight\": 1.3135, \"Shucked_weight\": 0.5595, \"Viscera_weight\": 0.267, \"Shell_weight\": 0.4, \"Rings\": 20, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.515, \"Height\": 0.165, \"Whole_weight\": 1.3519999999999999, \"Shucked_weight\": 0.488, \"Viscera_weight\": 0.349, \"Shell_weight\": 0.45, \"Rings\": 20, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.5, \"Height\": 0.155, \"Whole_weight\": 1.005, \"Shucked_weight\": 0.36700000000000005, \"Viscera_weight\": 0.19899999999999998, \"Shell_weight\": 0.36, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.41, \"Height\": 0.14, \"Whole_weight\": 0.625, \"Shucked_weight\": 0.223, \"Viscera_weight\": 0.16, \"Shell_weight\": 0.235, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.54, \"Height\": 0.165, \"Whole_weight\": 1.5015, \"Shucked_weight\": 0.518, \"Viscera_weight\": 0.358, \"Shell_weight\": 0.505, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.49, \"Diameter\": 0.38, \"Height\": 0.12, \"Whole_weight\": 0.529, \"Shucked_weight\": 0.2165, \"Viscera_weight\": 0.139, \"Shell_weight\": 0.155, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.39, \"Height\": 0.135, \"Whole_weight\": 0.5785, \"Shucked_weight\": 0.2465, \"Viscera_weight\": 0.12300000000000001, \"Shell_weight\": 0.2, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.29, \"Diameter\": 0.225, \"Height\": 0.07, \"Whole_weight\": 0.10099999999999999, \"Shucked_weight\": 0.036000000000000004, \"Viscera_weight\": 0.0235, \"Shell_weight\": 0.035, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.26, \"Diameter\": 0.2, \"Height\": 0.07, \"Whole_weight\": 0.092, \"Shucked_weight\": 0.037000000000000005, \"Viscera_weight\": 0.02, \"Shell_weight\": 0.03, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.175, \"Whole_weight\": 1.068, \"Shucked_weight\": 0.425, \"Viscera_weight\": 0.203, \"Shell_weight\": 0.32, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.485, \"Height\": 0.165, \"Whole_weight\": 1.0915, \"Shucked_weight\": 0.3935, \"Viscera_weight\": 0.2435, \"Shell_weight\": 0.33, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.5, \"Height\": 0.16, \"Whole_weight\": 1.015, \"Shucked_weight\": 0.3995, \"Viscera_weight\": 0.1735, \"Shell_weight\": 0.33, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.455, \"Height\": 0.125, \"Whole_weight\": 0.943, \"Shucked_weight\": 0.344, \"Viscera_weight\": 0.129, \"Shell_weight\": 0.375, \"Rings\": 21, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.17, \"Whole_weight\": 1.0475, \"Shucked_weight\": 0.3775, \"Viscera_weight\": 0.1705, \"Shell_weight\": 0.385, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.175, \"Whole_weight\": 0.9555, \"Shucked_weight\": 0.38, \"Viscera_weight\": 0.1665, \"Shell_weight\": 0.295, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 1.036, \"Shucked_weight\": 0.4375, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.325, \"Rings\": 20, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.455, \"Height\": 0.17, \"Whole_weight\": 0.9065, \"Shucked_weight\": 0.342, \"Viscera_weight\": 0.156, \"Shell_weight\": 0.32, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.42, \"Height\": 0.14, \"Whole_weight\": 0.7505, \"Shucked_weight\": 0.2475, \"Viscera_weight\": 0.13, \"Shell_weight\": 0.255, \"Rings\": 22, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.345, \"Height\": 0.1, \"Whole_weight\": 0.366, \"Shucked_weight\": 0.122, \"Viscera_weight\": 0.0905, \"Shell_weight\": 0.12, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.41, \"Height\": 0.15, \"Whole_weight\": 0.662, \"Shucked_weight\": 0.2815, \"Viscera_weight\": 0.13699999999999998, \"Shell_weight\": 0.22, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.275, \"Height\": 0.095, \"Whole_weight\": 0.217, \"Shucked_weight\": 0.084, \"Viscera_weight\": 0.0435, \"Shell_weight\": 0.09, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.305, \"Height\": 0.095, \"Whole_weight\": 0.252, \"Shucked_weight\": 0.0915, \"Viscera_weight\": 0.055, \"Shell_weight\": 0.09, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.39, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.3055, \"Shucked_weight\": 0.14300000000000002, \"Viscera_weight\": 0.0645, \"Shell_weight\": 0.085, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.415, \"Height\": 0.165, \"Whole_weight\": 0.6885, \"Shucked_weight\": 0.249, \"Viscera_weight\": 0.138, \"Shell_weight\": 0.25, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.275, \"Height\": 0.11, \"Whole_weight\": 0.2335, \"Shucked_weight\": 0.095, \"Viscera_weight\": 0.0525, \"Shell_weight\": 0.085, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.26, \"Height\": 0.1, \"Whole_weight\": 0.192, \"Shucked_weight\": 0.0785, \"Viscera_weight\": 0.0585, \"Shell_weight\": 0.07, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.425, \"Height\": 0.14, \"Whole_weight\": 0.85, \"Shucked_weight\": 0.275, \"Viscera_weight\": 0.1625, \"Shell_weight\": 0.285, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.295, \"Height\": 0.1, \"Whole_weight\": 0.2715, \"Shucked_weight\": 0.134, \"Viscera_weight\": 0.0325, \"Shell_weight\": 0.085, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.41, \"Diameter\": 0.325, \"Height\": 0.105, \"Whole_weight\": 0.3635, \"Shucked_weight\": 0.159, \"Viscera_weight\": 0.077, \"Shell_weight\": 0.12, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.455, \"Height\": 0.19, \"Whole_weight\": 0.7140000000000001, \"Shucked_weight\": 0.28300000000000003, \"Viscera_weight\": 0.129, \"Shell_weight\": 0.275, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.435, \"Height\": 0.185, \"Whole_weight\": 0.9815, \"Shucked_weight\": 0.32899999999999996, \"Viscera_weight\": 0.136, \"Shell_weight\": 0.39, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.455, \"Height\": 0.185, \"Whole_weight\": 0.9265, \"Shucked_weight\": 0.354, \"Viscera_weight\": 0.1575, \"Shell_weight\": 0.375, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.0979999999999999, \"Shucked_weight\": 0.4765, \"Viscera_weight\": 0.23199999999999998, \"Shell_weight\": 0.375, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 0.8205, \"Shucked_weight\": 0.365, \"Viscera_weight\": 0.159, \"Shell_weight\": 0.26, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.725, \"Diameter\": 0.565, \"Height\": 0.215, \"Whole_weight\": 1.891, \"Shucked_weight\": 0.6975, \"Viscera_weight\": 0.4725, \"Shell_weight\": 0.58, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.535, \"Height\": 0.16, \"Whole_weight\": 1.41, \"Shucked_weight\": 0.5920000000000001, \"Viscera_weight\": 0.3175, \"Shell_weight\": 0.42, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.555, \"Height\": 0.195, \"Whole_weight\": 1.4385, \"Shucked_weight\": 0.581, \"Viscera_weight\": 0.354, \"Shell_weight\": 0.36, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.49, \"Height\": 0.155, \"Whole_weight\": 0.9245, \"Shucked_weight\": 0.405, \"Viscera_weight\": 0.2195, \"Shell_weight\": 0.255, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.55, \"Height\": 0.175, \"Whole_weight\": 1.2915, \"Shucked_weight\": 0.57, \"Viscera_weight\": 0.3045, \"Shell_weight\": 0.33, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.47, \"Height\": 0.14, \"Whole_weight\": 0.8375, \"Shucked_weight\": 0.3485, \"Viscera_weight\": 0.1735, \"Shell_weight\": 0.24, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.54, \"Height\": 0.175, \"Whole_weight\": 1.2209999999999999, \"Shucked_weight\": 0.51, \"Viscera_weight\": 0.259, \"Shell_weight\": 0.39, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.28, \"Height\": 0.105, \"Whole_weight\": 0.19899999999999998, \"Shucked_weight\": 0.0695, \"Viscera_weight\": 0.045, \"Shell_weight\": 0.08, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.31, \"Height\": 0.11, \"Whole_weight\": 0.2965, \"Shucked_weight\": 0.12300000000000001, \"Viscera_weight\": 0.057, \"Shell_weight\": 0.0995, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.41, \"Height\": 0.135, \"Whole_weight\": 0.7085, \"Shucked_weight\": 0.293, \"Viscera_weight\": 0.1525, \"Shell_weight\": 0.235, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.38, \"Diameter\": 0.285, \"Height\": 0.1, \"Whole_weight\": 0.2665, \"Shucked_weight\": 0.115, \"Viscera_weight\": 0.061, \"Shell_weight\": 0.075, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.465, \"Height\": 0.17, \"Whole_weight\": 0.9915, \"Shucked_weight\": 0.3865, \"Viscera_weight\": 0.22399999999999998, \"Shell_weight\": 0.265, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.24, \"Diameter\": 0.185, \"Height\": 0.07, \"Whole_weight\": 0.0715, \"Shucked_weight\": 0.026000000000000002, \"Viscera_weight\": 0.018000000000000002, \"Shell_weight\": 0.025, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.22, \"Diameter\": 0.165, \"Height\": 0.055, \"Whole_weight\": 0.0545, \"Shucked_weight\": 0.0215, \"Viscera_weight\": 0.012, \"Shell_weight\": 0.02, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.255, \"Diameter\": 0.195, \"Height\": 0.07, \"Whole_weight\": 0.0735, \"Shucked_weight\": 0.0255, \"Viscera_weight\": 0.02, \"Shell_weight\": 0.025, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.175, \"Diameter\": 0.125, \"Height\": 0.05, \"Whole_weight\": 0.0235, \"Shucked_weight\": 0.008, \"Viscera_weight\": 0.0035, \"Shell_weight\": 0.008, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.55, \"Height\": 0.19, \"Whole_weight\": 1.3905, \"Shucked_weight\": 0.5425, \"Viscera_weight\": 0.3035, \"Shell_weight\": 0.4, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.53, \"Height\": 0.195, \"Whole_weight\": 1.3880000000000001, \"Shucked_weight\": 0.5670000000000001, \"Viscera_weight\": 0.2735, \"Shell_weight\": 0.41, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.55, \"Height\": 0.21, \"Whole_weight\": 1.7445, \"Shucked_weight\": 0.5975, \"Viscera_weight\": 0.305, \"Shell_weight\": 0.625, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.675, \"Diameter\": 0.555, \"Height\": 0.2, \"Whole_weight\": 1.4385, \"Shucked_weight\": 0.545, \"Viscera_weight\": 0.2665, \"Shell_weight\": 0.465, \"Rings\": 21, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.44, \"Height\": 0.135, \"Whole_weight\": 0.7835, \"Shucked_weight\": 0.313, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.2185, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.405, \"Height\": 0.12, \"Whole_weight\": 0.6459999999999999, \"Shucked_weight\": 0.2895, \"Viscera_weight\": 0.1405, \"Shell_weight\": 0.177, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.34, \"Height\": 0.12, \"Whole_weight\": 0.3575, \"Shucked_weight\": 0.151, \"Viscera_weight\": 0.0645, \"Shell_weight\": 0.1045, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.405, \"Height\": 0.12, \"Whole_weight\": 0.627, \"Shucked_weight\": 0.2645, \"Viscera_weight\": 0.1415, \"Shell_weight\": 0.18100000000000002, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.415, \"Height\": 0.16, \"Whole_weight\": 0.7715, \"Shucked_weight\": 0.272, \"Viscera_weight\": 0.1455, \"Shell_weight\": 0.2765, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.415, \"Height\": 0.175, \"Whole_weight\": 0.7395, \"Shucked_weight\": 0.261, \"Viscera_weight\": 0.1395, \"Shell_weight\": 0.2645, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.465, \"Diameter\": 0.35, \"Height\": 0.115, \"Whole_weight\": 0.42100000000000004, \"Shucked_weight\": 0.1565, \"Viscera_weight\": 0.091, \"Shell_weight\": 0.1345, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.54, \"Height\": 0.175, \"Whole_weight\": 1.347, \"Shucked_weight\": 0.4955, \"Viscera_weight\": 0.254, \"Shell_weight\": 0.415, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.735, \"Diameter\": 0.59, \"Height\": 0.225, \"Whole_weight\": 1.756, \"Shucked_weight\": 0.637, \"Viscera_weight\": 0.3405, \"Shell_weight\": 0.58, \"Rings\": 21, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.545, \"Height\": 0.185, \"Whole_weight\": 1.32, \"Shucked_weight\": 0.5305, \"Viscera_weight\": 0.2635, \"Shell_weight\": 0.455, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.585, \"Height\": 0.185, \"Whole_weight\": 1.8075, \"Shucked_weight\": 0.7055, \"Viscera_weight\": 0.3215, \"Shell_weight\": 0.475, \"Rings\": 29, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.4, \"Height\": 0.155, \"Whole_weight\": 0.9325, \"Shucked_weight\": 0.3605, \"Viscera_weight\": 0.2445, \"Shell_weight\": 0.3, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.465, \"Height\": 0.125, \"Whole_weight\": 0.8490000000000001, \"Shucked_weight\": 0.3785, \"Viscera_weight\": 0.1765, \"Shell_weight\": 0.24, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.15, \"Whole_weight\": 0.9955, \"Shucked_weight\": 0.429, \"Viscera_weight\": 0.212, \"Shell_weight\": 0.26, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.48, \"Height\": 0.145, \"Whole_weight\": 1.0115, \"Shucked_weight\": 0.4235, \"Viscera_weight\": 0.237, \"Shell_weight\": 0.305, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.465, \"Height\": 0.14, \"Whole_weight\": 0.9079999999999999, \"Shucked_weight\": 0.381, \"Viscera_weight\": 0.1615, \"Shell_weight\": 0.315, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.45, \"Height\": 0.13, \"Whole_weight\": 0.92, \"Shucked_weight\": 0.37799999999999995, \"Viscera_weight\": 0.2385, \"Shell_weight\": 0.29, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.515, \"Height\": 0.15, \"Whole_weight\": 1.2415, \"Shucked_weight\": 0.5235, \"Viscera_weight\": 0.3065, \"Shell_weight\": 0.36, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.42, \"Height\": 0.135, \"Whole_weight\": 0.8075, \"Shucked_weight\": 0.3485, \"Viscera_weight\": 0.1795, \"Shell_weight\": 0.235, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.455, \"Height\": 0.165, \"Whole_weight\": 1.0595, \"Shucked_weight\": 0.44, \"Viscera_weight\": 0.2195, \"Shell_weight\": 0.285, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.455, \"Height\": 0.145, \"Whole_weight\": 1.073, \"Shucked_weight\": 0.475, \"Viscera_weight\": 0.19, \"Shell_weight\": 0.285, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.13, \"Whole_weight\": 0.9209999999999999, \"Shucked_weight\": 0.35700000000000004, \"Viscera_weight\": 0.18100000000000002, \"Shell_weight\": 0.29, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.51, \"Height\": 0.155, \"Whole_weight\": 1.2895, \"Shucked_weight\": 0.5345, \"Viscera_weight\": 0.2855, \"Shell_weight\": 0.41, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.53, \"Height\": 0.175, \"Whole_weight\": 1.2635, \"Shucked_weight\": 0.486, \"Viscera_weight\": 0.2635, \"Shell_weight\": 0.415, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.5, \"Height\": 0.195, \"Whole_weight\": 1.369, \"Shucked_weight\": 0.5875, \"Viscera_weight\": 0.2185, \"Shell_weight\": 0.37, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.5, \"Height\": 0.15, \"Whole_weight\": 0.953, \"Shucked_weight\": 0.3445, \"Viscera_weight\": 0.2235, \"Shell_weight\": 0.305, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.52, \"Height\": 0.175, \"Whole_weight\": 1.248, \"Shucked_weight\": 0.4245, \"Viscera_weight\": 0.2595, \"Shell_weight\": 0.48, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.485, \"Height\": 0.165, \"Whole_weight\": 1.0105, \"Shucked_weight\": 0.435, \"Viscera_weight\": 0.209, \"Shell_weight\": 0.3, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.525, \"Height\": 0.155, \"Whole_weight\": 1.0385, \"Shucked_weight\": 0.42700000000000005, \"Viscera_weight\": 0.2315, \"Shell_weight\": 0.345, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.45, \"Height\": 0.175, \"Whole_weight\": 0.8740000000000001, \"Shucked_weight\": 0.3275, \"Viscera_weight\": 0.20199999999999999, \"Shell_weight\": 0.305, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.44, \"Height\": 0.18, \"Whole_weight\": 0.8540000000000001, \"Shucked_weight\": 0.3665, \"Viscera_weight\": 0.1635, \"Shell_weight\": 0.245, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.52, \"Height\": 0.225, \"Whole_weight\": 1.1835, \"Shucked_weight\": 0.37799999999999995, \"Viscera_weight\": 0.27, \"Shell_weight\": 0.395, \"Rings\": 23, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.47, \"Height\": 0.225, \"Whole_weight\": 1.115, \"Shucked_weight\": 0.37799999999999995, \"Viscera_weight\": 0.2145, \"Shell_weight\": 0.36, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.505, \"Height\": 0.19, \"Whole_weight\": 1.129, \"Shucked_weight\": 0.4385, \"Viscera_weight\": 0.256, \"Shell_weight\": 0.36, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.485, \"Height\": 0.19, \"Whole_weight\": 1.1745, \"Shucked_weight\": 0.4385, \"Viscera_weight\": 0.2305, \"Shell_weight\": 0.42, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.47, \"Height\": 0.175, \"Whole_weight\": 1.105, \"Shucked_weight\": 0.4865, \"Viscera_weight\": 0.247, \"Shell_weight\": 0.315, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.46, \"Height\": 0.235, \"Whole_weight\": 0.8395, \"Shucked_weight\": 0.3325, \"Viscera_weight\": 0.157, \"Shell_weight\": 0.305, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.455, \"Height\": 0.225, \"Whole_weight\": 1.055, \"Shucked_weight\": 0.3815, \"Viscera_weight\": 0.221, \"Shell_weight\": 0.365, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.435, \"Height\": 0.18, \"Whole_weight\": 0.889, \"Shucked_weight\": 0.36, \"Viscera_weight\": 0.204, \"Shell_weight\": 0.25, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.445, \"Height\": 0.155, \"Whole_weight\": 0.8735, \"Shucked_weight\": 0.3005, \"Viscera_weight\": 0.209, \"Shell_weight\": 0.275, \"Rings\": 16, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.68, \"Diameter\": 0.53, \"Height\": 0.185, \"Whole_weight\": 1.1095, \"Shucked_weight\": 0.439, \"Viscera_weight\": 0.245, \"Shell_weight\": 0.34, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.455, \"Diameter\": 0.35, \"Height\": 0.14, \"Whole_weight\": 0.5185, \"Shucked_weight\": 0.221, \"Viscera_weight\": 0.1265, \"Shell_weight\": 0.135, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.38, \"Height\": 0.145, \"Whole_weight\": 0.6725, \"Shucked_weight\": 0.249, \"Viscera_weight\": 0.18100000000000002, \"Shell_weight\": 0.21, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.31, \"Diameter\": 0.22, \"Height\": 0.085, \"Whole_weight\": 0.146, \"Shucked_weight\": 0.061, \"Viscera_weight\": 0.0365, \"Shell_weight\": 0.045, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.275, \"Diameter\": 0.195, \"Height\": 0.07, \"Whole_weight\": 0.08, \"Shucked_weight\": 0.031, \"Viscera_weight\": 0.0215, \"Shell_weight\": 0.025, \"Rings\": 5, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.27, \"Diameter\": 0.195, \"Height\": 0.08, \"Whole_weight\": 0.1, \"Shucked_weight\": 0.0385, \"Viscera_weight\": 0.0195, \"Shell_weight\": 0.03, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.4, \"Diameter\": 0.29, \"Height\": 0.115, \"Whole_weight\": 0.2795, \"Shucked_weight\": 0.1115, \"Viscera_weight\": 0.0575, \"Shell_weight\": 0.075, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.28, \"Diameter\": 0.2, \"Height\": 0.08, \"Whole_weight\": 0.0915, \"Shucked_weight\": 0.033, \"Viscera_weight\": 0.0215, \"Shell_weight\": 0.03, \"Rings\": 5, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.325, \"Diameter\": 0.23, \"Height\": 0.09, \"Whole_weight\": 0.147, \"Shucked_weight\": 0.06, \"Viscera_weight\": 0.034, \"Shell_weight\": 0.045, \"Rings\": 4, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.345, \"Diameter\": 0.25, \"Height\": 0.09, \"Whole_weight\": 0.203, \"Shucked_weight\": 0.078, \"Viscera_weight\": 0.059000000000000004, \"Shell_weight\": 0.055, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.21, \"Diameter\": 0.15, \"Height\": 0.05, \"Whole_weight\": 0.0385, \"Shucked_weight\": 0.0155, \"Viscera_weight\": 0.0085, \"Shell_weight\": 0.01, \"Rings\": 3, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.36, \"Diameter\": 0.27, \"Height\": 0.09, \"Whole_weight\": 0.1885, \"Shucked_weight\": 0.0845, \"Viscera_weight\": 0.0385, \"Shell_weight\": 0.055, \"Rings\": 5, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.26, \"Height\": 0.115, \"Whole_weight\": 0.218, \"Shucked_weight\": 0.0935, \"Viscera_weight\": 0.0445, \"Shell_weight\": 0.07, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.2, \"Diameter\": 0.14, \"Height\": 0.055, \"Whole_weight\": 0.035, \"Shucked_weight\": 0.0145, \"Viscera_weight\": 0.008, \"Shell_weight\": 0.01, \"Rings\": 5, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.235, \"Diameter\": 0.16, \"Height\": 0.06, \"Whole_weight\": 0.0545, \"Shucked_weight\": 0.0265, \"Viscera_weight\": 0.0095, \"Shell_weight\": 0.015, \"Rings\": 4, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.175, \"Diameter\": 0.125, \"Height\": 0.04, \"Whole_weight\": 0.024, \"Shucked_weight\": 0.0095, \"Viscera_weight\": 0.006, \"Shell_weight\": 0.005, \"Rings\": 4, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.155, \"Diameter\": 0.11, \"Height\": 0.04, \"Whole_weight\": 0.0155, \"Shucked_weight\": 0.0065, \"Viscera_weight\": 0.003, \"Shell_weight\": 0.005, \"Rings\": 3, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.445, \"Height\": 0.155, \"Whole_weight\": 0.733, \"Shucked_weight\": 0.282, \"Viscera_weight\": 0.159, \"Shell_weight\": 0.235, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 0.9715, \"Shucked_weight\": 0.3965, \"Viscera_weight\": 0.255, \"Shell_weight\": 0.26, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.385, \"Diameter\": 0.3, \"Height\": 0.095, \"Whole_weight\": 0.24, \"Shucked_weight\": 0.0885, \"Viscera_weight\": 0.059000000000000004, \"Shell_weight\": 0.085, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.42, \"Height\": 0.185, \"Whole_weight\": 0.752, \"Shucked_weight\": 0.299, \"Viscera_weight\": 0.156, \"Shell_weight\": 0.205, \"Rings\": 20, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.46, \"Diameter\": 0.355, \"Height\": 0.13, \"Whole_weight\": 0.45799999999999996, \"Shucked_weight\": 0.192, \"Viscera_weight\": 0.1055, \"Shell_weight\": 0.13, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.37, \"Height\": 0.12, \"Whole_weight\": 0.4705, \"Shucked_weight\": 0.1845, \"Viscera_weight\": 0.1055, \"Shell_weight\": 0.155, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.435, \"Diameter\": 0.335, \"Height\": 0.11, \"Whole_weight\": 0.38, \"Shucked_weight\": 0.1695, \"Viscera_weight\": 0.086, \"Shell_weight\": 0.11, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.37, \"Height\": 0.14, \"Whole_weight\": 0.4985, \"Shucked_weight\": 0.2095, \"Viscera_weight\": 0.1225, \"Shell_weight\": 0.145, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.38, \"Height\": 0.13, \"Whole_weight\": 0.45399999999999996, \"Shucked_weight\": 0.1895, \"Viscera_weight\": 0.08, \"Shell_weight\": 0.155, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.405, \"Height\": 0.14, \"Whole_weight\": 0.5775, \"Shucked_weight\": 0.2, \"Viscera_weight\": 0.145, \"Shell_weight\": 0.179, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.29, \"Diameter\": 0.23, \"Height\": 0.075, \"Whole_weight\": 0.1165, \"Shucked_weight\": 0.043, \"Viscera_weight\": 0.0255, \"Shell_weight\": 0.04, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.275, \"Diameter\": 0.205, \"Height\": 0.07, \"Whole_weight\": 0.094, \"Shucked_weight\": 0.0335, \"Viscera_weight\": 0.02, \"Shell_weight\": 0.0325, \"Rings\": 5, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.375, \"Diameter\": 0.29, \"Height\": 0.115, \"Whole_weight\": 0.2705, \"Shucked_weight\": 0.09300000000000001, \"Viscera_weight\": 0.066, \"Shell_weight\": 0.0885, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.375, \"Height\": 0.14, \"Whole_weight\": 0.604, \"Shucked_weight\": 0.242, \"Viscera_weight\": 0.1415, \"Shell_weight\": 0.179, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.44, \"Diameter\": 0.355, \"Height\": 0.115, \"Whole_weight\": 0.415, \"Shucked_weight\": 0.1585, \"Viscera_weight\": 0.0925, \"Shell_weight\": 0.131, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.42, \"Diameter\": 0.325, \"Height\": 0.115, \"Whole_weight\": 0.2885, \"Shucked_weight\": 0.1, \"Viscera_weight\": 0.057, \"Shell_weight\": 0.1135, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.445, \"Diameter\": 0.35, \"Height\": 0.115, \"Whole_weight\": 0.3615, \"Shucked_weight\": 0.1565, \"Viscera_weight\": 0.0695, \"Shell_weight\": 0.11699999999999999, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.38, \"Diameter\": 0.29, \"Height\": 0.105, \"Whole_weight\": 0.257, \"Shucked_weight\": 0.099, \"Viscera_weight\": 0.051, \"Shell_weight\": 0.085, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.32, \"Diameter\": 0.245, \"Height\": 0.075, \"Whole_weight\": 0.1555, \"Shucked_weight\": 0.0585, \"Viscera_weight\": 0.038, \"Shell_weight\": 0.049, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.255, \"Diameter\": 0.195, \"Height\": 0.065, \"Whole_weight\": 0.08, \"Shucked_weight\": 0.0315, \"Viscera_weight\": 0.018000000000000002, \"Shell_weight\": 0.027000000000000003, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.205, \"Diameter\": 0.155, \"Height\": 0.045, \"Whole_weight\": 0.0425, \"Shucked_weight\": 0.017, \"Viscera_weight\": 0.0055, \"Shell_weight\": 0.0155, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 0.795, \"Shucked_weight\": 0.3605, \"Viscera_weight\": 0.1555, \"Shell_weight\": 0.23, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.555, \"Diameter\": 0.425, \"Height\": 0.18, \"Whole_weight\": 0.875, \"Shucked_weight\": 0.3695, \"Viscera_weight\": 0.2005, \"Shell_weight\": 0.255, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.65, \"Diameter\": 0.515, \"Height\": 0.16, \"Whole_weight\": 1.1625, \"Shucked_weight\": 0.495, \"Viscera_weight\": 0.203, \"Shell_weight\": 0.33, \"Rings\": 17, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.615, \"Diameter\": 0.49, \"Height\": 0.155, \"Whole_weight\": 0.9885, \"Shucked_weight\": 0.4145, \"Viscera_weight\": 0.195, \"Shell_weight\": 0.345, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.44, \"Height\": 0.165, \"Whole_weight\": 0.8, \"Shucked_weight\": 0.335, \"Viscera_weight\": 0.1735, \"Shell_weight\": 0.25, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.37, \"Height\": 0.12, \"Whole_weight\": 0.514, \"Shucked_weight\": 0.2075, \"Viscera_weight\": 0.131, \"Shell_weight\": 0.155, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.39, \"Height\": 0.125, \"Whole_weight\": 0.591, \"Shucked_weight\": 0.287, \"Viscera_weight\": 0.141, \"Shell_weight\": 0.12, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.385, \"Height\": 0.15, \"Whole_weight\": 0.6265, \"Shucked_weight\": 0.2605, \"Viscera_weight\": 0.1665, \"Shell_weight\": 0.16, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.405, \"Height\": 0.15, \"Whole_weight\": 0.795, \"Shucked_weight\": 0.3075, \"Viscera_weight\": 0.205, \"Shell_weight\": 0.255, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.1905, \"Shucked_weight\": 0.4585, \"Viscera_weight\": 0.298, \"Shell_weight\": 0.37, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.53, \"Height\": 0.17, \"Whole_weight\": 1.3259999999999998, \"Shucked_weight\": 0.519, \"Viscera_weight\": 0.2625, \"Shell_weight\": 0.44, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.4, \"Height\": 0.145, \"Whole_weight\": 0.66, \"Shucked_weight\": 0.267, \"Viscera_weight\": 0.1055, \"Shell_weight\": 0.22, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.44, \"Diameter\": 0.34, \"Height\": 0.105, \"Whole_weight\": 0.364, \"Shucked_weight\": 0.14800000000000002, \"Viscera_weight\": 0.0805, \"Shell_weight\": 0.1175, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.4, \"Height\": 0.12, \"Whole_weight\": 0.659, \"Shucked_weight\": 0.2705, \"Viscera_weight\": 0.179, \"Shell_weight\": 0.17, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.35, \"Height\": 0.115, \"Whole_weight\": 0.452, \"Shucked_weight\": 0.1715, \"Viscera_weight\": 0.092, \"Shell_weight\": 0.155, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.415, \"Height\": 0.15, \"Whole_weight\": 0.7335, \"Shucked_weight\": 0.2795, \"Viscera_weight\": 0.163, \"Shell_weight\": 0.2185, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.355, \"Height\": 0.13, \"Whole_weight\": 0.5465, \"Shucked_weight\": 0.2005, \"Viscera_weight\": 0.126, \"Shell_weight\": 0.185, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.35, \"Diameter\": 0.255, \"Height\": 0.065, \"Whole_weight\": 0.179, \"Shucked_weight\": 0.0705, \"Viscera_weight\": 0.0385, \"Shell_weight\": 0.06, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.355, \"Height\": 0.13, \"Whole_weight\": 0.581, \"Shucked_weight\": 0.245, \"Viscera_weight\": 0.132, \"Shell_weight\": 0.168, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.33, \"Height\": 0.125, \"Whole_weight\": 0.406, \"Shucked_weight\": 0.1685, \"Viscera_weight\": 0.1055, \"Shell_weight\": 0.096, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.28, \"Diameter\": 0.21, \"Height\": 0.08, \"Whole_weight\": 0.1085, \"Shucked_weight\": 0.040999999999999995, \"Viscera_weight\": 0.0265, \"Shell_weight\": 0.0345, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.41, \"Diameter\": 0.32, \"Height\": 0.115, \"Whole_weight\": 0.387, \"Shucked_weight\": 0.165, \"Viscera_weight\": 0.1005, \"Shell_weight\": 0.0985, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.35, \"Height\": 0.14, \"Whole_weight\": 0.474, \"Shucked_weight\": 0.21, \"Viscera_weight\": 0.109, \"Shell_weight\": 0.1275, \"Rings\": 16, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.345, \"Height\": 0.135, \"Whole_weight\": 0.44299999999999995, \"Shucked_weight\": 0.1975, \"Viscera_weight\": 0.0875, \"Shell_weight\": 0.1175, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.455, \"Height\": 0.155, \"Whole_weight\": 1.0659999999999998, \"Shucked_weight\": 0.382, \"Viscera_weight\": 0.2275, \"Shell_weight\": 0.415, \"Rings\": 20, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.44, \"Height\": 0.14, \"Whole_weight\": 0.9535, \"Shucked_weight\": 0.3785, \"Viscera_weight\": 0.201, \"Shell_weight\": 0.305, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.61, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 0.9665, \"Shucked_weight\": 0.4145, \"Viscera_weight\": 0.2, \"Shell_weight\": 0.345, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.475, \"Height\": 0.14, \"Whole_weight\": 1.133, \"Shucked_weight\": 0.5275, \"Viscera_weight\": 0.2355, \"Shell_weight\": 0.35, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.425, \"Height\": 0.14, \"Whole_weight\": 0.9175, \"Shucked_weight\": 0.4005, \"Viscera_weight\": 0.1975, \"Shell_weight\": 0.26, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.435, \"Height\": 0.175, \"Whole_weight\": 0.982, \"Shucked_weight\": 0.4055, \"Viscera_weight\": 0.2495, \"Shell_weight\": 0.27, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.58, \"Diameter\": 0.445, \"Height\": 0.15, \"Whole_weight\": 0.8865, \"Shucked_weight\": 0.38299999999999995, \"Viscera_weight\": 0.209, \"Shell_weight\": 0.255, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.48, \"Height\": 0.175, \"Whole_weight\": 1.3675, \"Shucked_weight\": 0.5015, \"Viscera_weight\": 0.3035, \"Shell_weight\": 0.515, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.175, \"Whole_weight\": 1.2329999999999999, \"Shucked_weight\": 0.5565, \"Viscera_weight\": 0.247, \"Shell_weight\": 0.365, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.15, \"Whole_weight\": 0.8059999999999999, \"Shucked_weight\": 0.376, \"Viscera_weight\": 0.171, \"Shell_weight\": 0.245, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.525, \"Height\": 0.19, \"Whole_weight\": 1.4635, \"Shucked_weight\": 0.6615, \"Viscera_weight\": 0.3435, \"Shell_weight\": 0.435, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.355, \"Height\": 0.14, \"Whole_weight\": 0.4935, \"Shucked_weight\": 0.21600000000000003, \"Viscera_weight\": 0.133, \"Shell_weight\": 0.115, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.41, \"Diameter\": 0.305, \"Height\": 0.1, \"Whole_weight\": 0.363, \"Shucked_weight\": 0.1735, \"Viscera_weight\": 0.065, \"Shell_weight\": 0.11, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.39, \"Height\": 0.125, \"Whole_weight\": 0.6655, \"Shucked_weight\": 0.284, \"Viscera_weight\": 0.162, \"Shell_weight\": 0.2, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.425, \"Height\": 0.17, \"Whole_weight\": 0.6805, \"Shucked_weight\": 0.28, \"Viscera_weight\": 0.174, \"Shell_weight\": 0.195, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.41, \"Height\": 0.145, \"Whole_weight\": 0.8285, \"Shucked_weight\": 0.3095, \"Viscera_weight\": 0.1905, \"Shell_weight\": 0.25, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.335, \"Height\": 0.14, \"Whole_weight\": 0.4625, \"Shucked_weight\": 0.16399999999999998, \"Viscera_weight\": 0.076, \"Shell_weight\": 0.15, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.405, \"Diameter\": 0.31, \"Height\": 0.12, \"Whole_weight\": 0.3095, \"Shucked_weight\": 0.138, \"Viscera_weight\": 0.057999999999999996, \"Shell_weight\": 0.095, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.4, \"Height\": 0.15, \"Whole_weight\": 0.745, \"Shucked_weight\": 0.2865, \"Viscera_weight\": 0.1675, \"Shell_weight\": 0.235, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.37, \"Diameter\": 0.29, \"Height\": 0.115, \"Whole_weight\": 0.25, \"Shucked_weight\": 0.111, \"Viscera_weight\": 0.057, \"Shell_weight\": 0.075, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.41, \"Height\": 0.175, \"Whole_weight\": 0.8740000000000001, \"Shucked_weight\": 0.3585, \"Viscera_weight\": 0.207, \"Shell_weight\": 0.205, \"Rings\": 18, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.52, \"Height\": 0.18, \"Whole_weight\": 1.514, \"Shucked_weight\": 0.526, \"Viscera_weight\": 0.2975, \"Shell_weight\": 0.42, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.42, \"Height\": 0.15, \"Whole_weight\": 0.6995, \"Shucked_weight\": 0.2575, \"Viscera_weight\": 0.153, \"Shell_weight\": 0.24, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.455, \"Height\": 0.18, \"Whole_weight\": 0.8525, \"Shucked_weight\": 0.3015, \"Viscera_weight\": 0.1825, \"Shell_weight\": 0.3, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.43, \"Height\": 0.14, \"Whole_weight\": 0.7135, \"Shucked_weight\": 0.2565, \"Viscera_weight\": 0.18600000000000003, \"Shell_weight\": 0.225, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.605, \"Diameter\": 0.47, \"Height\": 0.14, \"Whole_weight\": 0.9390000000000001, \"Shucked_weight\": 0.3385, \"Viscera_weight\": 0.201, \"Shell_weight\": 0.32, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.605, \"Diameter\": 0.495, \"Height\": 0.145, \"Whole_weight\": 1.054, \"Shucked_weight\": 0.369, \"Viscera_weight\": 0.2255, \"Shell_weight\": 0.36, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.445, \"Height\": 0.195, \"Whole_weight\": 0.981, \"Shucked_weight\": 0.305, \"Viscera_weight\": 0.2245, \"Shell_weight\": 0.335, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.42, \"Height\": 0.145, \"Whole_weight\": 0.9259999999999999, \"Shucked_weight\": 0.39799999999999996, \"Viscera_weight\": 0.1965, \"Shell_weight\": 0.25, \"Rings\": 17, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.385, \"Diameter\": 0.315, \"Height\": 0.11, \"Whole_weight\": 0.28600000000000003, \"Shucked_weight\": 0.1225, \"Viscera_weight\": 0.0635, \"Shell_weight\": 0.0835, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.39, \"Diameter\": 0.3, \"Height\": 0.1, \"Whole_weight\": 0.265, \"Shucked_weight\": 0.1075, \"Viscera_weight\": 0.06, \"Shell_weight\": 0.0865, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.345, \"Height\": 0.115, \"Whole_weight\": 0.4885, \"Shucked_weight\": 0.2005, \"Viscera_weight\": 0.10800000000000001, \"Shell_weight\": 0.166, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.39, \"Height\": 0.14, \"Whole_weight\": 0.5555, \"Shucked_weight\": 0.2, \"Viscera_weight\": 0.1135, \"Shell_weight\": 0.2235, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.345, \"Height\": 0.125, \"Whole_weight\": 0.425, \"Shucked_weight\": 0.16, \"Viscera_weight\": 0.0795, \"Shell_weight\": 0.154, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.345, \"Diameter\": 0.27, \"Height\": 0.09, \"Whole_weight\": 0.195, \"Shucked_weight\": 0.078, \"Viscera_weight\": 0.0455, \"Shell_weight\": 0.059000000000000004, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.37, \"Height\": 0.13, \"Whole_weight\": 0.45799999999999996, \"Shucked_weight\": 0.18100000000000002, \"Viscera_weight\": 0.113, \"Shell_weight\": 0.136, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.37, \"Diameter\": 0.285, \"Height\": 0.1, \"Whole_weight\": 0.228, \"Shucked_weight\": 0.0675, \"Viscera_weight\": 0.0675, \"Shell_weight\": 0.081, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.35, \"Diameter\": 0.265, \"Height\": 0.09, \"Whole_weight\": 0.1775, \"Shucked_weight\": 0.0575, \"Viscera_weight\": 0.042, \"Shell_weight\": 0.068, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.44, \"Diameter\": 0.345, \"Height\": 0.17, \"Whole_weight\": 0.4085, \"Shucked_weight\": 0.15, \"Viscera_weight\": 0.0825, \"Shell_weight\": 0.1515, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.195, \"Diameter\": 0.145, \"Height\": 0.05, \"Whole_weight\": 0.032, \"Shucked_weight\": 0.01, \"Viscera_weight\": 0.008, \"Shell_weight\": 0.012, \"Rings\": 4, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.325, \"Diameter\": 0.24, \"Height\": 0.075, \"Whole_weight\": 0.155, \"Shucked_weight\": 0.0475, \"Viscera_weight\": 0.0355, \"Shell_weight\": 0.06, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.37, \"Height\": 0.125, \"Whole_weight\": 0.4775, \"Shucked_weight\": 0.185, \"Viscera_weight\": 0.0705, \"Shell_weight\": 0.16899999999999998, \"Rings\": 18, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.35, \"Height\": 0.145, \"Whole_weight\": 0.525, \"Shucked_weight\": 0.2085, \"Viscera_weight\": 0.1, \"Shell_weight\": 0.1655, \"Rings\": 15, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.415, \"Diameter\": 0.345, \"Height\": 0.135, \"Whole_weight\": 0.3865, \"Shucked_weight\": 0.128, \"Viscera_weight\": 0.07, \"Shell_weight\": 0.14800000000000002, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.355, \"Height\": 0.14, \"Whole_weight\": 0.433, \"Shucked_weight\": 0.1525, \"Viscera_weight\": 0.095, \"Shell_weight\": 0.152, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.32, \"Diameter\": 0.24, \"Height\": 0.085, \"Whole_weight\": 0.17, \"Shucked_weight\": 0.0655, \"Viscera_weight\": 0.047, \"Shell_weight\": 0.049, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.31, \"Diameter\": 0.225, \"Height\": 0.075, \"Whole_weight\": 0.1295, \"Shucked_weight\": 0.0455, \"Viscera_weight\": 0.0335, \"Shell_weight\": 0.044000000000000004, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.235, \"Diameter\": 0.17, \"Height\": 0.055, \"Whole_weight\": 0.0515, \"Shucked_weight\": 0.018000000000000002, \"Viscera_weight\": 0.0105, \"Shell_weight\": 0.0195, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.345, \"Diameter\": 0.255, \"Height\": 0.08, \"Whole_weight\": 0.16899999999999998, \"Shucked_weight\": 0.06, \"Viscera_weight\": 0.0425, \"Shell_weight\": 0.054000000000000006, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.38, \"Height\": 0.14, \"Whole_weight\": 0.6729999999999999, \"Shucked_weight\": 0.2175, \"Viscera_weight\": 0.13, \"Shell_weight\": 0.195, \"Rings\": 18, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.385, \"Height\": 0.115, \"Whole_weight\": 0.6785, \"Shucked_weight\": 0.2945, \"Viscera_weight\": 0.138, \"Shell_weight\": 0.195, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.385, \"Height\": 0.105, \"Whole_weight\": 0.498, \"Shucked_weight\": 0.1795, \"Viscera_weight\": 0.1095, \"Shell_weight\": 0.17, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.36, \"Height\": 0.105, \"Whole_weight\": 0.498, \"Shucked_weight\": 0.214, \"Viscera_weight\": 0.11599999999999999, \"Shell_weight\": 0.14, \"Rings\": 15, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.405, \"Height\": 0.16, \"Whole_weight\": 0.6579999999999999, \"Shucked_weight\": 0.2655, \"Viscera_weight\": 0.1125, \"Shell_weight\": 0.225, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.425, \"Diameter\": 0.335, \"Height\": 0.095, \"Whole_weight\": 0.322, \"Shucked_weight\": 0.1205, \"Viscera_weight\": 0.061, \"Shell_weight\": 0.125, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.38, \"Diameter\": 0.305, \"Height\": 0.095, \"Whole_weight\": 0.2815, \"Shucked_weight\": 0.1255, \"Viscera_weight\": 0.0525, \"Shell_weight\": 0.09, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.415, \"Height\": 0.145, \"Whole_weight\": 0.9440000000000001, \"Shucked_weight\": 0.3845, \"Viscera_weight\": 0.185, \"Shell_weight\": 0.265, \"Rings\": 21, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.34, \"Diameter\": 0.265, \"Height\": 0.085, \"Whole_weight\": 0.1835, \"Shucked_weight\": 0.077, \"Viscera_weight\": 0.046, \"Shell_weight\": 0.065, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.365, \"Height\": 0.115, \"Whole_weight\": 0.49, \"Shucked_weight\": 0.223, \"Viscera_weight\": 0.1235, \"Shell_weight\": 0.1335, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.43, \"Diameter\": 0.34, \"Height\": 0.12, \"Whole_weight\": 0.391, \"Shucked_weight\": 0.1555, \"Viscera_weight\": 0.095, \"Shell_weight\": 0.1405, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.365, \"Height\": 0.125, \"Whole_weight\": 0.467, \"Shucked_weight\": 0.1895, \"Viscera_weight\": 0.0945, \"Shell_weight\": 0.158, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.36, \"Height\": 0.13, \"Whole_weight\": 0.5225, \"Shucked_weight\": 0.198, \"Viscera_weight\": 0.1065, \"Shell_weight\": 0.165, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.36, \"Diameter\": 0.295, \"Height\": 0.1, \"Whole_weight\": 0.2105, \"Shucked_weight\": 0.066, \"Viscera_weight\": 0.0525, \"Shell_weight\": 0.075, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.355, \"Diameter\": 0.265, \"Height\": 0.09, \"Whole_weight\": 0.168, \"Shucked_weight\": 0.05, \"Viscera_weight\": 0.040999999999999995, \"Shell_weight\": 0.063, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.38, \"Diameter\": 0.235, \"Height\": 0.1, \"Whole_weight\": 0.258, \"Shucked_weight\": 0.1055, \"Viscera_weight\": 0.054000000000000006, \"Shell_weight\": 0.08, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.355, \"Diameter\": 0.26, \"Height\": 0.085, \"Whole_weight\": 0.1905, \"Shucked_weight\": 0.081, \"Viscera_weight\": 0.0485, \"Shell_weight\": 0.055, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.345, \"Height\": 0.12, \"Whole_weight\": 0.48700000000000004, \"Shucked_weight\": 0.1965, \"Viscera_weight\": 0.10800000000000001, \"Shell_weight\": 0.16, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.51, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.5735, \"Shucked_weight\": 0.21899999999999997, \"Viscera_weight\": 0.1365, \"Shell_weight\": 0.195, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.325, \"Diameter\": 0.24, \"Height\": 0.085, \"Whole_weight\": 0.17300000000000001, \"Shucked_weight\": 0.0795, \"Viscera_weight\": 0.038, \"Shell_weight\": 0.05, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.62, \"Diameter\": 0.485, \"Height\": 0.18, \"Whole_weight\": 1.1785, \"Shucked_weight\": 0.4675, \"Viscera_weight\": 0.2655, \"Shell_weight\": 0.39, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 0.9, \"Shucked_weight\": 0.358, \"Viscera_weight\": 0.156, \"Shell_weight\": 0.315, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.33, \"Diameter\": 0.255, \"Height\": 0.095, \"Whole_weight\": 0.1875, \"Shucked_weight\": 0.0735, \"Viscera_weight\": 0.045, \"Shell_weight\": 0.06, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.34, \"Height\": 0.13, \"Whole_weight\": 0.3715, \"Shucked_weight\": 0.1605, \"Viscera_weight\": 0.0795, \"Shell_weight\": 0.105, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.33, \"Height\": 0.12, \"Whole_weight\": 0.34700000000000003, \"Shucked_weight\": 0.12, \"Viscera_weight\": 0.084, \"Shell_weight\": 0.105, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.33, \"Diameter\": 0.215, \"Height\": 0.075, \"Whole_weight\": 0.1145, \"Shucked_weight\": 0.045, \"Viscera_weight\": 0.0265, \"Shell_weight\": 0.035, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.375, \"Height\": 0.145, \"Whole_weight\": 0.777, \"Shucked_weight\": 0.21600000000000003, \"Viscera_weight\": 0.13, \"Shell_weight\": 0.17, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.35, \"Height\": 0.12, \"Whole_weight\": 0.4885, \"Shucked_weight\": 0.193, \"Viscera_weight\": 0.105, \"Shell_weight\": 0.155, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.36, \"Height\": 0.125, \"Whole_weight\": 0.447, \"Shucked_weight\": 0.1695, \"Viscera_weight\": 0.081, \"Shell_weight\": 0.14, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.255, \"Diameter\": 0.18, \"Height\": 0.065, \"Whole_weight\": 0.079, \"Shucked_weight\": 0.034, \"Viscera_weight\": 0.013999999999999999, \"Shell_weight\": 0.025, \"Rings\": 5, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.245, \"Height\": 0.09, \"Whole_weight\": 0.1665, \"Shucked_weight\": 0.0595, \"Viscera_weight\": 0.04, \"Shell_weight\": 0.06, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.35, \"Height\": 0.13, \"Whole_weight\": 0.466, \"Shucked_weight\": 0.1845, \"Viscera_weight\": 0.099, \"Shell_weight\": 0.145, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.31, \"Diameter\": 0.225, \"Height\": 0.08, \"Whole_weight\": 0.1345, \"Shucked_weight\": 0.054000000000000006, \"Viscera_weight\": 0.024, \"Shell_weight\": 0.05, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.37, \"Diameter\": 0.28, \"Height\": 0.11, \"Whole_weight\": 0.2305, \"Shucked_weight\": 0.0945, \"Viscera_weight\": 0.0465, \"Shell_weight\": 0.075, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.295, \"Diameter\": 0.215, \"Height\": 0.075, \"Whole_weight\": 0.129, \"Shucked_weight\": 0.05, \"Viscera_weight\": 0.0295, \"Shell_weight\": 0.04, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.555, \"Diameter\": 0.435, \"Height\": 0.165, \"Whole_weight\": 0.97, \"Shucked_weight\": 0.336, \"Viscera_weight\": 0.2315, \"Shell_weight\": 0.295, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.515, \"Height\": 0.17, \"Whole_weight\": 1.14, \"Shucked_weight\": 0.4305, \"Viscera_weight\": 0.2245, \"Shell_weight\": 0.42, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.58, \"Diameter\": 0.49, \"Height\": 0.195, \"Whole_weight\": 1.3165, \"Shucked_weight\": 0.5305, \"Viscera_weight\": 0.254, \"Shell_weight\": 0.41, \"Rings\": 18, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.475, \"Height\": 0.185, \"Whole_weight\": 0.9585, \"Shucked_weight\": 0.4145, \"Viscera_weight\": 0.1615, \"Shell_weight\": 0.33, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.65, \"Diameter\": 0.525, \"Height\": 0.18, \"Whole_weight\": 1.626, \"Shucked_weight\": 0.597, \"Viscera_weight\": 0.3445, \"Shell_weight\": 0.53, \"Rings\": 18, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.45, \"Height\": 0.17, \"Whole_weight\": 0.7809999999999999, \"Shucked_weight\": 0.3055, \"Viscera_weight\": 0.1555, \"Shell_weight\": 0.295, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.415, \"Diameter\": 0.34, \"Height\": 0.13, \"Whole_weight\": 0.3675, \"Shucked_weight\": 0.146, \"Viscera_weight\": 0.0885, \"Shell_weight\": 0.12, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.38, \"Diameter\": 0.305, \"Height\": 0.105, \"Whole_weight\": 0.281, \"Shucked_weight\": 0.1045, \"Viscera_weight\": 0.0615, \"Shell_weight\": 0.09, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.355, \"Height\": 0.12, \"Whole_weight\": 0.41200000000000003, \"Shucked_weight\": 0.1145, \"Viscera_weight\": 0.0665, \"Shell_weight\": 0.16, \"Rings\": 19, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.395, \"Diameter\": 0.295, \"Height\": 0.095, \"Whole_weight\": 0.2245, \"Shucked_weight\": 0.078, \"Viscera_weight\": 0.054000000000000006, \"Shell_weight\": 0.08, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.455, \"Diameter\": 0.35, \"Height\": 0.12, \"Whole_weight\": 0.4835, \"Shucked_weight\": 0.1815, \"Viscera_weight\": 0.14400000000000002, \"Shell_weight\": 0.16, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.485, \"Diameter\": 0.38, \"Height\": 0.15, \"Whole_weight\": 0.605, \"Shucked_weight\": 0.2155, \"Viscera_weight\": 0.14, \"Shell_weight\": 0.18, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.155, \"Whole_weight\": 0.9175, \"Shucked_weight\": 0.2775, \"Viscera_weight\": 0.243, \"Shell_weight\": 0.335, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.45, \"Diameter\": 0.35, \"Height\": 0.145, \"Whole_weight\": 0.5425, \"Shucked_weight\": 0.1765, \"Viscera_weight\": 0.12300000000000001, \"Shell_weight\": 0.175, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.475, \"Diameter\": 0.385, \"Height\": 0.145, \"Whole_weight\": 0.6175, \"Shucked_weight\": 0.235, \"Viscera_weight\": 0.10800000000000001, \"Shell_weight\": 0.215, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.38, \"Height\": 0.155, \"Whole_weight\": 0.655, \"Shucked_weight\": 0.2405, \"Viscera_weight\": 0.14300000000000002, \"Shell_weight\": 0.205, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.41, \"Height\": 0.165, \"Whole_weight\": 0.8115, \"Shucked_weight\": 0.24, \"Viscera_weight\": 0.16899999999999998, \"Shell_weight\": 0.24, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.39, \"Height\": 0.15, \"Whole_weight\": 0.573, \"Shucked_weight\": 0.225, \"Viscera_weight\": 0.124, \"Shell_weight\": 0.17, \"Rings\": 21, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.385, \"Height\": 0.15, \"Whole_weight\": 0.7865, \"Shucked_weight\": 0.24100000000000002, \"Viscera_weight\": 0.14, \"Shell_weight\": 0.24, \"Rings\": 23, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.395, \"Height\": 0.18, \"Whole_weight\": 0.64, \"Shucked_weight\": 0.158, \"Viscera_weight\": 0.11, \"Shell_weight\": 0.245, \"Rings\": 22, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.415, \"Height\": 0.145, \"Whole_weight\": 0.74, \"Shucked_weight\": 0.2635, \"Viscera_weight\": 0.168, \"Shell_weight\": 0.245, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.375, \"Height\": 0.115, \"Whole_weight\": 0.5945, \"Shucked_weight\": 0.185, \"Viscera_weight\": 0.14800000000000002, \"Shell_weight\": 0.19, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.45, \"Diameter\": 0.38, \"Height\": 0.165, \"Whole_weight\": 0.8165, \"Shucked_weight\": 0.25, \"Viscera_weight\": 0.1915, \"Shell_weight\": 0.265, \"Rings\": 23, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.37, \"Diameter\": 0.275, \"Height\": 0.1, \"Whole_weight\": 0.2225, \"Shucked_weight\": 0.09300000000000001, \"Viscera_weight\": 0.026000000000000002, \"Shell_weight\": 0.08, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.275, \"Height\": 0.1, \"Whole_weight\": 0.2295, \"Shucked_weight\": 0.0885, \"Viscera_weight\": 0.0465, \"Shell_weight\": 0.07, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.485, \"Diameter\": 0.37, \"Height\": 0.14, \"Whole_weight\": 0.5725, \"Shucked_weight\": 0.204, \"Viscera_weight\": 0.1415, \"Shell_weight\": 0.175, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.435, \"Diameter\": 0.325, \"Height\": 0.115, \"Whole_weight\": 0.3915, \"Shucked_weight\": 0.154, \"Viscera_weight\": 0.094, \"Shell_weight\": 0.12, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.405, \"Height\": 0.185, \"Whole_weight\": 0.8345, \"Shucked_weight\": 0.3175, \"Viscera_weight\": 0.1725, \"Shell_weight\": 0.29, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.4, \"Height\": 0.14, \"Whole_weight\": 0.6515, \"Shucked_weight\": 0.2455, \"Viscera_weight\": 0.1665, \"Shell_weight\": 0.185, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.185, \"Whole_weight\": 0.909, \"Shucked_weight\": 0.344, \"Viscera_weight\": 0.2325, \"Shell_weight\": 0.255, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.4, \"Height\": 0.15, \"Whole_weight\": 0.8045, \"Shucked_weight\": 0.3345, \"Viscera_weight\": 0.2125, \"Shell_weight\": 0.21, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.405, \"Height\": 0.125, \"Whole_weight\": 0.927, \"Shucked_weight\": 0.26, \"Viscera_weight\": 0.1425, \"Shell_weight\": 0.345, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.17, \"Whole_weight\": 0.7305, \"Shucked_weight\": 0.27899999999999997, \"Viscera_weight\": 0.2055, \"Shell_weight\": 0.195, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 0.9555, \"Shucked_weight\": 0.366, \"Viscera_weight\": 0.2425, \"Shell_weight\": 0.295, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.375, \"Height\": 0.15, \"Whole_weight\": 0.636, \"Shucked_weight\": 0.2535, \"Viscera_weight\": 0.145, \"Shell_weight\": 0.19, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.255, \"Diameter\": 0.19, \"Height\": 0.075, \"Whole_weight\": 0.0865, \"Shucked_weight\": 0.0345, \"Viscera_weight\": 0.0205, \"Shell_weight\": 0.025, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.43, \"Diameter\": 0.325, \"Height\": 0.115, \"Whole_weight\": 0.3865, \"Shucked_weight\": 0.1475, \"Viscera_weight\": 0.1065, \"Shell_weight\": 0.11, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.38, \"Diameter\": 0.29, \"Height\": 0.12, \"Whole_weight\": 0.28300000000000003, \"Shucked_weight\": 0.1175, \"Viscera_weight\": 0.0655, \"Shell_weight\": 0.085, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.165, \"Diameter\": 0.11, \"Height\": 0.02, \"Whole_weight\": 0.019, \"Shucked_weight\": 0.0065, \"Viscera_weight\": 0.0025, \"Shell_weight\": 0.005, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.315, \"Diameter\": 0.23, \"Height\": 0.09, \"Whole_weight\": 0.1285, \"Shucked_weight\": 0.043, \"Viscera_weight\": 0.04, \"Shell_weight\": 0.04, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.155, \"Diameter\": 0.105, \"Height\": 0.05, \"Whole_weight\": 0.0175, \"Shucked_weight\": 0.005, \"Viscera_weight\": 0.0035, \"Shell_weight\": 0.005, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.28, \"Diameter\": 0.205, \"Height\": 0.1, \"Whole_weight\": 0.1165, \"Shucked_weight\": 0.0545, \"Viscera_weight\": 0.0285, \"Shell_weight\": 0.03, \"Rings\": 5, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.43, \"Diameter\": 0.335, \"Height\": 0.12, \"Whole_weight\": 0.444, \"Shucked_weight\": 0.155, \"Viscera_weight\": 0.1145, \"Shell_weight\": 0.14, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.395, \"Diameter\": 0.315, \"Height\": 0.105, \"Whole_weight\": 0.3515, \"Shucked_weight\": 0.1185, \"Viscera_weight\": 0.091, \"Shell_weight\": 0.1195, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.385, \"Diameter\": 0.285, \"Height\": 0.105, \"Whole_weight\": 0.2905, \"Shucked_weight\": 0.1215, \"Viscera_weight\": 0.0685, \"Shell_weight\": 0.0875, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.48, \"Diameter\": 0.385, \"Height\": 0.135, \"Whole_weight\": 0.536, \"Shucked_weight\": 0.1895, \"Viscera_weight\": 0.142, \"Shell_weight\": 0.17300000000000001, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.445, \"Diameter\": 0.33, \"Height\": 0.105, \"Whole_weight\": 0.4525, \"Shucked_weight\": 0.18, \"Viscera_weight\": 0.10300000000000001, \"Shell_weight\": 0.12300000000000001, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.395, \"Diameter\": 0.295, \"Height\": 0.115, \"Whole_weight\": 0.316, \"Shucked_weight\": 0.1205, \"Viscera_weight\": 0.0595, \"Shell_weight\": 0.1105, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.4, \"Diameter\": 0.3, \"Height\": 0.125, \"Whole_weight\": 0.41700000000000004, \"Shucked_weight\": 0.191, \"Viscera_weight\": 0.09, \"Shell_weight\": 0.1175, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.415, \"Diameter\": 0.325, \"Height\": 0.14, \"Whole_weight\": 0.41700000000000004, \"Shucked_weight\": 0.1535, \"Viscera_weight\": 0.1015, \"Shell_weight\": 0.14400000000000002, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.315, \"Diameter\": 0.25, \"Height\": 0.09, \"Whole_weight\": 0.203, \"Shucked_weight\": 0.0615, \"Viscera_weight\": 0.037000000000000005, \"Shell_weight\": 0.0795, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.345, \"Diameter\": 0.26, \"Height\": 0.09, \"Whole_weight\": 0.207, \"Shucked_weight\": 0.0775, \"Viscera_weight\": 0.0435, \"Shell_weight\": 0.0765, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.36, \"Diameter\": 0.295, \"Height\": 0.13, \"Whole_weight\": 0.2765, \"Shucked_weight\": 0.0895, \"Viscera_weight\": 0.057, \"Shell_weight\": 0.1005, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.295, \"Diameter\": 0.225, \"Height\": 0.09, \"Whole_weight\": 0.1105, \"Shucked_weight\": 0.0405, \"Viscera_weight\": 0.0245, \"Shell_weight\": 0.032, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.25, \"Height\": 0.08, \"Whole_weight\": 0.17600000000000002, \"Shucked_weight\": 0.0595, \"Viscera_weight\": 0.0355, \"Shell_weight\": 0.063, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.375, \"Diameter\": 0.3, \"Height\": 0.1, \"Whole_weight\": 0.2465, \"Shucked_weight\": 0.10400000000000001, \"Viscera_weight\": 0.0475, \"Shell_weight\": 0.083, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.205, \"Height\": 0.055, \"Whole_weight\": 0.1135, \"Shucked_weight\": 0.045, \"Viscera_weight\": 0.0275, \"Shell_weight\": 0.0335, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.355, \"Diameter\": 0.265, \"Height\": 0.085, \"Whole_weight\": 0.201, \"Shucked_weight\": 0.069, \"Viscera_weight\": 0.053, \"Shell_weight\": 0.0695, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.35, \"Diameter\": 0.255, \"Height\": 0.08, \"Whole_weight\": 0.1915, \"Shucked_weight\": 0.08, \"Viscera_weight\": 0.0385, \"Shell_weight\": 0.063, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.2, \"Height\": 0.065, \"Whole_weight\": 0.1035, \"Shucked_weight\": 0.0475, \"Viscera_weight\": 0.0205, \"Shell_weight\": 0.03, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.29, \"Diameter\": 0.205, \"Height\": 0.07, \"Whole_weight\": 0.0975, \"Shucked_weight\": 0.036000000000000004, \"Viscera_weight\": 0.019, \"Shell_weight\": 0.035, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.25, \"Diameter\": 0.19, \"Height\": 0.06, \"Whole_weight\": 0.0765, \"Shucked_weight\": 0.036000000000000004, \"Viscera_weight\": 0.0115, \"Shell_weight\": 0.0245, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.18, \"Diameter\": 0.125, \"Height\": 0.035, \"Whole_weight\": 0.0265, \"Shucked_weight\": 0.0095, \"Viscera_weight\": 0.0055, \"Shell_weight\": 0.0085, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.15, \"Diameter\": 0.1, \"Height\": 0.025, \"Whole_weight\": 0.015, \"Shucked_weight\": 0.0045, \"Viscera_weight\": 0.004, \"Shell_weight\": 0.005, \"Rings\": 2, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.16, \"Diameter\": 0.11, \"Height\": 0.025, \"Whole_weight\": 0.018000000000000002, \"Shucked_weight\": 0.0065, \"Viscera_weight\": 0.0055, \"Shell_weight\": 0.005, \"Rings\": 3, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.455, \"Height\": 0.16, \"Whole_weight\": 1.0575, \"Shucked_weight\": 0.3925, \"Viscera_weight\": 0.228, \"Shell_weight\": 0.293, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 1.092, \"Shucked_weight\": 0.41600000000000004, \"Viscera_weight\": 0.212, \"Shell_weight\": 0.4405, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.41, \"Height\": 0.13, \"Whole_weight\": 0.99, \"Shucked_weight\": 0.3865, \"Viscera_weight\": 0.243, \"Shell_weight\": 0.295, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.36, \"Height\": 0.08, \"Whole_weight\": 0.488, \"Shucked_weight\": 0.191, \"Viscera_weight\": 0.125, \"Shell_weight\": 0.155, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.36, \"Height\": 0.11, \"Whole_weight\": 0.5005, \"Shucked_weight\": 0.161, \"Viscera_weight\": 0.107, \"Shell_weight\": 0.195, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.4, \"Diameter\": 0.305, \"Height\": 0.085, \"Whole_weight\": 0.297, \"Shucked_weight\": 0.10800000000000001, \"Viscera_weight\": 0.0705, \"Shell_weight\": 0.1, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.48, \"Diameter\": 0.375, \"Height\": 0.105, \"Whole_weight\": 0.525, \"Shucked_weight\": 0.2185, \"Viscera_weight\": 0.1195, \"Shell_weight\": 0.155, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.77, \"Shucked_weight\": 0.2735, \"Viscera_weight\": 0.159, \"Shell_weight\": 0.255, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.4, \"Height\": 0.12, \"Whole_weight\": 0.6515, \"Shucked_weight\": 0.261, \"Viscera_weight\": 0.2015, \"Shell_weight\": 0.165, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.8295, \"Shucked_weight\": 0.2405, \"Viscera_weight\": 0.1825, \"Shell_weight\": 0.275, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.42, \"Height\": 0.13, \"Whole_weight\": 0.879, \"Shucked_weight\": 0.374, \"Viscera_weight\": 0.1695, \"Shell_weight\": 0.23, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.4, \"Height\": 0.12, \"Whole_weight\": 0.823, \"Shucked_weight\": 0.298, \"Viscera_weight\": 0.1805, \"Shell_weight\": 0.265, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.38, \"Height\": 0.13, \"Whole_weight\": 0.6559999999999999, \"Shucked_weight\": 0.22699999999999998, \"Viscera_weight\": 0.1785, \"Shell_weight\": 0.22, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.425, \"Height\": 0.12, \"Whole_weight\": 0.8665, \"Shucked_weight\": 0.2825, \"Viscera_weight\": 0.17600000000000002, \"Shell_weight\": 0.29, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.39, \"Height\": 0.125, \"Whole_weight\": 0.6565, \"Shucked_weight\": 0.262, \"Viscera_weight\": 0.1835, \"Shell_weight\": 0.175, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.385, \"Height\": 0.115, \"Whole_weight\": 0.669, \"Shucked_weight\": 0.2385, \"Viscera_weight\": 0.172, \"Shell_weight\": 0.205, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.405, \"Height\": 0.125, \"Whole_weight\": 0.6435, \"Shucked_weight\": 0.2415, \"Viscera_weight\": 0.1735, \"Shell_weight\": 0.21, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.41, \"Height\": 0.135, \"Whole_weight\": 0.862, \"Shucked_weight\": 0.2855, \"Viscera_weight\": 0.1525, \"Shell_weight\": 0.32, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.445, \"Diameter\": 0.345, \"Height\": 0.09, \"Whole_weight\": 0.3795, \"Shucked_weight\": 0.14300000000000002, \"Viscera_weight\": 0.07400000000000001, \"Shell_weight\": 0.125, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.44, \"Height\": 0.205, \"Whole_weight\": 0.835, \"Shucked_weight\": 0.32, \"Viscera_weight\": 0.2175, \"Shell_weight\": 0.245, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.36, \"Diameter\": 0.265, \"Height\": 0.09, \"Whole_weight\": 0.2065, \"Shucked_weight\": 0.078, \"Viscera_weight\": 0.057, \"Shell_weight\": 0.06, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.42, \"Height\": 0.15, \"Whole_weight\": 0.7365, \"Shucked_weight\": 0.2785, \"Viscera_weight\": 0.18600000000000003, \"Shell_weight\": 0.215, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.405, \"Height\": 0.14, \"Whole_weight\": 0.8175, \"Shucked_weight\": 0.2795, \"Viscera_weight\": 0.183, \"Shell_weight\": 0.26, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.415, \"Height\": 0.13, \"Whole_weight\": 0.8425, \"Shucked_weight\": 0.275, \"Viscera_weight\": 0.1945, \"Shell_weight\": 0.265, \"Rings\": 20, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.42, \"Height\": 0.13, \"Whole_weight\": 1.001, \"Shucked_weight\": 0.34, \"Viscera_weight\": 0.226, \"Shell_weight\": 0.265, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.52, \"Height\": 0.2, \"Whole_weight\": 1.676, \"Shucked_weight\": 0.6729999999999999, \"Viscera_weight\": 0.4805, \"Shell_weight\": 0.45, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.385, \"Height\": 0.14, \"Whole_weight\": 0.6595, \"Shucked_weight\": 0.2485, \"Viscera_weight\": 0.2035, \"Shell_weight\": 0.16, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.42, \"Height\": 0.13, \"Whole_weight\": 0.8055, \"Shucked_weight\": 0.301, \"Viscera_weight\": 0.18100000000000002, \"Shell_weight\": 0.28, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.695, \"Diameter\": 0.515, \"Height\": 0.175, \"Whole_weight\": 1.5165, \"Shucked_weight\": 0.578, \"Viscera_weight\": 0.4105, \"Shell_weight\": 0.39, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.51, \"Diameter\": 0.39, \"Height\": 0.105, \"Whole_weight\": 0.612, \"Shucked_weight\": 0.187, \"Viscera_weight\": 0.15, \"Shell_weight\": 0.195, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.485, \"Diameter\": 0.355, \"Height\": 0.12, \"Whole_weight\": 0.547, \"Shucked_weight\": 0.215, \"Viscera_weight\": 0.1615, \"Shell_weight\": 0.14, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.46, \"Height\": 0.17, \"Whole_weight\": 1.122, \"Shucked_weight\": 0.34700000000000003, \"Viscera_weight\": 0.3045, \"Shell_weight\": 0.315, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.455, \"Height\": 0.165, \"Whole_weight\": 1.1365, \"Shucked_weight\": 0.369, \"Viscera_weight\": 0.3005, \"Shell_weight\": 0.275, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.515, \"Height\": 0.175, \"Whole_weight\": 1.4805, \"Shucked_weight\": 0.5295, \"Viscera_weight\": 0.272, \"Shell_weight\": 0.525, \"Rings\": 20, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.505, \"Height\": 0.185, \"Whole_weight\": 1.5275, \"Shucked_weight\": 0.69, \"Viscera_weight\": 0.368, \"Shell_weight\": 0.35, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.525, \"Height\": 0.155, \"Whole_weight\": 1.1375, \"Shucked_weight\": 0.36700000000000005, \"Viscera_weight\": 0.23600000000000002, \"Shell_weight\": 0.37, \"Rings\": 20, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.495, \"Height\": 0.19, \"Whole_weight\": 1.4369999999999998, \"Shucked_weight\": 0.469, \"Viscera_weight\": 0.2655, \"Shell_weight\": 0.41, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.44, \"Height\": 0.155, \"Whole_weight\": 1.1159999999999999, \"Shucked_weight\": 0.4775, \"Viscera_weight\": 0.2315, \"Shell_weight\": 0.27, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.43, \"Height\": 0.12, \"Whole_weight\": 1.0615, \"Shucked_weight\": 0.348, \"Viscera_weight\": 0.16699999999999998, \"Shell_weight\": 0.31, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.405, \"Height\": 0.15, \"Whole_weight\": 1.2565, \"Shucked_weight\": 0.435, \"Viscera_weight\": 0.20199999999999999, \"Shell_weight\": 0.325, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.44, \"Height\": 0.155, \"Whole_weight\": 0.946, \"Shucked_weight\": 0.313, \"Viscera_weight\": 0.1825, \"Shell_weight\": 0.335, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.54, \"Diameter\": 0.44, \"Height\": 0.135, \"Whole_weight\": 0.9590000000000001, \"Shucked_weight\": 0.2385, \"Viscera_weight\": 0.221, \"Shell_weight\": 0.3, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.51, \"Height\": 0.19, \"Whole_weight\": 1.6130000000000002, \"Shucked_weight\": 0.6215, \"Viscera_weight\": 0.361, \"Shell_weight\": 0.47, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.47, \"Height\": 0.145, \"Whole_weight\": 1.153, \"Shucked_weight\": 0.40299999999999997, \"Viscera_weight\": 0.29600000000000004, \"Shell_weight\": 0.32, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 0.978, \"Shucked_weight\": 0.3365, \"Viscera_weight\": 0.1905, \"Shell_weight\": 0.3, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.445, \"Height\": 0.13, \"Whole_weight\": 1.1325, \"Shucked_weight\": 0.3825, \"Viscera_weight\": 0.23399999999999999, \"Shell_weight\": 0.32, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.345, \"Diameter\": 0.27, \"Height\": 0.095, \"Whole_weight\": 0.19699999999999998, \"Shucked_weight\": 0.0665, \"Viscera_weight\": 0.05, \"Shell_weight\": 0.07, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.43, \"Height\": 0.155, \"Whole_weight\": 0.785, \"Shucked_weight\": 0.289, \"Viscera_weight\": 0.22699999999999998, \"Shell_weight\": 0.233, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.425, \"Height\": 0.17, \"Whole_weight\": 0.9490000000000001, \"Shucked_weight\": 0.3485, \"Viscera_weight\": 0.2395, \"Shell_weight\": 0.278, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.455, \"Height\": 0.165, \"Whole_weight\": 0.9805, \"Shucked_weight\": 0.3155, \"Viscera_weight\": 0.2815, \"Shell_weight\": 0.2965, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.375, \"Height\": 0.14, \"Whole_weight\": 0.521, \"Shucked_weight\": 0.2, \"Viscera_weight\": 0.12300000000000001, \"Shell_weight\": 0.17, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.385, \"Diameter\": 0.275, \"Height\": 0.115, \"Whole_weight\": 0.2685, \"Shucked_weight\": 0.0975, \"Viscera_weight\": 0.0825, \"Shell_weight\": 0.085, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.455, \"Diameter\": 0.34, \"Height\": 0.135, \"Whole_weight\": 0.462, \"Shucked_weight\": 0.1675, \"Viscera_weight\": 0.158, \"Shell_weight\": 0.12, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.38, \"Height\": 0.14, \"Whole_weight\": 0.7605, \"Shucked_weight\": 0.245, \"Viscera_weight\": 0.16699999999999998, \"Shell_weight\": 0.185, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.41, \"Height\": 0.165, \"Whole_weight\": 0.732, \"Shucked_weight\": 0.18899999999999997, \"Viscera_weight\": 0.17, \"Shell_weight\": 0.31, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.385, \"Height\": 0.145, \"Whole_weight\": 0.6775, \"Shucked_weight\": 0.23600000000000002, \"Viscera_weight\": 0.179, \"Shell_weight\": 0.2, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.38, \"Height\": 0.14, \"Whole_weight\": 0.6385, \"Shucked_weight\": 0.2305, \"Viscera_weight\": 0.142, \"Shell_weight\": 0.195, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.35, \"Height\": 0.14, \"Whole_weight\": 0.5755, \"Shucked_weight\": 0.2015, \"Viscera_weight\": 0.1505, \"Shell_weight\": 0.19, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.36, \"Height\": 0.145, \"Whole_weight\": 0.537, \"Shucked_weight\": 0.1725, \"Viscera_weight\": 0.1375, \"Shell_weight\": 0.195, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.41, \"Height\": 0.165, \"Whole_weight\": 0.93, \"Shucked_weight\": 0.3505, \"Viscera_weight\": 0.237, \"Shell_weight\": 0.3, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.385, \"Height\": 0.15, \"Whole_weight\": 0.6415, \"Shucked_weight\": 0.24600000000000002, \"Viscera_weight\": 0.152, \"Shell_weight\": 0.215, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.435, \"Height\": 0.145, \"Whole_weight\": 0.8815, \"Shucked_weight\": 0.292, \"Viscera_weight\": 0.20600000000000002, \"Shell_weight\": 0.255, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.28, \"Height\": 0.125, \"Whole_weight\": 0.244, \"Shucked_weight\": 0.102, \"Viscera_weight\": 0.038, \"Shell_weight\": 0.085, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.215, \"Diameter\": 0.155, \"Height\": 0.06, \"Whole_weight\": 0.0525, \"Shucked_weight\": 0.021, \"Viscera_weight\": 0.0165, \"Shell_weight\": 0.015, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.415, \"Height\": 0.175, \"Whole_weight\": 1.042, \"Shucked_weight\": 0.3295, \"Viscera_weight\": 0.2325, \"Shell_weight\": 0.2905, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.39, \"Height\": 0.13, \"Whole_weight\": 0.5755, \"Shucked_weight\": 0.1975, \"Viscera_weight\": 0.13, \"Shell_weight\": 0.1845, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.385, \"Height\": 0.135, \"Whole_weight\": 0.7090000000000001, \"Shucked_weight\": 0.21100000000000002, \"Viscera_weight\": 0.1375, \"Shell_weight\": 0.262, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.39, \"Height\": 0.16, \"Whole_weight\": 0.644, \"Shucked_weight\": 0.2475, \"Viscera_weight\": 0.2025, \"Shell_weight\": 0.1635, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.465, \"Height\": 0.165, \"Whole_weight\": 0.8875, \"Shucked_weight\": 0.309, \"Viscera_weight\": 0.24600000000000002, \"Shell_weight\": 0.262, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.465, \"Height\": 0.16, \"Whole_weight\": 0.8935, \"Shucked_weight\": 0.3145, \"Viscera_weight\": 0.2575, \"Shell_weight\": 0.263, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.485, \"Diameter\": 0.375, \"Height\": 0.135, \"Whole_weight\": 0.556, \"Shucked_weight\": 0.1925, \"Viscera_weight\": 0.1315, \"Shell_weight\": 0.1685, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.37, \"Height\": 0.18, \"Whole_weight\": 0.51, \"Shucked_weight\": 0.1915, \"Viscera_weight\": 0.1285, \"Shell_weight\": 0.1625, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.165, \"Whole_weight\": 0.9215, \"Shucked_weight\": 0.3275, \"Viscera_weight\": 0.225, \"Shell_weight\": 0.256, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.465, \"Height\": 0.16, \"Whole_weight\": 1.0345, \"Shucked_weight\": 0.315, \"Viscera_weight\": 0.26, \"Shell_weight\": 0.3635, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.405, \"Height\": 0.145, \"Whole_weight\": 0.695, \"Shucked_weight\": 0.215, \"Viscera_weight\": 0.1635, \"Shell_weight\": 0.23399999999999999, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.41, \"Height\": 0.155, \"Whole_weight\": 0.7155, \"Shucked_weight\": 0.2805, \"Viscera_weight\": 0.1685, \"Shell_weight\": 0.214, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.44, \"Diameter\": 0.335, \"Height\": 0.11, \"Whole_weight\": 0.39399999999999996, \"Shucked_weight\": 0.157, \"Viscera_weight\": 0.096, \"Shell_weight\": 0.122, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.42, \"Height\": 0.16, \"Whole_weight\": 0.745, \"Shucked_weight\": 0.255, \"Viscera_weight\": 0.157, \"Shell_weight\": 0.2885, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.425, \"Diameter\": 0.345, \"Height\": 0.11, \"Whole_weight\": 0.3665, \"Shucked_weight\": 0.125, \"Viscera_weight\": 0.081, \"Shell_weight\": 0.11699999999999999, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.34, \"Height\": 0.135, \"Whole_weight\": 0.495, \"Shucked_weight\": 0.1655, \"Viscera_weight\": 0.11699999999999999, \"Shell_weight\": 0.185, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.335, \"Height\": 0.125, \"Whole_weight\": 0.349, \"Shucked_weight\": 0.11900000000000001, \"Viscera_weight\": 0.1055, \"Shell_weight\": 0.115, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.425, \"Diameter\": 0.33, \"Height\": 0.13, \"Whole_weight\": 0.4405, \"Shucked_weight\": 0.152, \"Viscera_weight\": 0.0935, \"Shell_weight\": 0.155, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.275, \"Height\": 0.1, \"Whole_weight\": 0.22, \"Shucked_weight\": 0.094, \"Viscera_weight\": 0.045, \"Shell_weight\": 0.065, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.6615, \"Shucked_weight\": 0.2875, \"Viscera_weight\": 0.2095, \"Shell_weight\": 0.155, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.405, \"Diameter\": 0.305, \"Height\": 0.12, \"Whole_weight\": 0.3185, \"Shucked_weight\": 0.1235, \"Viscera_weight\": 0.0905, \"Shell_weight\": 0.095, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.205, \"Height\": 0.07, \"Whole_weight\": 0.1015, \"Shucked_weight\": 0.040999999999999995, \"Viscera_weight\": 0.03, \"Shell_weight\": 0.03, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.48, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.759, \"Shucked_weight\": 0.2125, \"Viscera_weight\": 0.179, \"Shell_weight\": 0.24, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.44, \"Diameter\": 0.34, \"Height\": 0.13, \"Whole_weight\": 0.4195, \"Shucked_weight\": 0.153, \"Viscera_weight\": 0.1155, \"Shell_weight\": 0.13, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.41, \"Height\": 0.115, \"Whole_weight\": 0.807, \"Shucked_weight\": 0.2855, \"Viscera_weight\": 0.179, \"Shell_weight\": 0.235, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.405, \"Height\": 0.14, \"Whole_weight\": 0.875, \"Shucked_weight\": 0.2665, \"Viscera_weight\": 0.174, \"Shell_weight\": 0.285, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.365, \"Height\": 0.13, \"Whole_weight\": 0.6835, \"Shucked_weight\": 0.165, \"Viscera_weight\": 0.1315, \"Shell_weight\": 0.205, \"Rings\": 21, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.235, \"Diameter\": 0.175, \"Height\": 0.055, \"Whole_weight\": 0.067, \"Shucked_weight\": 0.027000000000000003, \"Viscera_weight\": 0.0125, \"Shell_weight\": 0.018000000000000002, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.255, \"Diameter\": 0.185, \"Height\": 0.06, \"Whole_weight\": 0.08800000000000001, \"Shucked_weight\": 0.0365, \"Viscera_weight\": 0.021, \"Shell_weight\": 0.023, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.315, \"Diameter\": 0.24, \"Height\": 0.085, \"Whole_weight\": 0.1715, \"Shucked_weight\": 0.071, \"Viscera_weight\": 0.0345, \"Shell_weight\": 0.0535, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.25, \"Height\": 0.08, \"Whole_weight\": 0.1735, \"Shucked_weight\": 0.0765, \"Viscera_weight\": 0.0345, \"Shell_weight\": 0.049, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.25, \"Height\": 0.08, \"Whole_weight\": 0.183, \"Shucked_weight\": 0.0735, \"Viscera_weight\": 0.04, \"Shell_weight\": 0.0575, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.27, \"Height\": 0.09, \"Whole_weight\": 0.2055, \"Shucked_weight\": 0.075, \"Viscera_weight\": 0.0575, \"Shell_weight\": 0.062, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.25, \"Height\": 0.07, \"Whole_weight\": 0.18, \"Shucked_weight\": 0.0655, \"Viscera_weight\": 0.048, \"Shell_weight\": 0.054000000000000006, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.3, \"Height\": 0.085, \"Whole_weight\": 0.27, \"Shucked_weight\": 0.1185, \"Viscera_weight\": 0.064, \"Shell_weight\": 0.0745, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.275, \"Height\": 0.135, \"Whole_weight\": 0.24, \"Shucked_weight\": 0.10800000000000001, \"Viscera_weight\": 0.0445, \"Shell_weight\": 0.0735, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.275, \"Height\": 0.14, \"Whole_weight\": 0.2215, \"Shucked_weight\": 0.09699999999999999, \"Viscera_weight\": 0.0455, \"Shell_weight\": 0.0615, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.38, \"Diameter\": 0.275, \"Height\": 0.095, \"Whole_weight\": 0.1375, \"Shucked_weight\": 0.086, \"Viscera_weight\": 0.0585, \"Shell_weight\": 0.0605, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.29, \"Height\": 0.095, \"Whole_weight\": 0.312, \"Shucked_weight\": 0.14300000000000002, \"Viscera_weight\": 0.0635, \"Shell_weight\": 0.086, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.3, \"Height\": 0.1, \"Whole_weight\": 0.2895, \"Shucked_weight\": 0.1215, \"Viscera_weight\": 0.063, \"Shell_weight\": 0.09, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.29, \"Height\": 0.095, \"Whole_weight\": 0.319, \"Shucked_weight\": 0.138, \"Viscera_weight\": 0.08, \"Shell_weight\": 0.08199999999999999, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.29, \"Height\": 0.095, \"Whole_weight\": 0.304, \"Shucked_weight\": 0.127, \"Viscera_weight\": 0.084, \"Shell_weight\": 0.077, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.31, \"Height\": 0.1, \"Whole_weight\": 0.306, \"Shucked_weight\": 0.13, \"Viscera_weight\": 0.06, \"Shell_weight\": 0.094, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.39399999999999996, \"Shucked_weight\": 0.20800000000000002, \"Viscera_weight\": 0.0655, \"Shell_weight\": 0.106, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.32, \"Height\": 0.11, \"Whole_weight\": 0.3735, \"Shucked_weight\": 0.175, \"Viscera_weight\": 0.0755, \"Shell_weight\": 0.109, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.415, \"Diameter\": 0.305, \"Height\": 0.1, \"Whole_weight\": 0.325, \"Shucked_weight\": 0.156, \"Viscera_weight\": 0.0505, \"Shell_weight\": 0.091, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.39799999999999996, \"Shucked_weight\": 0.1185, \"Viscera_weight\": 0.0645, \"Shell_weight\": 0.0945, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.365, \"Height\": 0.115, \"Whole_weight\": 0.501, \"Shucked_weight\": 0.2435, \"Viscera_weight\": 0.084, \"Shell_weight\": 0.1465, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.335, \"Height\": 0.1, \"Whole_weight\": 0.4895, \"Shucked_weight\": 0.2745, \"Viscera_weight\": 0.086, \"Shell_weight\": 0.1105, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.37799999999999995, \"Shucked_weight\": 0.1795, \"Viscera_weight\": 0.1, \"Shell_weight\": 0.08900000000000001, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.35, \"Height\": 0.13, \"Whole_weight\": 0.547, \"Shucked_weight\": 0.245, \"Viscera_weight\": 0.1405, \"Shell_weight\": 0.1405, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.5805, \"Shucked_weight\": 0.266, \"Viscera_weight\": 0.0935, \"Shell_weight\": 0.16899999999999998, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.365, \"Height\": 0.125, \"Whole_weight\": 0.5465, \"Shucked_weight\": 0.22899999999999998, \"Viscera_weight\": 0.1185, \"Shell_weight\": 0.172, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.48, \"Diameter\": 0.365, \"Height\": 0.135, \"Whole_weight\": 0.6395, \"Shucked_weight\": 0.2945, \"Viscera_weight\": 0.113, \"Shell_weight\": 0.175, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.355, \"Height\": 0.105, \"Whole_weight\": 0.498, \"Shucked_weight\": 0.2175, \"Viscera_weight\": 0.096, \"Shell_weight\": 0.1525, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.385, \"Height\": 0.125, \"Whole_weight\": 0.609, \"Shucked_weight\": 0.3065, \"Viscera_weight\": 0.096, \"Shell_weight\": 0.1775, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.495, \"Diameter\": 0.41, \"Height\": 0.125, \"Whole_weight\": 0.7555, \"Shucked_weight\": 0.3355, \"Viscera_weight\": 0.129, \"Shell_weight\": 0.214, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.5975, \"Shucked_weight\": 0.27, \"Viscera_weight\": 0.1275, \"Shell_weight\": 0.166, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.44, \"Height\": 0.14, \"Whole_weight\": 0.8275, \"Shucked_weight\": 0.3415, \"Viscera_weight\": 0.1855, \"Shell_weight\": 0.239, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.395, \"Height\": 0.13, \"Whole_weight\": 0.7635, \"Shucked_weight\": 0.3375, \"Viscera_weight\": 0.1425, \"Shell_weight\": 0.225, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.405, \"Height\": 0.125, \"Whole_weight\": 0.8909999999999999, \"Shucked_weight\": 0.4815, \"Viscera_weight\": 0.1915, \"Shell_weight\": 0.20199999999999999, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.54, \"Diameter\": 0.42, \"Height\": 0.14, \"Whole_weight\": 0.805, \"Shucked_weight\": 0.369, \"Viscera_weight\": 0.1725, \"Shell_weight\": 0.21, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.44, \"Height\": 0.135, \"Whole_weight\": 0.9185, \"Shucked_weight\": 0.429, \"Viscera_weight\": 0.2015, \"Shell_weight\": 0.2375, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.43, \"Height\": 0.125, \"Whole_weight\": 0.9229999999999999, \"Shucked_weight\": 0.4035, \"Viscera_weight\": 0.175, \"Shell_weight\": 0.28300000000000003, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 1.0145, \"Shucked_weight\": 0.40700000000000003, \"Viscera_weight\": 0.2015, \"Shell_weight\": 0.2875, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 0.875, \"Shucked_weight\": 0.36200000000000004, \"Viscera_weight\": 0.1755, \"Shell_weight\": 0.2765, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.435, \"Height\": 0.145, \"Whole_weight\": 0.9685, \"Shucked_weight\": 0.4985, \"Viscera_weight\": 0.168, \"Shell_weight\": 0.2385, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.45, \"Height\": 0.155, \"Whole_weight\": 1.0595, \"Shucked_weight\": 0.4735, \"Viscera_weight\": 0.24, \"Shell_weight\": 0.265, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 0.9520000000000001, \"Shucked_weight\": 0.3895, \"Viscera_weight\": 0.2155, \"Shell_weight\": 0.2745, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.435, \"Height\": 0.13, \"Whole_weight\": 0.7535, \"Shucked_weight\": 0.349, \"Viscera_weight\": 0.1755, \"Shell_weight\": 0.19399999999999998, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.465, \"Height\": 0.14, \"Whole_weight\": 0.958, \"Shucked_weight\": 0.442, \"Viscera_weight\": 0.1815, \"Shell_weight\": 0.2705, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.475, \"Height\": 0.165, \"Whole_weight\": 1.077, \"Shucked_weight\": 0.4545, \"Viscera_weight\": 0.244, \"Shell_weight\": 0.3095, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.46, \"Height\": 0.13, \"Whole_weight\": 1.102, \"Shucked_weight\": 0.455, \"Viscera_weight\": 0.2055, \"Shell_weight\": 0.33, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 1.11, \"Shucked_weight\": 0.498, \"Viscera_weight\": 0.228, \"Shell_weight\": 0.33, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.48, \"Height\": 0.16, \"Whole_weight\": 1.2095, \"Shucked_weight\": 0.5225, \"Viscera_weight\": 0.29600000000000004, \"Shell_weight\": 0.32, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.1405, \"Shucked_weight\": 0.547, \"Viscera_weight\": 0.231, \"Shell_weight\": 0.271, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.465, \"Height\": 0.14, \"Whole_weight\": 1.113, \"Shucked_weight\": 0.5175, \"Viscera_weight\": 0.244, \"Shell_weight\": 0.305, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.3445, \"Shucked_weight\": 0.5489999999999999, \"Viscera_weight\": 0.2875, \"Shell_weight\": 0.36, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 1.21, \"Shucked_weight\": 0.653, \"Viscera_weight\": 0.1695, \"Shell_weight\": 0.3205, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.495, \"Height\": 0.175, \"Whole_weight\": 1.29, \"Shucked_weight\": 0.606, \"Viscera_weight\": 0.276, \"Shell_weight\": 0.3445, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.382, \"Shucked_weight\": 0.609, \"Viscera_weight\": 0.2325, \"Shell_weight\": 0.3985, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.455, \"Height\": 0.16, \"Whole_weight\": 1.1035, \"Shucked_weight\": 0.42100000000000004, \"Viscera_weight\": 0.3015, \"Shell_weight\": 0.325, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.3769999999999998, \"Shucked_weight\": 0.5585, \"Viscera_weight\": 0.33, \"Shell_weight\": 0.292, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.52, \"Height\": 0.15, \"Whole_weight\": 1.3435, \"Shucked_weight\": 0.629, \"Viscera_weight\": 0.2605, \"Shell_weight\": 0.345, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.51, \"Height\": 0.15, \"Whole_weight\": 1.296, \"Shucked_weight\": 0.545, \"Viscera_weight\": 0.3315, \"Shell_weight\": 0.32, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.34, \"Shucked_weight\": 0.5315, \"Viscera_weight\": 0.2815, \"Shell_weight\": 0.41, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.505, \"Height\": 0.16, \"Whole_weight\": 1.3725, \"Shucked_weight\": 0.6285, \"Viscera_weight\": 0.275, \"Shell_weight\": 0.3685, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.307, \"Shucked_weight\": 0.6355, \"Viscera_weight\": 0.2545, \"Shell_weight\": 0.315, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.155, \"Whole_weight\": 1.2085, \"Shucked_weight\": 0.465, \"Viscera_weight\": 0.162, \"Shell_weight\": 0.41100000000000003, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.2, \"Whole_weight\": 1.3825, \"Shucked_weight\": 0.5895, \"Viscera_weight\": 0.285, \"Shell_weight\": 0.381, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.26, \"Shucked_weight\": 0.4525, \"Viscera_weight\": 0.2755, \"Shell_weight\": 0.406, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.51, \"Height\": 0.17, \"Whole_weight\": 1.3555, \"Shucked_weight\": 0.619, \"Viscera_weight\": 0.305, \"Shell_weight\": 0.39, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.5, \"Height\": 0.15, \"Whole_weight\": 1.376, \"Shucked_weight\": 0.6495, \"Viscera_weight\": 0.361, \"Shell_weight\": 0.31, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.485, \"Height\": 0.165, \"Whole_weight\": 1.2945, \"Shucked_weight\": 0.6679999999999999, \"Viscera_weight\": 0.2605, \"Shell_weight\": 0.2715, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.51, \"Height\": 0.165, \"Whole_weight\": 1.486, \"Shucked_weight\": 0.7595, \"Viscera_weight\": 0.332, \"Shell_weight\": 0.321, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.525, \"Height\": 0.175, \"Whole_weight\": 1.4715, \"Shucked_weight\": 0.675, \"Viscera_weight\": 0.315, \"Shell_weight\": 0.39899999999999997, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.52, \"Height\": 0.165, \"Whole_weight\": 1.4095, \"Shucked_weight\": 0.586, \"Viscera_weight\": 0.29100000000000004, \"Shell_weight\": 0.405, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.58, \"Height\": 0.205, \"Whole_weight\": 2.0805, \"Shucked_weight\": 0.9590000000000001, \"Viscera_weight\": 0.3415, \"Shell_weight\": 0.601, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.53, \"Height\": 0.17, \"Whole_weight\": 1.3905, \"Shucked_weight\": 0.5905, \"Viscera_weight\": 0.212, \"Shell_weight\": 0.45299999999999996, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.52, \"Height\": 0.19, \"Whole_weight\": 1.558, \"Shucked_weight\": 0.755, \"Viscera_weight\": 0.298, \"Shell_weight\": 0.4, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.585, \"Height\": 0.16, \"Whole_weight\": 1.3090000000000002, \"Shucked_weight\": 0.5445, \"Viscera_weight\": 0.2945, \"Shell_weight\": 0.413, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.525, \"Height\": 0.17, \"Whole_weight\": 1.8095, \"Shucked_weight\": 0.784, \"Viscera_weight\": 0.391, \"Shell_weight\": 0.455, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.525, \"Height\": 0.155, \"Whole_weight\": 1.4785, \"Shucked_weight\": 0.628, \"Viscera_weight\": 0.3405, \"Shell_weight\": 0.42, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.56, \"Height\": 0.195, \"Whole_weight\": 1.7775, \"Shucked_weight\": 0.861, \"Viscera_weight\": 0.322, \"Shell_weight\": 0.415, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.685, \"Diameter\": 0.54, \"Height\": 0.16, \"Whole_weight\": 1.6675, \"Shucked_weight\": 0.833, \"Viscera_weight\": 0.3775, \"Shell_weight\": 0.475, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.695, \"Diameter\": 0.56, \"Height\": 0.22, \"Whole_weight\": 1.834, \"Shucked_weight\": 0.8455, \"Viscera_weight\": 0.42200000000000004, \"Shell_weight\": 0.455, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.73, \"Diameter\": 0.595, \"Height\": 0.23, \"Whole_weight\": 2.8255, \"Shucked_weight\": 1.1465, \"Viscera_weight\": 0.419, \"Shell_weight\": 0.897, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.205, \"Diameter\": 0.14, \"Height\": 0.05, \"Whole_weight\": 0.046, \"Shucked_weight\": 0.0165, \"Viscera_weight\": 0.012, \"Shell_weight\": 0.0135, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.24, \"Diameter\": 0.175, \"Height\": 0.055, \"Whole_weight\": 0.0705, \"Shucked_weight\": 0.025, \"Viscera_weight\": 0.013999999999999999, \"Shell_weight\": 0.021, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.24, \"Diameter\": 0.175, \"Height\": 0.065, \"Whole_weight\": 0.0665, \"Shucked_weight\": 0.031, \"Viscera_weight\": 0.0135, \"Shell_weight\": 0.017, \"Rings\": 3, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.255, \"Diameter\": 0.19, \"Height\": 0.05, \"Whole_weight\": 0.083, \"Shucked_weight\": 0.0295, \"Viscera_weight\": 0.0215, \"Shell_weight\": 0.027000000000000003, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.255, \"Diameter\": 0.18, \"Height\": 0.055, \"Whole_weight\": 0.083, \"Shucked_weight\": 0.031, \"Viscera_weight\": 0.0215, \"Shell_weight\": 0.02, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.265, \"Diameter\": 0.195, \"Height\": 0.06, \"Whole_weight\": 0.092, \"Shucked_weight\": 0.0345, \"Viscera_weight\": 0.025, \"Shell_weight\": 0.0245, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.12, \"Height\": 0.075, \"Whole_weight\": 0.11699999999999999, \"Shucked_weight\": 0.0455, \"Viscera_weight\": 0.028999999999999998, \"Shell_weight\": 0.0345, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.295, \"Diameter\": 0.23, \"Height\": 0.08, \"Whole_weight\": 0.1625, \"Shucked_weight\": 0.065, \"Viscera_weight\": 0.05, \"Shell_weight\": 0.0385, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.3, \"Diameter\": 0.235, \"Height\": 0.08, \"Whole_weight\": 0.131, \"Shucked_weight\": 0.05, \"Viscera_weight\": 0.0265, \"Shell_weight\": 0.043, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.3, \"Diameter\": 0.23, \"Height\": 0.095, \"Whole_weight\": 0.1385, \"Shucked_weight\": 0.055999999999999994, \"Viscera_weight\": 0.0365, \"Shell_weight\": 0.037000000000000005, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.305, \"Diameter\": 0.22, \"Height\": 0.07, \"Whole_weight\": 0.141, \"Shucked_weight\": 0.062, \"Viscera_weight\": 0.031, \"Shell_weight\": 0.037000000000000005, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.315, \"Diameter\": 0.235, \"Height\": 0.075, \"Whole_weight\": 0.1485, \"Shucked_weight\": 0.0585, \"Viscera_weight\": 0.0375, \"Shell_weight\": 0.0425, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.315, \"Diameter\": 0.23, \"Height\": 0.07, \"Whole_weight\": 0.14400000000000002, \"Shucked_weight\": 0.053, \"Viscera_weight\": 0.0305, \"Shell_weight\": 0.04, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.24, \"Height\": 0.09, \"Whole_weight\": 0.1575, \"Shucked_weight\": 0.07, \"Viscera_weight\": 0.0265, \"Shell_weight\": 0.0425, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.24, \"Height\": 0.075, \"Whole_weight\": 0.187, \"Shucked_weight\": 0.0825, \"Viscera_weight\": 0.0445, \"Shell_weight\": 0.05, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.33, \"Diameter\": 0.265, \"Height\": 0.085, \"Whole_weight\": 0.196, \"Shucked_weight\": 0.0775, \"Viscera_weight\": 0.0305, \"Shell_weight\": 0.0445, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.25, \"Height\": 0.075, \"Whole_weight\": 0.1825, \"Shucked_weight\": 0.0705, \"Viscera_weight\": 0.044000000000000004, \"Shell_weight\": 0.055, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.25, \"Height\": 0.075, \"Whole_weight\": 0.18600000000000003, \"Shucked_weight\": 0.0945, \"Viscera_weight\": 0.038, \"Shell_weight\": 0.0445, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.34, \"Diameter\": 0.25, \"Height\": 0.075, \"Whole_weight\": 0.1785, \"Shucked_weight\": 0.0665, \"Viscera_weight\": 0.0455, \"Shell_weight\": 0.045, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.34, \"Diameter\": 0.25, \"Height\": 0.07, \"Whole_weight\": 0.2225, \"Shucked_weight\": 0.10400000000000001, \"Viscera_weight\": 0.0425, \"Shell_weight\": 0.055, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.345, \"Diameter\": 0.265, \"Height\": 0.1, \"Whole_weight\": 0.2455, \"Shucked_weight\": 0.111, \"Viscera_weight\": 0.0535, \"Shell_weight\": 0.065, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.29, \"Height\": 0.095, \"Whole_weight\": 0.249, \"Shucked_weight\": 0.1045, \"Viscera_weight\": 0.057999999999999996, \"Shell_weight\": 0.067, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.28, \"Height\": 0.095, \"Whole_weight\": 0.2865, \"Shucked_weight\": 0.1505, \"Viscera_weight\": 0.069, \"Shell_weight\": 0.0795, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.28, \"Height\": 0.09, \"Whole_weight\": 0.215, \"Shucked_weight\": 0.084, \"Viscera_weight\": 0.06, \"Shell_weight\": 0.055, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.265, \"Height\": 0.08, \"Whole_weight\": 0.251, \"Shucked_weight\": 0.124, \"Viscera_weight\": 0.037000000000000005, \"Shell_weight\": 0.07, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.31, \"Height\": 0.09, \"Whole_weight\": 0.33899999999999997, \"Shucked_weight\": 0.155, \"Viscera_weight\": 0.0695, \"Shell_weight\": 0.09, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.305, \"Height\": 0.09, \"Whole_weight\": 0.3535, \"Shucked_weight\": 0.157, \"Viscera_weight\": 0.0745, \"Shell_weight\": 0.1, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.31, \"Height\": 0.09, \"Whole_weight\": 0.3335, \"Shucked_weight\": 0.1635, \"Viscera_weight\": 0.061, \"Shell_weight\": 0.091, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.33, \"Height\": 0.09, \"Whole_weight\": 0.3595, \"Shucked_weight\": 0.17, \"Viscera_weight\": 0.081, \"Shell_weight\": 0.09, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.32, \"Height\": 0.115, \"Whole_weight\": 0.376, \"Shucked_weight\": 0.16899999999999998, \"Viscera_weight\": 0.092, \"Shell_weight\": 0.1, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.315, \"Height\": 0.1, \"Whole_weight\": 0.3435, \"Shucked_weight\": 0.157, \"Viscera_weight\": 0.0795, \"Shell_weight\": 0.09, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.34, \"Height\": 0.1, \"Whole_weight\": 0.382, \"Shucked_weight\": 0.16399999999999998, \"Viscera_weight\": 0.096, \"Shell_weight\": 0.1, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.315, \"Height\": 0.1, \"Whole_weight\": 0.377, \"Shucked_weight\": 0.1645, \"Viscera_weight\": 0.07200000000000001, \"Shell_weight\": 0.105, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.3645, \"Shucked_weight\": 0.1575, \"Viscera_weight\": 0.0825, \"Shell_weight\": 0.105, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.325, \"Height\": 0.09, \"Whole_weight\": 0.425, \"Shucked_weight\": 0.217, \"Viscera_weight\": 0.087, \"Shell_weight\": 0.095, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.325, \"Height\": 0.12, \"Whole_weight\": 0.3995, \"Shucked_weight\": 0.1815, \"Viscera_weight\": 0.061, \"Shell_weight\": 0.1125, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.34, \"Height\": 0.115, \"Whole_weight\": 0.3925, \"Shucked_weight\": 0.1825, \"Viscera_weight\": 0.078, \"Shell_weight\": 0.1145, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.345, \"Height\": 0.13, \"Whole_weight\": 0.4495, \"Shucked_weight\": 0.209, \"Viscera_weight\": 0.0835, \"Shell_weight\": 0.134, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.325, \"Height\": 0.09, \"Whole_weight\": 0.35, \"Shucked_weight\": 0.14800000000000002, \"Viscera_weight\": 0.067, \"Shell_weight\": 0.105, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.445, \"Diameter\": 0.335, \"Height\": 0.11, \"Whole_weight\": 0.4355, \"Shucked_weight\": 0.2025, \"Viscera_weight\": 0.1095, \"Shell_weight\": 0.1195, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.35, \"Height\": 0.13, \"Whole_weight\": 0.4195, \"Shucked_weight\": 0.1695, \"Viscera_weight\": 0.0945, \"Shell_weight\": 0.1195, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.36, \"Height\": 0.13, \"Whole_weight\": 0.478, \"Shucked_weight\": 0.191, \"Viscera_weight\": 0.127, \"Shell_weight\": 0.13699999999999998, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.355, \"Height\": 0.105, \"Whole_weight\": 0.4445, \"Shucked_weight\": 0.19699999999999998, \"Viscera_weight\": 0.09300000000000001, \"Shell_weight\": 0.1335, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.345, \"Height\": 0.11, \"Whole_weight\": 0.47, \"Shucked_weight\": 0.2355, \"Viscera_weight\": 0.0855, \"Shell_weight\": 0.1135, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.335, \"Height\": 0.105, \"Whole_weight\": 0.447, \"Shucked_weight\": 0.2335, \"Viscera_weight\": 0.153, \"Shell_weight\": 0.11900000000000001, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.355, \"Height\": 0.125, \"Whole_weight\": 0.5325, \"Shucked_weight\": 0.225, \"Viscera_weight\": 0.126, \"Shell_weight\": 0.1465, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.49700000000000005, \"Shucked_weight\": 0.2355, \"Viscera_weight\": 0.1055, \"Shell_weight\": 0.1295, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.36, \"Height\": 0.1, \"Whole_weight\": 0.4635, \"Shucked_weight\": 0.2325, \"Viscera_weight\": 0.09300000000000001, \"Shell_weight\": 0.115, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.345, \"Height\": 0.105, \"Whole_weight\": 0.449, \"Shucked_weight\": 0.196, \"Viscera_weight\": 0.0945, \"Shell_weight\": 0.1265, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.365, \"Height\": 0.115, \"Whole_weight\": 0.467, \"Shucked_weight\": 0.2315, \"Viscera_weight\": 0.0925, \"Shell_weight\": 0.113, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.37, \"Height\": 0.115, \"Whole_weight\": 0.534, \"Shucked_weight\": 0.261, \"Viscera_weight\": 0.098, \"Shell_weight\": 0.14300000000000002, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.345, \"Height\": 0.11, \"Whole_weight\": 0.4415, \"Shucked_weight\": 0.1755, \"Viscera_weight\": 0.0905, \"Shell_weight\": 0.12, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.465, \"Diameter\": 0.35, \"Height\": 0.125, \"Whole_weight\": 0.48200000000000004, \"Shucked_weight\": 0.23, \"Viscera_weight\": 0.106, \"Shell_weight\": 0.1095, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.365, \"Height\": 0.12, \"Whole_weight\": 0.612, \"Shucked_weight\": 0.327, \"Viscera_weight\": 0.15, \"Shell_weight\": 0.14, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.365, \"Height\": 0.12, \"Whole_weight\": 0.5820000000000001, \"Shucked_weight\": 0.29, \"Viscera_weight\": 0.092, \"Shell_weight\": 0.146, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.475, \"Diameter\": 0.37, \"Height\": 0.125, \"Whole_weight\": 0.537, \"Shucked_weight\": 0.222, \"Viscera_weight\": 0.1215, \"Shell_weight\": 0.15, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.36, \"Height\": 0.12, \"Whole_weight\": 0.5915, \"Shucked_weight\": 0.3245, \"Viscera_weight\": 0.11, \"Shell_weight\": 0.127, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.375, \"Height\": 0.115, \"Whole_weight\": 0.6765, \"Shucked_weight\": 0.3205, \"Viscera_weight\": 0.1065, \"Shell_weight\": 0.17, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.385, \"Height\": 0.145, \"Whole_weight\": 0.64, \"Shucked_weight\": 0.2925, \"Viscera_weight\": 0.1405, \"Shell_weight\": 0.1575, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.36, \"Height\": 0.1, \"Whole_weight\": 0.439, \"Shucked_weight\": 0.19399999999999998, \"Viscera_weight\": 0.099, \"Shell_weight\": 0.115, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.365, \"Height\": 0.12, \"Whole_weight\": 0.6015, \"Shucked_weight\": 0.312, \"Viscera_weight\": 0.11699999999999999, \"Shell_weight\": 0.14, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.485, \"Diameter\": 0.37, \"Height\": 0.115, \"Whole_weight\": 0.4785, \"Shucked_weight\": 0.1995, \"Viscera_weight\": 0.0955, \"Shell_weight\": 0.129, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.385, \"Height\": 0.125, \"Whole_weight\": 0.649, \"Shucked_weight\": 0.32, \"Viscera_weight\": 0.124, \"Shell_weight\": 0.1695, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.395, \"Height\": 0.135, \"Whole_weight\": 0.6335, \"Shucked_weight\": 0.3035, \"Viscera_weight\": 0.1295, \"Shell_weight\": 0.1495, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.4, \"Height\": 0.135, \"Whole_weight\": 0.61, \"Shucked_weight\": 0.272, \"Viscera_weight\": 0.1435, \"Shell_weight\": 0.14400000000000002, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.39, \"Height\": 0.135, \"Whole_weight\": 0.6595, \"Shucked_weight\": 0.3145, \"Viscera_weight\": 0.1535, \"Shell_weight\": 0.1565, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.385, \"Height\": 0.12, \"Whole_weight\": 0.56, \"Shucked_weight\": 0.2835, \"Viscera_weight\": 0.10300000000000001, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.385, \"Height\": 0.135, \"Whole_weight\": 0.6425, \"Shucked_weight\": 0.3195, \"Viscera_weight\": 0.129, \"Shell_weight\": 0.1535, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.6725, \"Shucked_weight\": 0.336, \"Viscera_weight\": 0.12, \"Shell_weight\": 0.1825, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.39, \"Height\": 0.13, \"Whole_weight\": 0.674, \"Shucked_weight\": 0.3165, \"Viscera_weight\": 0.141, \"Shell_weight\": 0.1785, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.39, \"Height\": 0.15, \"Whole_weight\": 0.685, \"Shucked_weight\": 0.36200000000000004, \"Viscera_weight\": 0.131, \"Shell_weight\": 0.156, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.41, \"Height\": 0.125, \"Whole_weight\": 0.642, \"Shucked_weight\": 0.289, \"Viscera_weight\": 0.133, \"Shell_weight\": 0.155, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.355, \"Height\": 0.125, \"Whole_weight\": 0.601, \"Shucked_weight\": 0.25, \"Viscera_weight\": 0.1205, \"Shell_weight\": 0.185, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.39, \"Height\": 0.135, \"Whole_weight\": 0.769, \"Shucked_weight\": 0.3935, \"Viscera_weight\": 0.1455, \"Shell_weight\": 0.19, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.375, \"Height\": 0.1, \"Whole_weight\": 0.5785, \"Shucked_weight\": 0.23800000000000002, \"Viscera_weight\": 0.1225, \"Shell_weight\": 0.175, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.405, \"Height\": 0.135, \"Whole_weight\": 0.769, \"Shucked_weight\": 0.3655, \"Viscera_weight\": 0.1585, \"Shell_weight\": 0.18, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.405, \"Height\": 0.15, \"Whole_weight\": 0.7035, \"Shucked_weight\": 0.34700000000000003, \"Viscera_weight\": 0.134, \"Shell_weight\": 0.1885, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.41, \"Height\": 0.145, \"Whole_weight\": 0.7959999999999999, \"Shucked_weight\": 0.3865, \"Viscera_weight\": 0.1815, \"Shell_weight\": 0.1955, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.43, \"Height\": 0.14, \"Whole_weight\": 0.8340000000000001, \"Shucked_weight\": 0.36700000000000005, \"Viscera_weight\": 0.2, \"Shell_weight\": 0.23, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.39, \"Height\": 0.155, \"Whole_weight\": 0.7125, \"Shucked_weight\": 0.3695, \"Viscera_weight\": 0.13699999999999998, \"Shell_weight\": 0.155, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.415, \"Height\": 0.14, \"Whole_weight\": 0.7240000000000001, \"Shucked_weight\": 0.3475, \"Viscera_weight\": 0.17300000000000001, \"Shell_weight\": 0.175, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.14, \"Whole_weight\": 0.7325, \"Shucked_weight\": 0.33399999999999996, \"Viscera_weight\": 0.1575, \"Shell_weight\": 0.17, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.425, \"Height\": 0.13, \"Whole_weight\": 0.7585, \"Shucked_weight\": 0.325, \"Viscera_weight\": 0.19699999999999998, \"Shell_weight\": 0.205, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.425, \"Height\": 0.15, \"Whole_weight\": 0.8495, \"Shucked_weight\": 0.32799999999999996, \"Viscera_weight\": 0.23199999999999998, \"Shell_weight\": 0.20199999999999999, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.405, \"Height\": 0.125, \"Whole_weight\": 0.6515, \"Shucked_weight\": 0.2715, \"Viscera_weight\": 0.1605, \"Shell_weight\": 0.18600000000000003, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.4, \"Height\": 0.135, \"Whole_weight\": 0.8215, \"Shucked_weight\": 0.3935, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.205, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.43, \"Height\": 0.14, \"Whole_weight\": 0.7165, \"Shucked_weight\": 0.2855, \"Viscera_weight\": 0.1595, \"Shell_weight\": 0.2155, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.8740000000000001, \"Shucked_weight\": 0.3735, \"Viscera_weight\": 0.22899999999999998, \"Shell_weight\": 0.2195, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.445, \"Height\": 0.155, \"Whole_weight\": 0.9905, \"Shucked_weight\": 0.544, \"Viscera_weight\": 0.17800000000000002, \"Shell_weight\": 0.218, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.43, \"Height\": 0.14, \"Whole_weight\": 0.8105, \"Shucked_weight\": 0.368, \"Viscera_weight\": 0.161, \"Shell_weight\": 0.275, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.455, \"Height\": 0.16, \"Whole_weight\": 0.9670000000000001, \"Shucked_weight\": 0.4525, \"Viscera_weight\": 0.207, \"Shell_weight\": 0.27399999999999997, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.6975, \"Shucked_weight\": 0.3075, \"Viscera_weight\": 0.1665, \"Shell_weight\": 0.18, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.155, \"Whole_weight\": 1.195, \"Shucked_weight\": 0.5625, \"Viscera_weight\": 0.2565, \"Shell_weight\": 0.295, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.155, \"Whole_weight\": 1.1935, \"Shucked_weight\": 0.513, \"Viscera_weight\": 0.21, \"Shell_weight\": 0.34299999999999997, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 1.107, \"Shucked_weight\": 0.54, \"Viscera_weight\": 0.255, \"Shell_weight\": 0.27, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.445, \"Height\": 0.14, \"Whole_weight\": 1.0635, \"Shucked_weight\": 0.5265, \"Viscera_weight\": 0.2195, \"Shell_weight\": 0.24, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.46, \"Height\": 0.17, \"Whole_weight\": 0.9035, \"Shucked_weight\": 0.4075, \"Viscera_weight\": 0.1935, \"Shell_weight\": 0.214, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.114, \"Shucked_weight\": 0.4955, \"Viscera_weight\": 0.2745, \"Shell_weight\": 0.29, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.46, \"Height\": 0.16, \"Whole_weight\": 1.103, \"Shucked_weight\": 0.5379999999999999, \"Viscera_weight\": 0.221, \"Shell_weight\": 0.249, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.15, \"Whole_weight\": 1.1155, \"Shucked_weight\": 0.5575, \"Viscera_weight\": 0.2255, \"Shell_weight\": 0.29, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.18, \"Whole_weight\": 1.0515, \"Shucked_weight\": 0.4095, \"Viscera_weight\": 0.2595, \"Shell_weight\": 0.276, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 1.012, \"Shucked_weight\": 0.4985, \"Viscera_weight\": 0.2115, \"Shell_weight\": 0.2835, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 1.137, \"Shucked_weight\": 0.5585, \"Viscera_weight\": 0.22, \"Shell_weight\": 0.29, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.49, \"Height\": 0.13, \"Whole_weight\": 1.1335, \"Shucked_weight\": 0.586, \"Viscera_weight\": 0.2565, \"Shell_weight\": 0.237, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.465, \"Height\": 0.155, \"Whole_weight\": 1.136, \"Shucked_weight\": 0.5245, \"Viscera_weight\": 0.2615, \"Shell_weight\": 0.275, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.47, \"Height\": 0.16, \"Whole_weight\": 1.206, \"Shucked_weight\": 0.479, \"Viscera_weight\": 0.2425, \"Shell_weight\": 0.309, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.455, \"Height\": 0.145, \"Whole_weight\": 1.063, \"Shucked_weight\": 0.5155, \"Viscera_weight\": 0.2445, \"Shell_weight\": 0.25, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 1.121, \"Shucked_weight\": 0.4515, \"Viscera_weight\": 0.17800000000000002, \"Shell_weight\": 0.155, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 1.114, \"Shucked_weight\": 0.5865, \"Viscera_weight\": 0.2205, \"Shell_weight\": 0.25, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.475, \"Height\": 0.165, \"Whole_weight\": 1.213, \"Shucked_weight\": 0.621, \"Viscera_weight\": 0.2435, \"Shell_weight\": 0.27399999999999997, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.46, \"Height\": 0.14, \"Whole_weight\": 1.0045, \"Shucked_weight\": 0.4655, \"Viscera_weight\": 0.2095, \"Shell_weight\": 0.2515, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 1.044, \"Shucked_weight\": 0.518, \"Viscera_weight\": 0.2205, \"Shell_weight\": 0.27, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.49, \"Height\": 0.15, \"Whole_weight\": 1.1345, \"Shucked_weight\": 0.5265, \"Viscera_weight\": 0.2645, \"Shell_weight\": 0.295, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 1.161, \"Shucked_weight\": 0.5720000000000001, \"Viscera_weight\": 0.2455, \"Shell_weight\": 0.275, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 1.2315, \"Shucked_weight\": 0.6025, \"Viscera_weight\": 0.262, \"Shell_weight\": 0.2925, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 1.1625, \"Shucked_weight\": 0.565, \"Viscera_weight\": 0.258, \"Shell_weight\": 0.3085, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 1.168, \"Shucked_weight\": 0.5539999999999999, \"Viscera_weight\": 0.239, \"Shell_weight\": 0.3295, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.48, \"Height\": 0.16, \"Whole_weight\": 1.2525, \"Shucked_weight\": 0.585, \"Viscera_weight\": 0.2595, \"Shell_weight\": 0.33, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.51, \"Height\": 0.18, \"Whole_weight\": 1.3315, \"Shucked_weight\": 0.594, \"Viscera_weight\": 0.276, \"Shell_weight\": 0.38799999999999996, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.48, \"Height\": 0.17, \"Whole_weight\": 1.3525, \"Shucked_weight\": 0.6235, \"Viscera_weight\": 0.278, \"Shell_weight\": 0.365, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.175, \"Whole_weight\": 1.3325, \"Shucked_weight\": 0.5705, \"Viscera_weight\": 0.271, \"Shell_weight\": 0.405, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.1435, \"Shucked_weight\": 0.4755, \"Viscera_weight\": 0.2475, \"Shell_weight\": 0.349, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.288, \"Shucked_weight\": 0.573, \"Viscera_weight\": 0.3035, \"Shell_weight\": 0.315, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.485, \"Height\": 0.2, \"Whole_weight\": 1.38, \"Shucked_weight\": 0.5845, \"Viscera_weight\": 0.302, \"Shell_weight\": 0.401, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.485, \"Height\": 0.155, \"Whole_weight\": 1.278, \"Shucked_weight\": 0.637, \"Viscera_weight\": 0.275, \"Shell_weight\": 0.31, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.495, \"Height\": 0.165, \"Whole_weight\": 1.3075, \"Shucked_weight\": 0.599, \"Viscera_weight\": 0.284, \"Shell_weight\": 0.315, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 1.1785, \"Shucked_weight\": 0.5185, \"Viscera_weight\": 0.248, \"Shell_weight\": 0.3235, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.49, \"Height\": 0.175, \"Whole_weight\": 1.375, \"Shucked_weight\": 0.623, \"Viscera_weight\": 0.2705, \"Shell_weight\": 0.395, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.525, \"Height\": 0.185, \"Whole_weight\": 1.4065, \"Shucked_weight\": 0.684, \"Viscera_weight\": 0.3, \"Shell_weight\": 0.3745, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.505, \"Height\": 0.155, \"Whole_weight\": 1.4025, \"Shucked_weight\": 0.705, \"Viscera_weight\": 0.2655, \"Shell_weight\": 0.335, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.5, \"Height\": 0.17, \"Whole_weight\": 1.5175, \"Shucked_weight\": 0.693, \"Viscera_weight\": 0.326, \"Shell_weight\": 0.409, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.3940000000000001, \"Shucked_weight\": 0.4935, \"Viscera_weight\": 0.29100000000000004, \"Shell_weight\": 0.4, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.155, \"Whole_weight\": 1.2205, \"Shucked_weight\": 0.6145, \"Viscera_weight\": 0.23600000000000002, \"Shell_weight\": 0.3185, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.52, \"Height\": 0.175, \"Whole_weight\": 1.636, \"Shucked_weight\": 0.779, \"Viscera_weight\": 0.342, \"Shell_weight\": 0.43200000000000005, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.52, \"Height\": 0.175, \"Whole_weight\": 1.561, \"Shucked_weight\": 0.7090000000000001, \"Viscera_weight\": 0.3555, \"Shell_weight\": 0.4, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.4325, \"Shucked_weight\": 0.684, \"Viscera_weight\": 0.308, \"Shell_weight\": 0.336, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.3385, \"Shucked_weight\": 0.633, \"Viscera_weight\": 0.299, \"Shell_weight\": 0.349, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.16, \"Whole_weight\": 1.2465, \"Shucked_weight\": 0.5475, \"Viscera_weight\": 0.327, \"Shell_weight\": 0.3, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.515, \"Height\": 0.15, \"Whole_weight\": 1.212, \"Shucked_weight\": 0.515, \"Viscera_weight\": 0.2055, \"Shell_weight\": 0.385, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.495, \"Height\": 0.16, \"Whole_weight\": 1.304, \"Shucked_weight\": 0.57, \"Viscera_weight\": 0.312, \"Shell_weight\": 0.3725, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.52, \"Height\": 0.21, \"Whole_weight\": 1.6785, \"Shucked_weight\": 0.6665, \"Viscera_weight\": 0.308, \"Shell_weight\": 0.46, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.525, \"Height\": 0.185, \"Whole_weight\": 1.6219999999999999, \"Shucked_weight\": 0.6645, \"Viscera_weight\": 0.3225, \"Shell_weight\": 0.47700000000000004, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.46, \"Height\": 0.16, \"Whole_weight\": 1.494, \"Shucked_weight\": 0.6895, \"Viscera_weight\": 0.331, \"Shell_weight\": 0.1825, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.6525, \"Shucked_weight\": 0.8515, \"Viscera_weight\": 0.3365, \"Shell_weight\": 0.40299999999999997, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.505, \"Height\": 0.185, \"Whole_weight\": 1.528, \"Shucked_weight\": 0.69, \"Viscera_weight\": 0.3025, \"Shell_weight\": 0.441, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.535, \"Height\": 0.19, \"Whole_weight\": 1.5905, \"Shucked_weight\": 0.6425, \"Viscera_weight\": 0.297, \"Shell_weight\": 0.5175, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.495, \"Height\": 0.195, \"Whole_weight\": 1.6275, \"Shucked_weight\": 0.594, \"Viscera_weight\": 0.3595, \"Shell_weight\": 0.485, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.475, \"Height\": 0.18, \"Whole_weight\": 1.3695, \"Shucked_weight\": 0.6409999999999999, \"Viscera_weight\": 0.294, \"Shell_weight\": 0.335, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.525, \"Height\": 0.165, \"Whole_weight\": 1.6085, \"Shucked_weight\": 0.682, \"Viscera_weight\": 0.3145, \"Shell_weight\": 0.4005, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.57, \"Height\": 0.225, \"Whole_weight\": 1.587, \"Shucked_weight\": 0.7390000000000001, \"Viscera_weight\": 0.2995, \"Shell_weight\": 0.435, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.565, \"Height\": 0.195, \"Whole_weight\": 1.8375, \"Shucked_weight\": 0.7645, \"Viscera_weight\": 0.3615, \"Shell_weight\": 0.5529999999999999, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.68, \"Diameter\": 0.535, \"Height\": 0.185, \"Whole_weight\": 1.607, \"Shucked_weight\": 0.7245, \"Viscera_weight\": 0.3215, \"Shell_weight\": 0.498, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.69, \"Diameter\": 0.525, \"Height\": 0.175, \"Whole_weight\": 1.7005, \"Shucked_weight\": 0.8255, \"Viscera_weight\": 0.36200000000000004, \"Shell_weight\": 0.405, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.69, \"Diameter\": 0.505, \"Height\": 0.2, \"Whole_weight\": 1.8719999999999999, \"Shucked_weight\": 0.893, \"Viscera_weight\": 0.4015, \"Shell_weight\": 0.48, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.695, \"Diameter\": 0.535, \"Height\": 0.175, \"Whole_weight\": 1.8385, \"Shucked_weight\": 0.8035, \"Viscera_weight\": 0.396, \"Shell_weight\": 0.503, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.705, \"Diameter\": 0.535, \"Height\": 0.18, \"Whole_weight\": 1.685, \"Shucked_weight\": 0.693, \"Viscera_weight\": 0.42, \"Shell_weight\": 0.4045, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.71, \"Diameter\": 0.565, \"Height\": 0.205, \"Whole_weight\": 2.198, \"Shucked_weight\": 1.012, \"Viscera_weight\": 0.5225, \"Shell_weight\": 0.5475, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.715, \"Diameter\": 0.565, \"Height\": 0.175, \"Whole_weight\": 1.9525, \"Shucked_weight\": 0.7645, \"Viscera_weight\": 0.4185, \"Shell_weight\": 0.4135, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.715, \"Diameter\": 0.525, \"Height\": 0.185, \"Whole_weight\": 1.56, \"Shucked_weight\": 0.6655, \"Viscera_weight\": 0.38299999999999995, \"Shell_weight\": 0.405, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.735, \"Diameter\": 0.6, \"Height\": 0.22, \"Whole_weight\": 2.555, \"Shucked_weight\": 1.1335, \"Viscera_weight\": 0.44, \"Shell_weight\": 0.6, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.765, \"Diameter\": 0.6, \"Height\": 0.22, \"Whole_weight\": 2.302, \"Shucked_weight\": 1.0070000000000001, \"Viscera_weight\": 0.509, \"Shell_weight\": 0.6205, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.185, \"Diameter\": 0.13, \"Height\": 0.045, \"Whole_weight\": 0.028999999999999998, \"Shucked_weight\": 0.012, \"Viscera_weight\": 0.0075, \"Shell_weight\": 0.0095, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.195, \"Diameter\": 0.15, \"Height\": 0.045, \"Whole_weight\": 0.0375, \"Shucked_weight\": 0.018000000000000002, \"Viscera_weight\": 0.006, \"Shell_weight\": 0.011000000000000001, \"Rings\": 3, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.195, \"Diameter\": 0.135, \"Height\": 0.04, \"Whole_weight\": 0.0325, \"Shucked_weight\": 0.0135, \"Viscera_weight\": 0.005, \"Shell_weight\": 0.0095, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.2, \"Diameter\": 0.155, \"Height\": 0.04, \"Whole_weight\": 0.0435, \"Shucked_weight\": 0.0155, \"Viscera_weight\": 0.009000000000000001, \"Shell_weight\": 0.006999999999999999, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.225, \"Diameter\": 0.165, \"Height\": 0.055, \"Whole_weight\": 0.059000000000000004, \"Shucked_weight\": 0.027000000000000003, \"Viscera_weight\": 0.0125, \"Shell_weight\": 0.015, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.245, \"Diameter\": 0.18, \"Height\": 0.065, \"Whole_weight\": 0.071, \"Shucked_weight\": 0.03, \"Viscera_weight\": 0.013000000000000001, \"Shell_weight\": 0.0215, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.25, \"Diameter\": 0.18, \"Height\": 0.065, \"Whole_weight\": 0.0685, \"Shucked_weight\": 0.0245, \"Viscera_weight\": 0.0155, \"Shell_weight\": 0.0225, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.265, \"Diameter\": 0.195, \"Height\": 0.055, \"Whole_weight\": 0.084, \"Shucked_weight\": 0.0365, \"Viscera_weight\": 0.0175, \"Shell_weight\": 0.025, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.195, \"Height\": 0.065, \"Whole_weight\": 0.106, \"Shucked_weight\": 0.054000000000000006, \"Viscera_weight\": 0.02, \"Shell_weight\": 0.027999999999999997, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.21, \"Height\": 0.085, \"Whole_weight\": 0.1075, \"Shucked_weight\": 0.0415, \"Viscera_weight\": 0.024, \"Shell_weight\": 0.034, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.285, \"Diameter\": 0.22, \"Height\": 0.065, \"Whole_weight\": 0.096, \"Shucked_weight\": 0.0405, \"Viscera_weight\": 0.0205, \"Shell_weight\": 0.03, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.3, \"Diameter\": 0.22, \"Height\": 0.08, \"Whole_weight\": 0.1255, \"Shucked_weight\": 0.055, \"Viscera_weight\": 0.0265, \"Shell_weight\": 0.039, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.315, \"Diameter\": 0.235, \"Height\": 0.055, \"Whole_weight\": 0.151, \"Shucked_weight\": 0.065, \"Viscera_weight\": 0.027000000000000003, \"Shell_weight\": 0.039, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.225, \"Height\": 0.085, \"Whole_weight\": 0.1415, \"Shucked_weight\": 0.0675, \"Viscera_weight\": 0.0295, \"Shell_weight\": 0.0405, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.34, \"Diameter\": 0.265, \"Height\": 0.08, \"Whole_weight\": 0.2015, \"Shucked_weight\": 0.09, \"Viscera_weight\": 0.0475, \"Shell_weight\": 0.055, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.28, \"Height\": 0.1, \"Whole_weight\": 0.221, \"Shucked_weight\": 0.1165, \"Viscera_weight\": 0.0265, \"Shell_weight\": 0.0635, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.28, \"Height\": 0.08, \"Whole_weight\": 0.2345, \"Shucked_weight\": 0.1125, \"Viscera_weight\": 0.0455, \"Shell_weight\": 0.067, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.275, \"Height\": 0.1, \"Whole_weight\": 0.2325, \"Shucked_weight\": 0.1165, \"Viscera_weight\": 0.042, \"Shell_weight\": 0.065, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.29, \"Height\": 0.08, \"Whole_weight\": 0.2485, \"Shucked_weight\": 0.122, \"Viscera_weight\": 0.0495, \"Shell_weight\": 0.065, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.32, \"Height\": 0.095, \"Whole_weight\": 0.348, \"Shucked_weight\": 0.19399999999999998, \"Viscera_weight\": 0.053, \"Shell_weight\": 0.087, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.3, \"Height\": 0.11, \"Whole_weight\": 0.32, \"Shucked_weight\": 0.172, \"Viscera_weight\": 0.044000000000000004, \"Shell_weight\": 0.09300000000000001, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.3, \"Height\": 0.1, \"Whole_weight\": 0.282, \"Shucked_weight\": 0.1255, \"Viscera_weight\": 0.057, \"Shell_weight\": 0.0875, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.3245, \"Shucked_weight\": 0.132, \"Viscera_weight\": 0.07200000000000001, \"Shell_weight\": 0.106, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.3, \"Height\": 0.105, \"Whole_weight\": 0.316, \"Shucked_weight\": 0.1255, \"Viscera_weight\": 0.07, \"Shell_weight\": 0.1035, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.32, \"Height\": 0.11, \"Whole_weight\": 0.3625, \"Shucked_weight\": 0.174, \"Viscera_weight\": 0.0635, \"Shell_weight\": 0.105, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.31, \"Height\": 0.095, \"Whole_weight\": 0.27899999999999997, \"Shucked_weight\": 0.1255, \"Viscera_weight\": 0.051, \"Shell_weight\": 0.08800000000000001, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.325, \"Height\": 0.115, \"Whole_weight\": 0.3685, \"Shucked_weight\": 0.162, \"Viscera_weight\": 0.0865, \"Shell_weight\": 0.1045, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.43, \"Diameter\": 0.335, \"Height\": 0.12, \"Whole_weight\": 0.397, \"Shucked_weight\": 0.1985, \"Viscera_weight\": 0.0865, \"Shell_weight\": 0.1035, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.33, \"Height\": 0.11, \"Whole_weight\": 0.413, \"Shucked_weight\": 0.2055, \"Viscera_weight\": 0.096, \"Shell_weight\": 0.096, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.345, \"Height\": 0.115, \"Whole_weight\": 0.418, \"Shucked_weight\": 0.222, \"Viscera_weight\": 0.0735, \"Shell_weight\": 0.106, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.33, \"Height\": 0.11, \"Whole_weight\": 0.3705, \"Shucked_weight\": 0.1545, \"Viscera_weight\": 0.084, \"Shell_weight\": 0.12, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.345, \"Height\": 0.105, \"Whole_weight\": 0.409, \"Shucked_weight\": 0.1675, \"Viscera_weight\": 0.1015, \"Shell_weight\": 0.11699999999999999, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.34, \"Height\": 0.145, \"Whole_weight\": 0.434, \"Shucked_weight\": 0.1945, \"Viscera_weight\": 0.0905, \"Shell_weight\": 0.13, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.335, \"Height\": 0.11, \"Whole_weight\": 0.41100000000000003, \"Shucked_weight\": 0.1985, \"Viscera_weight\": 0.0935, \"Shell_weight\": 0.109, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.365, \"Height\": 0.125, \"Whole_weight\": 0.462, \"Shucked_weight\": 0.2135, \"Viscera_weight\": 0.0985, \"Shell_weight\": 0.1315, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.34, \"Height\": 0.12, \"Whole_weight\": 0.4925, \"Shucked_weight\": 0.24100000000000002, \"Viscera_weight\": 0.1075, \"Shell_weight\": 0.12, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.33, \"Height\": 0.105, \"Whole_weight\": 0.3715, \"Shucked_weight\": 0.1865, \"Viscera_weight\": 0.0785, \"Shell_weight\": 0.0975, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.33, \"Height\": 0.1, \"Whole_weight\": 0.41100000000000003, \"Shucked_weight\": 0.1945, \"Viscera_weight\": 0.1, \"Shell_weight\": 0.098, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.33, \"Height\": 0.11, \"Whole_weight\": 0.3685, \"Shucked_weight\": 0.16, \"Viscera_weight\": 0.0885, \"Shell_weight\": 0.102, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.35, \"Height\": 0.115, \"Whole_weight\": 0.4155, \"Shucked_weight\": 0.18, \"Viscera_weight\": 0.098, \"Shell_weight\": 0.1175, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.36, \"Height\": 0.105, \"Whole_weight\": 0.544, \"Shucked_weight\": 0.27, \"Viscera_weight\": 0.1395, \"Shell_weight\": 0.129, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.38, \"Height\": 0.125, \"Whole_weight\": 0.4845, \"Shucked_weight\": 0.21100000000000002, \"Viscera_weight\": 0.1075, \"Shell_weight\": 0.142, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.35, \"Height\": 0.11, \"Whole_weight\": 0.4565, \"Shucked_weight\": 0.20600000000000002, \"Viscera_weight\": 0.099, \"Shell_weight\": 0.13, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.35, \"Height\": 0.1, \"Whole_weight\": 0.4545, \"Shucked_weight\": 0.2165, \"Viscera_weight\": 0.111, \"Shell_weight\": 0.115, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.38, \"Height\": 0.125, \"Whole_weight\": 0.6245, \"Shucked_weight\": 0.3395, \"Viscera_weight\": 0.1085, \"Shell_weight\": 0.1665, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.465, \"Height\": 0.125, \"Whole_weight\": 0.5225, \"Shucked_weight\": 0.235, \"Viscera_weight\": 0.13, \"Shell_weight\": 0.141, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.375, \"Height\": 0.14, \"Whole_weight\": 0.5495, \"Shucked_weight\": 0.248, \"Viscera_weight\": 0.11199999999999999, \"Shell_weight\": 0.1585, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.542, \"Shucked_weight\": 0.215, \"Viscera_weight\": 0.11599999999999999, \"Shell_weight\": 0.17, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.38, \"Height\": 0.125, \"Whole_weight\": 0.519, \"Shucked_weight\": 0.2485, \"Viscera_weight\": 0.1135, \"Shell_weight\": 0.134, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.39, \"Height\": 0.125, \"Whole_weight\": 0.5215, \"Shucked_weight\": 0.2485, \"Viscera_weight\": 0.11699999999999999, \"Shell_weight\": 0.131, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.39, \"Height\": 0.125, \"Whole_weight\": 0.5445, \"Shucked_weight\": 0.24600000000000002, \"Viscera_weight\": 0.15, \"Shell_weight\": 0.1405, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.405, \"Height\": 0.125, \"Whole_weight\": 0.6795, \"Shucked_weight\": 0.3465, \"Viscera_weight\": 0.1395, \"Shell_weight\": 0.182, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.51, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.545, \"Shucked_weight\": 0.261, \"Viscera_weight\": 0.115, \"Shell_weight\": 0.1385, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.5575, \"Shucked_weight\": 0.2615, \"Viscera_weight\": 0.1195, \"Shell_weight\": 0.1525, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.38, \"Height\": 0.115, \"Whole_weight\": 0.5155, \"Shucked_weight\": 0.215, \"Viscera_weight\": 0.1135, \"Shell_weight\": 0.166, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.385, \"Height\": 0.125, \"Whole_weight\": 0.6115, \"Shucked_weight\": 0.3175, \"Viscera_weight\": 0.1265, \"Shell_weight\": 0.15, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.4, \"Height\": 0.145, \"Whole_weight\": 0.7765, \"Shucked_weight\": 0.3525, \"Viscera_weight\": 0.1845, \"Shell_weight\": 0.185, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.5395, \"Shucked_weight\": 0.2295, \"Viscera_weight\": 0.133, \"Shell_weight\": 0.157, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.38, \"Height\": 0.125, \"Whole_weight\": 0.5545, \"Shucked_weight\": 0.28800000000000003, \"Viscera_weight\": 0.1295, \"Shell_weight\": 0.16699999999999998, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.46, \"Height\": 0.15, \"Whole_weight\": 1.0190000000000001, \"Shucked_weight\": 0.523, \"Viscera_weight\": 0.1985, \"Shell_weight\": 0.254, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.6455, \"Shucked_weight\": 0.325, \"Viscera_weight\": 0.1245, \"Shell_weight\": 0.17, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.14, \"Whole_weight\": 0.601, \"Shucked_weight\": 0.2625, \"Viscera_weight\": 0.1285, \"Shell_weight\": 0.1835, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.405, \"Height\": 0.12, \"Whole_weight\": 0.7555, \"Shucked_weight\": 0.3755, \"Viscera_weight\": 0.1555, \"Shell_weight\": 0.201, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.395, \"Height\": 0.12, \"Whole_weight\": 0.608, \"Shucked_weight\": 0.297, \"Viscera_weight\": 0.1395, \"Shell_weight\": 0.1405, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.617, \"Shucked_weight\": 0.27899999999999997, \"Viscera_weight\": 0.127, \"Shell_weight\": 0.19, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.39, \"Height\": 0.125, \"Whole_weight\": 0.599, \"Shucked_weight\": 0.2595, \"Viscera_weight\": 0.149, \"Shell_weight\": 0.16899999999999998, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.42, \"Height\": 0.14, \"Whole_weight\": 0.6665, \"Shucked_weight\": 0.3125, \"Viscera_weight\": 0.138, \"Shell_weight\": 0.1895, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.39, \"Height\": 0.135, \"Whole_weight\": 0.7835, \"Shucked_weight\": 0.4225, \"Viscera_weight\": 0.1815, \"Shell_weight\": 0.156, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.41, \"Height\": 0.12, \"Whole_weight\": 0.7929999999999999, \"Shucked_weight\": 0.434, \"Viscera_weight\": 0.1405, \"Shell_weight\": 0.19, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.415, \"Height\": 0.14, \"Whole_weight\": 0.82, \"Shucked_weight\": 0.4615, \"Viscera_weight\": 0.127, \"Shell_weight\": 0.218, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.415, \"Height\": 0.135, \"Whole_weight\": 0.8145, \"Shucked_weight\": 0.42700000000000005, \"Viscera_weight\": 0.1855, \"Shell_weight\": 0.175, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.84, \"Shucked_weight\": 0.395, \"Viscera_weight\": 0.195, \"Shell_weight\": 0.223, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.15, \"Whole_weight\": 0.8315, \"Shucked_weight\": 0.41100000000000003, \"Viscera_weight\": 0.1765, \"Shell_weight\": 0.2165, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.43, \"Height\": 0.145, \"Whole_weight\": 0.8995, \"Shucked_weight\": 0.46399999999999997, \"Viscera_weight\": 0.1775, \"Shell_weight\": 0.23399999999999999, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.445, \"Height\": 0.16, \"Whole_weight\": 0.8965, \"Shucked_weight\": 0.42, \"Viscera_weight\": 0.2175, \"Shell_weight\": 0.2215, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.44, \"Height\": 0.155, \"Whole_weight\": 0.6405, \"Shucked_weight\": 0.336, \"Viscera_weight\": 0.1765, \"Shell_weight\": 0.245, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.415, \"Height\": 0.145, \"Whole_weight\": 0.852, \"Shucked_weight\": 0.43, \"Viscera_weight\": 0.1885, \"Shell_weight\": 0.205, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 0.9595, \"Shucked_weight\": 0.4565, \"Viscera_weight\": 0.2395, \"Shell_weight\": 0.23, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.435, \"Height\": 0.15, \"Whole_weight\": 0.99, \"Shucked_weight\": 0.5795, \"Viscera_weight\": 0.1825, \"Shell_weight\": 0.20600000000000002, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.45, \"Height\": 0.175, \"Whole_weight\": 1.0095, \"Shucked_weight\": 0.447, \"Viscera_weight\": 0.2375, \"Shell_weight\": 0.2645, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.46, \"Height\": 0.15, \"Whole_weight\": 1.0375, \"Shucked_weight\": 0.5415, \"Viscera_weight\": 0.2035, \"Shell_weight\": 0.25, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.445, \"Height\": 0.145, \"Whole_weight\": 0.8775, \"Shucked_weight\": 0.41200000000000003, \"Viscera_weight\": 0.217, \"Shell_weight\": 0.22, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.57, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 0.755, \"Shucked_weight\": 0.3425, \"Viscera_weight\": 0.16, \"Shell_weight\": 0.22399999999999998, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.46, \"Height\": 0.145, \"Whole_weight\": 0.9945, \"Shucked_weight\": 0.466, \"Viscera_weight\": 0.22899999999999998, \"Shell_weight\": 0.265, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 1.068, \"Shucked_weight\": 0.556, \"Viscera_weight\": 0.214, \"Shell_weight\": 0.2575, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.8455, \"Shucked_weight\": 0.401, \"Viscera_weight\": 0.191, \"Shell_weight\": 0.222, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 0.8690000000000001, \"Shucked_weight\": 0.435, \"Viscera_weight\": 0.19699999999999998, \"Shell_weight\": 0.23800000000000002, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.455, \"Height\": 0.135, \"Whole_weight\": 0.907, \"Shucked_weight\": 0.4245, \"Viscera_weight\": 0.19699999999999998, \"Shell_weight\": 0.26, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.435, \"Height\": 0.13, \"Whole_weight\": 0.805, \"Shucked_weight\": 0.3155, \"Viscera_weight\": 0.2155, \"Shell_weight\": 0.245, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.445, \"Height\": 0.17, \"Whole_weight\": 1.0225, \"Shucked_weight\": 0.5489999999999999, \"Viscera_weight\": 0.2175, \"Shell_weight\": 0.228, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.445, \"Height\": 0.145, \"Whole_weight\": 0.847, \"Shucked_weight\": 0.415, \"Viscera_weight\": 0.1945, \"Shell_weight\": 0.22, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 1.114, \"Shucked_weight\": 0.4765, \"Viscera_weight\": 0.2155, \"Shell_weight\": 0.265, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.455, \"Height\": 0.195, \"Whole_weight\": 1.859, \"Shucked_weight\": 0.945, \"Viscera_weight\": 0.426, \"Shell_weight\": 0.441, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.445, \"Height\": 0.135, \"Whole_weight\": 0.8140000000000001, \"Shucked_weight\": 0.3775, \"Viscera_weight\": 0.1915, \"Shell_weight\": 0.22, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.14, \"Whole_weight\": 0.9615, \"Shucked_weight\": 0.486, \"Viscera_weight\": 0.1815, \"Shell_weight\": 0.253, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 1.0025, \"Shucked_weight\": 0.547, \"Viscera_weight\": 0.1975, \"Shell_weight\": 0.2295, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.155, \"Whole_weight\": 0.93, \"Shucked_weight\": 0.385, \"Viscera_weight\": 0.24600000000000002, \"Shell_weight\": 0.265, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.46, \"Height\": 0.145, \"Whole_weight\": 0.9335, \"Shucked_weight\": 0.478, \"Viscera_weight\": 0.1825, \"Shell_weight\": 0.235, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.465, \"Height\": 0.16, \"Whole_weight\": 0.9555, \"Shucked_weight\": 0.4595, \"Viscera_weight\": 0.23600000000000002, \"Shell_weight\": 0.265, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 0.9955, \"Shucked_weight\": 0.48100000000000004, \"Viscera_weight\": 0.23199999999999998, \"Shell_weight\": 0.24, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.0265, \"Shucked_weight\": 0.485, \"Viscera_weight\": 0.2495, \"Shell_weight\": 0.2565, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.455, \"Height\": 0.17, \"Whole_weight\": 1.1915, \"Shucked_weight\": 0.696, \"Viscera_weight\": 0.2395, \"Shell_weight\": 0.24, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 1.1025, \"Shucked_weight\": 0.5455, \"Viscera_weight\": 0.262, \"Shell_weight\": 0.25, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.465, \"Height\": 0.155, \"Whole_weight\": 1.0165, \"Shucked_weight\": 0.512, \"Viscera_weight\": 0.2465, \"Shell_weight\": 0.225, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 1.1775, \"Shucked_weight\": 0.611, \"Viscera_weight\": 0.2275, \"Shell_weight\": 0.292, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.14, \"Whole_weight\": 1.1175, \"Shucked_weight\": 0.555, \"Viscera_weight\": 0.257, \"Shell_weight\": 0.27399999999999997, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.48, \"Height\": 0.17, \"Whole_weight\": 1.1835, \"Shucked_weight\": 0.5820000000000001, \"Viscera_weight\": 0.2365, \"Shell_weight\": 0.317, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.165, \"Whole_weight\": 1.056, \"Shucked_weight\": 0.433, \"Viscera_weight\": 0.2195, \"Shell_weight\": 0.35700000000000004, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.485, \"Height\": 0.16, \"Whole_weight\": 1.0145, \"Shucked_weight\": 0.5315, \"Viscera_weight\": 0.212, \"Shell_weight\": 0.2415, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.485, \"Height\": 0.145, \"Whole_weight\": 1.3305, \"Shucked_weight\": 0.7829999999999999, \"Viscera_weight\": 0.2255, \"Shell_weight\": 0.2865, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 1.052, \"Shucked_weight\": 0.498, \"Viscera_weight\": 0.242, \"Shell_weight\": 0.267, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.46, \"Height\": 0.17, \"Whole_weight\": 1.0565, \"Shucked_weight\": 0.4815, \"Viscera_weight\": 0.272, \"Shell_weight\": 0.27, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 0.9229999999999999, \"Shucked_weight\": 0.4615, \"Viscera_weight\": 0.1825, \"Shell_weight\": 0.2415, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 1.0270000000000001, \"Shucked_weight\": 0.447, \"Viscera_weight\": 0.25, \"Shell_weight\": 0.285, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.47, \"Height\": 0.135, \"Whole_weight\": 1.0195, \"Shucked_weight\": 0.5315, \"Viscera_weight\": 0.2005, \"Shell_weight\": 0.2475, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.45, \"Height\": 0.2, \"Whole_weight\": 0.858, \"Shucked_weight\": 0.4285, \"Viscera_weight\": 0.1525, \"Shell_weight\": 0.2405, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.48, \"Height\": 0.16, \"Whole_weight\": 1.1125, \"Shucked_weight\": 0.5635, \"Viscera_weight\": 0.2445, \"Shell_weight\": 0.281, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.485, \"Height\": 0.175, \"Whole_weight\": 1.3745, \"Shucked_weight\": 0.7335, \"Viscera_weight\": 0.2715, \"Shell_weight\": 0.332, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.48, \"Height\": 0.185, \"Whole_weight\": 1.2065, \"Shucked_weight\": 0.5870000000000001, \"Viscera_weight\": 0.29, \"Shell_weight\": 0.28600000000000003, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 1.1325, \"Shucked_weight\": 0.589, \"Viscera_weight\": 0.21100000000000002, \"Shell_weight\": 0.287, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.2645, \"Shucked_weight\": 0.5635, \"Viscera_weight\": 0.3065, \"Shell_weight\": 0.3425, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.495, \"Height\": 0.015, \"Whole_weight\": 1.1565, \"Shucked_weight\": 0.5115, \"Viscera_weight\": 0.308, \"Shell_weight\": 0.2885, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.515, \"Height\": 0.165, \"Whole_weight\": 1.369, \"Shucked_weight\": 0.632, \"Viscera_weight\": 0.3415, \"Shell_weight\": 0.358, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.53, \"Height\": 0.195, \"Whole_weight\": 1.39, \"Shucked_weight\": 0.6465, \"Viscera_weight\": 0.2945, \"Shell_weight\": 0.3735, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.48, \"Height\": 0.17, \"Whole_weight\": 1.1345, \"Shucked_weight\": 0.528, \"Viscera_weight\": 0.254, \"Shell_weight\": 0.305, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.5, \"Height\": 0.19, \"Whole_weight\": 1.464, \"Shucked_weight\": 0.6415, \"Viscera_weight\": 0.33899999999999997, \"Shell_weight\": 0.4245, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.5, \"Height\": 0.155, \"Whole_weight\": 1.202, \"Shucked_weight\": 0.565, \"Viscera_weight\": 0.3135, \"Shell_weight\": 0.294, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.515, \"Height\": 0.16, \"Whole_weight\": 1.31, \"Shucked_weight\": 0.5529999999999999, \"Viscera_weight\": 0.369, \"Shell_weight\": 0.345, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.415, \"Shucked_weight\": 0.5885, \"Viscera_weight\": 0.3725, \"Shell_weight\": 0.364, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.53, \"Height\": 0.185, \"Whole_weight\": 1.3459999999999999, \"Shucked_weight\": 0.546, \"Viscera_weight\": 0.2705, \"Shell_weight\": 0.47600000000000003, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.525, \"Height\": 0.16, \"Whole_weight\": 1.3630000000000002, \"Shucked_weight\": 0.629, \"Viscera_weight\": 0.27899999999999997, \"Shell_weight\": 0.34, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.665, \"Diameter\": 0.5, \"Height\": 0.17, \"Whole_weight\": 1.2975, \"Shucked_weight\": 0.6035, \"Viscera_weight\": 0.29100000000000004, \"Shell_weight\": 0.3595, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.505, \"Height\": 0.205, \"Whole_weight\": 1.3645, \"Shucked_weight\": 0.6075, \"Viscera_weight\": 0.3025, \"Shell_weight\": 0.353, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.685, \"Diameter\": 0.54, \"Height\": 0.215, \"Whole_weight\": 1.7025, \"Shucked_weight\": 0.664, \"Viscera_weight\": 0.3655, \"Shell_weight\": 0.4735, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.685, \"Diameter\": 0.52, \"Height\": 0.165, \"Whole_weight\": 1.5190000000000001, \"Shucked_weight\": 0.6990000000000001, \"Viscera_weight\": 0.3685, \"Shell_weight\": 0.4, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.69, \"Diameter\": 0.54, \"Height\": 0.155, \"Whole_weight\": 1.454, \"Shucked_weight\": 0.624, \"Viscera_weight\": 0.3105, \"Shell_weight\": 0.39, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.69, \"Diameter\": 0.53, \"Height\": 0.21, \"Whole_weight\": 1.5830000000000002, \"Shucked_weight\": 0.7355, \"Viscera_weight\": 0.405, \"Shell_weight\": 0.3865, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.69, \"Diameter\": 0.53, \"Height\": 0.17, \"Whole_weight\": 1.5535, \"Shucked_weight\": 0.7945, \"Viscera_weight\": 0.3485, \"Shell_weight\": 0.3695, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.695, \"Diameter\": 0.56, \"Height\": 0.185, \"Whole_weight\": 1.74, \"Shucked_weight\": 0.885, \"Viscera_weight\": 0.3715, \"Shell_weight\": 0.4375, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.565, \"Height\": 0.18, \"Whole_weight\": 1.751, \"Shucked_weight\": 0.895, \"Viscera_weight\": 0.3355, \"Shell_weight\": 0.446, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.575, \"Height\": 0.19, \"Whole_weight\": 2.273, \"Shucked_weight\": 1.095, \"Viscera_weight\": 0.418, \"Shell_weight\": 0.638, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.525, \"Height\": 0.19, \"Whole_weight\": 1.6465, \"Shucked_weight\": 0.8545, \"Viscera_weight\": 0.307, \"Shell_weight\": 0.3995, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.705, \"Diameter\": 0.55, \"Height\": 0.17, \"Whole_weight\": 1.219, \"Shucked_weight\": 0.6395, \"Viscera_weight\": 0.23600000000000002, \"Shell_weight\": 0.301, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.71, \"Diameter\": 0.56, \"Height\": 0.18, \"Whole_weight\": 1.652, \"Shucked_weight\": 0.735, \"Viscera_weight\": 0.381, \"Shell_weight\": 0.4525, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.715, \"Diameter\": 0.55, \"Height\": 0.19, \"Whole_weight\": 2.0045, \"Shucked_weight\": 1.0465, \"Viscera_weight\": 0.40700000000000003, \"Shell_weight\": 0.5075, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.715, \"Diameter\": 0.535, \"Height\": 0.19, \"Whole_weight\": 1.6755, \"Shucked_weight\": 0.889, \"Viscera_weight\": 0.313, \"Shell_weight\": 0.42, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.58, \"Height\": 0.195, \"Whole_weight\": 2.103, \"Shucked_weight\": 1.0265, \"Viscera_weight\": 0.48, \"Shell_weight\": 0.5375, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.55, \"Height\": 0.2, \"Whole_weight\": 1.9965, \"Shucked_weight\": 0.9035, \"Viscera_weight\": 0.469, \"Shell_weight\": 0.5215, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.72, \"Diameter\": 0.565, \"Height\": 0.145, \"Whole_weight\": 1.187, \"Shucked_weight\": 0.691, \"Viscera_weight\": 0.1945, \"Shell_weight\": 0.2685, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.725, \"Diameter\": 0.505, \"Height\": 0.185, \"Whole_weight\": 1.9780000000000002, \"Shucked_weight\": 1.026, \"Viscera_weight\": 0.4255, \"Shell_weight\": 0.4505, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.73, \"Diameter\": 0.575, \"Height\": 0.185, \"Whole_weight\": 1.8795, \"Shucked_weight\": 0.9309999999999999, \"Viscera_weight\": 0.38, \"Shell_weight\": 0.4825, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.735, \"Diameter\": 0.585, \"Height\": 0.185, \"Whole_weight\": 2.124, \"Shucked_weight\": 0.9520000000000001, \"Viscera_weight\": 0.55, \"Shell_weight\": 0.5, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.745, \"Diameter\": 0.565, \"Height\": 0.215, \"Whole_weight\": 1.931, \"Shucked_weight\": 0.8959999999999999, \"Viscera_weight\": 0.4585, \"Shell_weight\": 0.5, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.75, \"Diameter\": 0.57, \"Height\": 0.21, \"Whole_weight\": 2.2359999999999998, \"Shucked_weight\": 1.109, \"Viscera_weight\": 0.5195, \"Shell_weight\": 0.545, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.755, \"Diameter\": 0.625, \"Height\": 0.21, \"Whole_weight\": 2.505, \"Shucked_weight\": 1.1965, \"Viscera_weight\": 0.513, \"Shell_weight\": 0.6785, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.755, \"Diameter\": 0.58, \"Height\": 0.205, \"Whole_weight\": 2.0065, \"Shucked_weight\": 0.8295, \"Viscera_weight\": 0.4015, \"Shell_weight\": 0.595, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.78, \"Diameter\": 0.63, \"Height\": 0.215, \"Whole_weight\": 2.657, \"Shucked_weight\": 1.4880000000000002, \"Viscera_weight\": 0.4985, \"Shell_weight\": 0.586, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.185, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.4645, \"Shucked_weight\": 0.196, \"Viscera_weight\": 0.1045, \"Shell_weight\": 0.15, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.245, \"Diameter\": 0.205, \"Height\": 0.06, \"Whole_weight\": 0.0765, \"Shucked_weight\": 0.034, \"Viscera_weight\": 0.013999999999999999, \"Shell_weight\": 0.0215, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.25, \"Diameter\": 0.185, \"Height\": 0.065, \"Whole_weight\": 0.0685, \"Shucked_weight\": 0.0295, \"Viscera_weight\": 0.013999999999999999, \"Shell_weight\": 0.0225, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.25, \"Diameter\": 0.19, \"Height\": 0.065, \"Whole_weight\": 0.0835, \"Shucked_weight\": 0.039, \"Viscera_weight\": 0.015, \"Shell_weight\": 0.025, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.195, \"Height\": 0.09, \"Whole_weight\": 0.1125, \"Shucked_weight\": 0.0545, \"Viscera_weight\": 0.0295, \"Shell_weight\": 0.0355, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.305, \"Diameter\": 0.215, \"Height\": 0.065, \"Whole_weight\": 0.1075, \"Shucked_weight\": 0.044000000000000004, \"Viscera_weight\": 0.0205, \"Shell_weight\": 0.038, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.31, \"Diameter\": 0.225, \"Height\": 0.07, \"Whole_weight\": 0.1055, \"Shucked_weight\": 0.435, \"Viscera_weight\": 0.015, \"Shell_weight\": 0.04, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.315, \"Diameter\": 0.23, \"Height\": 0.08, \"Whole_weight\": 0.1375, \"Shucked_weight\": 0.0545, \"Viscera_weight\": 0.031, \"Shell_weight\": 0.0445, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.315, \"Diameter\": 0.23, \"Height\": 0.07, \"Whole_weight\": 0.1145, \"Shucked_weight\": 0.046, \"Viscera_weight\": 0.0235, \"Shell_weight\": 0.0385, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.225, \"Height\": 0.075, \"Whole_weight\": 0.139, \"Shucked_weight\": 0.0565, \"Viscera_weight\": 0.032, \"Shell_weight\": 0.09, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.33, \"Diameter\": 0.25, \"Height\": 0.095, \"Whole_weight\": 0.2085, \"Shucked_weight\": 0.102, \"Viscera_weight\": 0.0395, \"Shell_weight\": 0.052000000000000005, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.33, \"Diameter\": 0.205, \"Height\": 0.095, \"Whole_weight\": 0.1595, \"Shucked_weight\": 0.077, \"Viscera_weight\": 0.032, \"Shell_weight\": 0.0435, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.245, \"Height\": 0.09, \"Whole_weight\": 0.2015, \"Shucked_weight\": 0.096, \"Viscera_weight\": 0.0405, \"Shell_weight\": 0.048, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.34, \"Diameter\": 0.25, \"Height\": 0.09, \"Whole_weight\": 0.179, \"Shucked_weight\": 0.0775, \"Viscera_weight\": 0.033, \"Shell_weight\": 0.055, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.345, \"Diameter\": 0.255, \"Height\": 0.095, \"Whole_weight\": 0.1945, \"Shucked_weight\": 0.0925, \"Viscera_weight\": 0.037000000000000005, \"Shell_weight\": 0.055, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.345, \"Diameter\": 0.255, \"Height\": 0.085, \"Whole_weight\": 0.2005, \"Shucked_weight\": 0.105, \"Viscera_weight\": 0.037000000000000005, \"Shell_weight\": 0.05, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.27, \"Height\": 0.075, \"Whole_weight\": 0.215, \"Shucked_weight\": 0.1, \"Viscera_weight\": 0.036000000000000004, \"Shell_weight\": 0.065, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.255, \"Height\": 0.09, \"Whole_weight\": 0.1785, \"Shucked_weight\": 0.0855, \"Viscera_weight\": 0.0305, \"Shell_weight\": 0.0525, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.27, \"Height\": 0.085, \"Whole_weight\": 0.196, \"Shucked_weight\": 0.0875, \"Viscera_weight\": 0.035, \"Shell_weight\": 0.064, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.27, \"Height\": 0.085, \"Whole_weight\": 0.1875, \"Shucked_weight\": 0.081, \"Viscera_weight\": 0.042, \"Shell_weight\": 0.057999999999999996, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.27, \"Height\": 0.085, \"Whole_weight\": 0.196, \"Shucked_weight\": 0.0825, \"Viscera_weight\": 0.0375, \"Shell_weight\": 0.06, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.265, \"Height\": 0.085, \"Whole_weight\": 0.213, \"Shucked_weight\": 0.0945, \"Viscera_weight\": 0.049, \"Shell_weight\": 0.06, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.29, \"Height\": 0.09, \"Whole_weight\": 0.2445, \"Shucked_weight\": 0.08900000000000001, \"Viscera_weight\": 0.0655, \"Shell_weight\": 0.075, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.28, \"Height\": 0.085, \"Whole_weight\": 0.217, \"Shucked_weight\": 0.1095, \"Viscera_weight\": 0.035, \"Shell_weight\": 0.062, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.29, \"Height\": 0.095, \"Whole_weight\": 0.213, \"Shucked_weight\": 0.096, \"Viscera_weight\": 0.040999999999999995, \"Shell_weight\": 0.061, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.29, \"Height\": 0.085, \"Whole_weight\": 0.2385, \"Shucked_weight\": 0.11800000000000001, \"Viscera_weight\": 0.045, \"Shell_weight\": 0.0695, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.275, \"Height\": 0.09, \"Whole_weight\": 0.218, \"Shucked_weight\": 0.09300000000000001, \"Viscera_weight\": 0.0405, \"Shell_weight\": 0.0755, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.275, \"Height\": 0.095, \"Whole_weight\": 0.2465, \"Shucked_weight\": 0.11, \"Viscera_weight\": 0.0415, \"Shell_weight\": 0.0775, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.28, \"Height\": 0.08, \"Whole_weight\": 0.2025, \"Shucked_weight\": 0.0825, \"Viscera_weight\": 0.048, \"Shell_weight\": 0.065, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.27, \"Height\": 0.085, \"Whole_weight\": 0.218, \"Shucked_weight\": 0.0945, \"Viscera_weight\": 0.039, \"Shell_weight\": 0.07, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.38, \"Diameter\": 0.275, \"Height\": 0.11, \"Whole_weight\": 0.256, \"Shucked_weight\": 0.11, \"Viscera_weight\": 0.0535, \"Shell_weight\": 0.0755, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.38, \"Diameter\": 0.27, \"Height\": 0.08, \"Whole_weight\": 0.2105, \"Shucked_weight\": 0.0865, \"Viscera_weight\": 0.042, \"Shell_weight\": 0.07, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.29, \"Height\": 0.09, \"Whole_weight\": 0.2615, \"Shucked_weight\": 0.111, \"Viscera_weight\": 0.0595, \"Shell_weight\": 0.0745, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.28, \"Height\": 0.085, \"Whole_weight\": 0.2175, \"Shucked_weight\": 0.09699999999999999, \"Viscera_weight\": 0.038, \"Shell_weight\": 0.067, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.3, \"Height\": 0.095, \"Whole_weight\": 0.302, \"Shucked_weight\": 0.152, \"Viscera_weight\": 0.0615, \"Shell_weight\": 0.0735, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.28, \"Height\": 0.09, \"Whole_weight\": 0.228, \"Shucked_weight\": 0.1025, \"Viscera_weight\": 0.042, \"Shell_weight\": 0.0655, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.3, \"Height\": 0.095, \"Whole_weight\": 0.3265, \"Shucked_weight\": 0.1665, \"Viscera_weight\": 0.0575, \"Shell_weight\": 0.08900000000000001, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.305, \"Height\": 0.105, \"Whole_weight\": 0.284, \"Shucked_weight\": 0.1135, \"Viscera_weight\": 0.0595, \"Shell_weight\": 0.0945, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.295, \"Height\": 0.095, \"Whole_weight\": 0.2725, \"Shucked_weight\": 0.115, \"Viscera_weight\": 0.0625, \"Shell_weight\": 0.085, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.27, \"Height\": 0.1, \"Whole_weight\": 0.2985, \"Shucked_weight\": 0.1445, \"Viscera_weight\": 0.061, \"Shell_weight\": 0.08199999999999999, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.29, \"Height\": 0.1, \"Whole_weight\": 0.2675, \"Shucked_weight\": 0.1205, \"Viscera_weight\": 0.0605, \"Shell_weight\": 0.0765, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.285, \"Height\": 0.09, \"Whole_weight\": 0.2645, \"Shucked_weight\": 0.1265, \"Viscera_weight\": 0.0505, \"Shell_weight\": 0.075, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.335, \"Height\": 0.11, \"Whole_weight\": 0.33, \"Shucked_weight\": 0.157, \"Viscera_weight\": 0.0705, \"Shell_weight\": 0.17, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.305, \"Height\": 0.09, \"Whole_weight\": 0.32799999999999996, \"Shucked_weight\": 0.168, \"Viscera_weight\": 0.0615, \"Shell_weight\": 0.08199999999999999, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.325, \"Height\": 0.11, \"Whole_weight\": 0.3335, \"Shucked_weight\": 0.17300000000000001, \"Viscera_weight\": 0.045, \"Shell_weight\": 0.1, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.32, \"Height\": 0.1, \"Whole_weight\": 0.3055, \"Shucked_weight\": 0.126, \"Viscera_weight\": 0.06, \"Shell_weight\": 0.106, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.31, \"Height\": 0.09, \"Whole_weight\": 0.301, \"Shucked_weight\": 0.1385, \"Viscera_weight\": 0.065, \"Shell_weight\": 0.08, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.315, \"Height\": 0.095, \"Whole_weight\": 0.37799999999999995, \"Shucked_weight\": 0.175, \"Viscera_weight\": 0.08, \"Shell_weight\": 0.1045, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.315, \"Height\": 0.11, \"Whole_weight\": 0.3685, \"Shucked_weight\": 0.1615, \"Viscera_weight\": 0.0715, \"Shell_weight\": 0.12, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.34, \"Height\": 0.12, \"Whole_weight\": 0.43799999999999994, \"Shucked_weight\": 0.2115, \"Viscera_weight\": 0.083, \"Shell_weight\": 0.12, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.33, \"Height\": 0.105, \"Whole_weight\": 0.44799999999999995, \"Shucked_weight\": 0.20800000000000002, \"Viscera_weight\": 0.08900000000000001, \"Shell_weight\": 0.12, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.345, \"Height\": 0.105, \"Whole_weight\": 0.4005, \"Shucked_weight\": 0.16399999999999998, \"Viscera_weight\": 0.0755, \"Shell_weight\": 0.126, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.455, \"Diameter\": 0.365, \"Height\": 0.115, \"Whole_weight\": 0.4305, \"Shucked_weight\": 0.184, \"Viscera_weight\": 0.10800000000000001, \"Shell_weight\": 0.1245, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.33, \"Height\": 0.1, \"Whole_weight\": 0.37200000000000005, \"Shucked_weight\": 0.358, \"Viscera_weight\": 0.0775, \"Shell_weight\": 0.11, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.36, \"Height\": 0.105, \"Whole_weight\": 0.466, \"Shucked_weight\": 0.2225, \"Viscera_weight\": 0.099, \"Shell_weight\": 0.11, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.35, \"Height\": 0.105, \"Whole_weight\": 0.3705, \"Shucked_weight\": 0.1575, \"Viscera_weight\": 0.077, \"Shell_weight\": 0.114, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.46, \"Diameter\": 0.365, \"Height\": 0.125, \"Whole_weight\": 0.4785, \"Shucked_weight\": 0.20600000000000002, \"Viscera_weight\": 0.1045, \"Shell_weight\": 0.141, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.34, \"Height\": 0.11, \"Whole_weight\": 0.34600000000000003, \"Shucked_weight\": 0.1425, \"Viscera_weight\": 0.073, \"Shell_weight\": 0.113, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.365, \"Height\": 0.1, \"Whole_weight\": 0.41100000000000003, \"Shucked_weight\": 0.175, \"Viscera_weight\": 0.0855, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.355, \"Height\": 0.18, \"Whole_weight\": 0.48, \"Shucked_weight\": 0.2055, \"Viscera_weight\": 0.105, \"Shell_weight\": 0.1505, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.355, \"Height\": 0.12, \"Whole_weight\": 0.39299999999999996, \"Shucked_weight\": 0.16699999999999998, \"Viscera_weight\": 0.0885, \"Shell_weight\": 0.115, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.355, \"Height\": 0.1, \"Whole_weight\": 0.5035, \"Shucked_weight\": 0.2535, \"Viscera_weight\": 0.091, \"Shell_weight\": 0.14, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.38, \"Height\": 0.12, \"Whole_weight\": 0.441, \"Shucked_weight\": 0.1785, \"Viscera_weight\": 0.0885, \"Shell_weight\": 0.1505, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.36, \"Height\": 0.11, \"Whole_weight\": 0.49200000000000005, \"Shucked_weight\": 0.21100000000000002, \"Viscera_weight\": 0.11, \"Shell_weight\": 0.15, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.37, \"Height\": 0.125, \"Whole_weight\": 0.5435, \"Shucked_weight\": 0.244, \"Viscera_weight\": 0.10099999999999999, \"Shell_weight\": 0.165, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.355, \"Height\": 0.115, \"Whole_weight\": 0.4725, \"Shucked_weight\": 0.2065, \"Viscera_weight\": 0.11199999999999999, \"Shell_weight\": 0.132, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.365, \"Height\": 0.1, \"Whole_weight\": 0.461, \"Shucked_weight\": 0.2205, \"Viscera_weight\": 0.0835, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.355, \"Height\": 0.12, \"Whole_weight\": 0.4965, \"Shucked_weight\": 0.214, \"Viscera_weight\": 0.1045, \"Shell_weight\": 0.1495, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.38, \"Height\": 0.13, \"Whole_weight\": 0.5125, \"Shucked_weight\": 0.2185, \"Viscera_weight\": 0.11599999999999999, \"Shell_weight\": 0.16, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.395, \"Height\": 0.12, \"Whole_weight\": 0.5529999999999999, \"Shucked_weight\": 0.22399999999999998, \"Viscera_weight\": 0.1375, \"Shell_weight\": 0.16699999999999998, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.594, \"Shucked_weight\": 0.2945, \"Viscera_weight\": 0.10400000000000001, \"Shell_weight\": 0.1565, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.42, \"Height\": 0.135, \"Whole_weight\": 0.6765, \"Shucked_weight\": 0.302, \"Viscera_weight\": 0.1415, \"Shell_weight\": 0.2065, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.375, \"Height\": 0.145, \"Whole_weight\": 0.5795, \"Shucked_weight\": 0.239, \"Viscera_weight\": 0.1375, \"Shell_weight\": 0.185, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.41, \"Height\": 0.14, \"Whole_weight\": 0.6615, \"Shucked_weight\": 0.2585, \"Viscera_weight\": 0.1625, \"Shell_weight\": 0.196, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.375, \"Height\": 0.125, \"Whole_weight\": 0.5695, \"Shucked_weight\": 0.259, \"Viscera_weight\": 0.124, \"Shell_weight\": 0.157, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.395, \"Height\": 0.14, \"Whole_weight\": 0.6215, \"Shucked_weight\": 0.2925, \"Viscera_weight\": 0.1205, \"Shell_weight\": 0.195, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.405, \"Height\": 0.13, \"Whole_weight\": 0.6015, \"Shucked_weight\": 0.3015, \"Viscera_weight\": 0.11, \"Shell_weight\": 0.18, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.38, \"Height\": 0.12, \"Whole_weight\": 0.594, \"Shucked_weight\": 0.2595, \"Viscera_weight\": 0.1435, \"Shell_weight\": 0.18, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.395, \"Height\": 0.105, \"Whole_weight\": 0.551, \"Shucked_weight\": 0.248, \"Viscera_weight\": 0.10300000000000001, \"Shell_weight\": 0.171, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.38, \"Height\": 0.12, \"Whole_weight\": 0.625, \"Shucked_weight\": 0.3265, \"Viscera_weight\": 0.1295, \"Shell_weight\": 0.16, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.42, \"Height\": 0.135, \"Whole_weight\": 0.711, \"Shucked_weight\": 0.337, \"Viscera_weight\": 0.14400000000000002, \"Shell_weight\": 0.205, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.4, \"Height\": 0.135, \"Whole_weight\": 0.6965, \"Shucked_weight\": 0.32, \"Viscera_weight\": 0.1255, \"Shell_weight\": 0.175, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.5825, \"Shucked_weight\": 0.233, \"Viscera_weight\": 0.1365, \"Shell_weight\": 0.18, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.395, \"Height\": 0.125, \"Whole_weight\": 0.6629999999999999, \"Shucked_weight\": 0.3005, \"Viscera_weight\": 0.131, \"Shell_weight\": 0.1905, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.6965, \"Shucked_weight\": 0.369, \"Viscera_weight\": 0.1385, \"Shell_weight\": 0.16399999999999998, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.42, \"Height\": 0.155, \"Whole_weight\": 0.8420000000000001, \"Shucked_weight\": 0.428, \"Viscera_weight\": 0.1415, \"Shell_weight\": 0.2045, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.415, \"Height\": 0.13, \"Whole_weight\": 0.6940000000000001, \"Shucked_weight\": 0.3905, \"Viscera_weight\": 0.111, \"Shell_weight\": 0.16699999999999998, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.42, \"Height\": 0.155, \"Whole_weight\": 0.81, \"Shucked_weight\": 0.4725, \"Viscera_weight\": 0.111, \"Shell_weight\": 0.192, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.415, \"Height\": 0.11, \"Whole_weight\": 0.5745, \"Shucked_weight\": 0.2525, \"Viscera_weight\": 0.1235, \"Shell_weight\": 0.18899999999999997, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.425, \"Height\": 0.13, \"Whole_weight\": 0.7675, \"Shucked_weight\": 0.419, \"Viscera_weight\": 0.1205, \"Shell_weight\": 0.21, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.4, \"Height\": 0.135, \"Whole_weight\": 0.6025, \"Shucked_weight\": 0.2895, \"Viscera_weight\": 0.121, \"Shell_weight\": 0.154, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.415, \"Height\": 0.15, \"Whole_weight\": 0.5765, \"Shucked_weight\": 0.3595, \"Viscera_weight\": 0.135, \"Shell_weight\": 0.225, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.41, \"Height\": 0.13, \"Whole_weight\": 0.7145, \"Shucked_weight\": 0.335, \"Viscera_weight\": 0.14400000000000002, \"Shell_weight\": 0.2075, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.435, \"Height\": 0.15, \"Whole_weight\": 0.7170000000000001, \"Shucked_weight\": 0.3475, \"Viscera_weight\": 0.1445, \"Shell_weight\": 0.19399999999999998, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.54, \"Diameter\": 0.42, \"Height\": 0.145, \"Whole_weight\": 0.8655, \"Shucked_weight\": 0.4315, \"Viscera_weight\": 0.163, \"Shell_weight\": 0.2175, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.42, \"Height\": 0.14, \"Whole_weight\": 0.7265, \"Shucked_weight\": 0.3205, \"Viscera_weight\": 0.1445, \"Shell_weight\": 0.22899999999999998, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.545, \"Diameter\": 0.435, \"Height\": 0.135, \"Whole_weight\": 0.7715, \"Shucked_weight\": 0.37200000000000005, \"Viscera_weight\": 0.14800000000000002, \"Shell_weight\": 0.22699999999999998, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.445, \"Height\": 0.15, \"Whole_weight\": 0.8, \"Shucked_weight\": 0.3535, \"Viscera_weight\": 0.163, \"Shell_weight\": 0.207, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.545, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.7285, \"Shucked_weight\": 0.302, \"Viscera_weight\": 0.1315, \"Shell_weight\": 0.2545, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.545, \"Diameter\": 0.405, \"Height\": 0.135, \"Whole_weight\": 0.5945, \"Shucked_weight\": 0.27, \"Viscera_weight\": 0.1185, \"Shell_weight\": 0.185, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.43, \"Height\": 0.145, \"Whole_weight\": 0.7895, \"Shucked_weight\": 0.3745, \"Viscera_weight\": 0.171, \"Shell_weight\": 0.223, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.405, \"Height\": 0.125, \"Whole_weight\": 0.6509999999999999, \"Shucked_weight\": 0.2965, \"Viscera_weight\": 0.13699999999999998, \"Shell_weight\": 0.2, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.8745, \"Shucked_weight\": 0.413, \"Viscera_weight\": 0.1905, \"Shell_weight\": 0.248, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.7535, \"Shucked_weight\": 0.3285, \"Viscera_weight\": 0.1555, \"Shell_weight\": 0.2325, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.135, \"Whole_weight\": 0.7305, \"Shucked_weight\": 0.3325, \"Viscera_weight\": 0.1545, \"Shell_weight\": 0.215, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.44, \"Height\": 0.14, \"Whole_weight\": 0.8705, \"Shucked_weight\": 0.40700000000000003, \"Viscera_weight\": 0.156, \"Shell_weight\": 0.255, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.555, \"Diameter\": 0.43, \"Height\": 0.155, \"Whole_weight\": 0.7395, \"Shucked_weight\": 0.3135, \"Viscera_weight\": 0.1435, \"Shell_weight\": 0.28, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.555, \"Diameter\": 0.43, \"Height\": 0.14, \"Whole_weight\": 0.7665, \"Shucked_weight\": 0.341, \"Viscera_weight\": 0.165, \"Shell_weight\": 0.23, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.555, \"Diameter\": 0.425, \"Height\": 0.145, \"Whole_weight\": 0.7905, \"Shucked_weight\": 0.3485, \"Viscera_weight\": 0.1765, \"Shell_weight\": 0.225, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.425, \"Height\": 0.135, \"Whole_weight\": 0.8205, \"Shucked_weight\": 0.3715, \"Viscera_weight\": 0.185, \"Shell_weight\": 0.23600000000000002, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.425, \"Height\": 0.145, \"Whole_weight\": 0.688, \"Shucked_weight\": 0.3095, \"Viscera_weight\": 0.1305, \"Shell_weight\": 0.2165, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.445, \"Height\": 0.155, \"Whole_weight\": 1.224, \"Shucked_weight\": 0.5565, \"Viscera_weight\": 0.3225, \"Shell_weight\": 0.2695, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.455, \"Height\": 0.145, \"Whole_weight\": 0.9740000000000001, \"Shucked_weight\": 0.547, \"Viscera_weight\": 0.1615, \"Shell_weight\": 0.235, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.175, \"Whole_weight\": 0.8735, \"Shucked_weight\": 0.414, \"Viscera_weight\": 0.21, \"Shell_weight\": 0.21, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 0.8495, \"Shucked_weight\": 0.4215, \"Viscera_weight\": 0.1685, \"Shell_weight\": 0.225, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.445, \"Height\": 0.15, \"Whole_weight\": 0.7959999999999999, \"Shucked_weight\": 0.3635, \"Viscera_weight\": 0.184, \"Shell_weight\": 0.21899999999999997, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.39, \"Height\": 0.125, \"Whole_weight\": 0.7440000000000001, \"Shucked_weight\": 0.35200000000000004, \"Viscera_weight\": 0.13, \"Shell_weight\": 0.1685, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 0.7509999999999999, \"Shucked_weight\": 0.2825, \"Viscera_weight\": 0.2195, \"Shell_weight\": 0.2215, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.135, \"Whole_weight\": 0.794, \"Shucked_weight\": 0.3815, \"Viscera_weight\": 0.1415, \"Shell_weight\": 0.245, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.46, \"Height\": 0.135, \"Whole_weight\": 0.9795, \"Shucked_weight\": 0.397, \"Viscera_weight\": 0.2525, \"Shell_weight\": 0.2655, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.435, \"Height\": 0.17, \"Whole_weight\": 0.873, \"Shucked_weight\": 0.382, \"Viscera_weight\": 0.183, \"Shell_weight\": 0.2705, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.57, \"Diameter\": 0.44, \"Height\": 0.13, \"Whole_weight\": 0.7665, \"Shucked_weight\": 0.34700000000000003, \"Viscera_weight\": 0.1785, \"Shell_weight\": 0.20199999999999999, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.435, \"Height\": 0.125, \"Whole_weight\": 0.8965, \"Shucked_weight\": 0.38299999999999995, \"Viscera_weight\": 0.1835, \"Shell_weight\": 0.275, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.42, \"Height\": 0.135, \"Whole_weight\": 0.857, \"Shucked_weight\": 0.461, \"Viscera_weight\": 0.147, \"Shell_weight\": 0.2125, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.078, \"Shucked_weight\": 0.511, \"Viscera_weight\": 0.2095, \"Shell_weight\": 0.306, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.46, \"Height\": 0.155, \"Whole_weight\": 0.892, \"Shucked_weight\": 0.4415, \"Viscera_weight\": 0.17600000000000002, \"Shell_weight\": 0.22, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.155, \"Whole_weight\": 1.4395, \"Shucked_weight\": 0.6715, \"Viscera_weight\": 0.273, \"Shell_weight\": 0.2955, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.455, \"Height\": 0.135, \"Whole_weight\": 0.7955, \"Shucked_weight\": 0.405, \"Viscera_weight\": 0.16699999999999998, \"Shell_weight\": 0.204, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.445, \"Height\": 0.15, \"Whole_weight\": 0.858, \"Shucked_weight\": 0.4, \"Viscera_weight\": 0.156, \"Shell_weight\": 0.253, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.465, \"Height\": 0.155, \"Whole_weight\": 0.9145, \"Shucked_weight\": 0.4555, \"Viscera_weight\": 0.1965, \"Shell_weight\": 0.235, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.49, \"Height\": 0.185, \"Whole_weight\": 1.171, \"Shucked_weight\": 0.522, \"Viscera_weight\": 0.2535, \"Shell_weight\": 0.335, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.585, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.0505, \"Shucked_weight\": 0.48, \"Viscera_weight\": 0.23399999999999999, \"Shell_weight\": 0.285, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.46, \"Height\": 0.165, \"Whole_weight\": 1.1135, \"Shucked_weight\": 0.5825, \"Viscera_weight\": 0.2345, \"Shell_weight\": 0.27399999999999997, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 1.409, \"Shucked_weight\": 0.8, \"Viscera_weight\": 0.22899999999999998, \"Shell_weight\": 0.295, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 1.065, \"Shucked_weight\": 0.5315, \"Viscera_weight\": 0.19899999999999998, \"Shell_weight\": 0.2885, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.45, \"Height\": 0.18, \"Whole_weight\": 0.7995, \"Shucked_weight\": 0.336, \"Viscera_weight\": 0.1855, \"Shell_weight\": 0.237, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.59, \"Diameter\": 0.445, \"Height\": 0.135, \"Whole_weight\": 0.7715, \"Shucked_weight\": 0.32799999999999996, \"Viscera_weight\": 0.1745, \"Shell_weight\": 0.23, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.47, \"Height\": 0.18, \"Whole_weight\": 1.187, \"Shucked_weight\": 0.5985, \"Viscera_weight\": 0.22699999999999998, \"Shell_weight\": 0.31, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.455, \"Height\": 0.155, \"Whole_weight\": 0.8855, \"Shucked_weight\": 0.38799999999999996, \"Viscera_weight\": 0.188, \"Shell_weight\": 0.275, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 0.98, \"Shucked_weight\": 0.4115, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.2255, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.465, \"Height\": 0.155, \"Whole_weight\": 1.026, \"Shucked_weight\": 0.4645, \"Viscera_weight\": 0.11199999999999999, \"Shell_weight\": 0.305, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.17, \"Whole_weight\": 1.1315, \"Shucked_weight\": 0.508, \"Viscera_weight\": 0.272, \"Shell_weight\": 0.309, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.48, \"Height\": 0.155, \"Whole_weight\": 1.014, \"Shucked_weight\": 0.451, \"Viscera_weight\": 0.1885, \"Shell_weight\": 0.325, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 1.12, \"Shucked_weight\": 0.565, \"Viscera_weight\": 0.2465, \"Shell_weight\": 0.27, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.465, \"Height\": 0.155, \"Whole_weight\": 1.04, \"Shucked_weight\": 0.4755, \"Viscera_weight\": 0.25, \"Shell_weight\": 0.28, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.455, \"Height\": 0.145, \"Whole_weight\": 0.8895, \"Shucked_weight\": 0.419, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.26899999999999996, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.46, \"Height\": 0.155, \"Whole_weight\": 0.9595, \"Shucked_weight\": 0.4455, \"Viscera_weight\": 0.18899999999999997, \"Shell_weight\": 0.295, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.605, \"Diameter\": 0.485, \"Height\": 0.15, \"Whole_weight\": 1.238, \"Shucked_weight\": 0.6315, \"Viscera_weight\": 0.226, \"Shell_weight\": 0.33, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.49, \"Height\": 0.14, \"Whole_weight\": 0.9755, \"Shucked_weight\": 0.419, \"Viscera_weight\": 0.20600000000000002, \"Shell_weight\": 0.315, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.605, \"Diameter\": 0.435, \"Height\": 0.13, \"Whole_weight\": 0.9025, \"Shucked_weight\": 0.43200000000000005, \"Viscera_weight\": 0.174, \"Shell_weight\": 0.26, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.0759999999999998, \"Shucked_weight\": 0.46299999999999997, \"Viscera_weight\": 0.2195, \"Shell_weight\": 0.335, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.47, \"Height\": 0.16, \"Whole_weight\": 1.0835, \"Shucked_weight\": 0.5405, \"Viscera_weight\": 0.2215, \"Shell_weight\": 0.275, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 0.871, \"Shucked_weight\": 0.40700000000000003, \"Viscera_weight\": 0.1835, \"Shell_weight\": 0.25, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.244, \"Shucked_weight\": 0.6345, \"Viscera_weight\": 0.257, \"Shell_weight\": 0.305, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.475, \"Height\": 0.17, \"Whole_weight\": 1.0265, \"Shucked_weight\": 0.435, \"Viscera_weight\": 0.2335, \"Shell_weight\": 0.3035, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.61, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 0.9605, \"Shucked_weight\": 0.4495, \"Viscera_weight\": 0.1725, \"Shell_weight\": 0.28600000000000003, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.48, \"Height\": 0.17, \"Whole_weight\": 1.137, \"Shucked_weight\": 0.4565, \"Viscera_weight\": 0.29, \"Shell_weight\": 0.34700000000000003, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.46, \"Height\": 0.16, \"Whole_weight\": 1.0, \"Shucked_weight\": 0.494, \"Viscera_weight\": 0.19699999999999998, \"Shell_weight\": 0.275, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 1.004, \"Shucked_weight\": 0.4475, \"Viscera_weight\": 0.193, \"Shell_weight\": 0.2895, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 1.128, \"Shucked_weight\": 0.4465, \"Viscera_weight\": 0.2195, \"Shell_weight\": 0.34, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.5, \"Height\": 0.17, \"Whole_weight\": 1.054, \"Shucked_weight\": 0.4845, \"Viscera_weight\": 0.228, \"Shell_weight\": 0.295, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.165, \"Whole_weight\": 1.023, \"Shucked_weight\": 0.4905, \"Viscera_weight\": 0.1955, \"Shell_weight\": 0.3035, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.17, \"Whole_weight\": 1.129, \"Shucked_weight\": 0.4795, \"Viscera_weight\": 0.302, \"Shell_weight\": 0.3, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.48, \"Height\": 0.175, \"Whole_weight\": 1.1179999999999999, \"Shucked_weight\": 0.446, \"Viscera_weight\": 0.3195, \"Shell_weight\": 0.3, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 1.115, \"Shucked_weight\": 0.484, \"Viscera_weight\": 0.2115, \"Shell_weight\": 0.355, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.2815, \"Shucked_weight\": 0.5715, \"Viscera_weight\": 0.2385, \"Shell_weight\": 0.39, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.495, \"Height\": 0.18, \"Whole_weight\": 1.2555, \"Shucked_weight\": 0.5765, \"Viscera_weight\": 0.254, \"Shell_weight\": 0.355, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.5, \"Height\": 0.15, \"Whole_weight\": 1.2930000000000001, \"Shucked_weight\": 0.596, \"Viscera_weight\": 0.3135, \"Shell_weight\": 0.354, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.1295, \"Shucked_weight\": 0.46299999999999997, \"Viscera_weight\": 0.2685, \"Shell_weight\": 0.33, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.455, \"Height\": 0.17, \"Whole_weight\": 1.082, \"Shucked_weight\": 0.4955, \"Viscera_weight\": 0.2345, \"Shell_weight\": 0.315, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.505, \"Height\": 0.175, \"Whole_weight\": 1.15, \"Shucked_weight\": 0.5475, \"Viscera_weight\": 0.256, \"Shell_weight\": 0.3045, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.515, \"Height\": 0.16, \"Whole_weight\": 1.264, \"Shucked_weight\": 0.5715, \"Viscera_weight\": 0.326, \"Shell_weight\": 0.321, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.48, \"Height\": 0.155, \"Whole_weight\": 1.2035, \"Shucked_weight\": 0.5865, \"Viscera_weight\": 0.239, \"Shell_weight\": 0.3185, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.485, \"Height\": 0.17, \"Whole_weight\": 1.3205, \"Shucked_weight\": 0.5945, \"Viscera_weight\": 0.345, \"Shell_weight\": 0.345, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.63, \"Diameter\": 0.505, \"Height\": 0.18, \"Whole_weight\": 1.272, \"Shucked_weight\": 0.6025, \"Viscera_weight\": 0.295, \"Shell_weight\": 0.315, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.485, \"Height\": 0.145, \"Whole_weight\": 1.062, \"Shucked_weight\": 0.5065, \"Viscera_weight\": 0.1785, \"Shell_weight\": 0.3365, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.63, \"Diameter\": 0.475, \"Height\": 0.145, \"Whole_weight\": 1.0605, \"Shucked_weight\": 0.5165, \"Viscera_weight\": 0.2195, \"Shell_weight\": 0.28, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.495, \"Height\": 0.16, \"Whole_weight\": 1.093, \"Shucked_weight\": 0.49700000000000005, \"Viscera_weight\": 0.221, \"Shell_weight\": 0.315, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.49, \"Height\": 0.16, \"Whole_weight\": 1.101, \"Shucked_weight\": 0.534, \"Viscera_weight\": 0.1865, \"Shell_weight\": 0.3455, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.4595, \"Shucked_weight\": 0.705, \"Viscera_weight\": 0.2645, \"Shell_weight\": 0.39, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.495, \"Height\": 0.175, \"Whole_weight\": 1.2109999999999999, \"Shucked_weight\": 0.7070000000000001, \"Viscera_weight\": 0.2725, \"Shell_weight\": 0.32299999999999995, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.475, \"Height\": 0.17, \"Whole_weight\": 1.1935, \"Shucked_weight\": 0.5205, \"Viscera_weight\": 0.2695, \"Shell_weight\": 0.3665, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.51, \"Height\": 0.155, \"Whole_weight\": 0.986, \"Shucked_weight\": 0.405, \"Viscera_weight\": 0.2255, \"Shell_weight\": 0.31, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.565, \"Height\": 0.23, \"Whole_weight\": 1.521, \"Shucked_weight\": 0.644, \"Viscera_weight\": 0.37200000000000005, \"Shell_weight\": 0.406, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.525, \"Height\": 0.18, \"Whole_weight\": 1.3135, \"Shucked_weight\": 0.4865, \"Viscera_weight\": 0.2995, \"Shell_weight\": 0.4075, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.51, \"Height\": 0.16, \"Whole_weight\": 1.1835, \"Shucked_weight\": 0.556, \"Viscera_weight\": 0.2385, \"Shell_weight\": 0.345, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.195, \"Whole_weight\": 1.401, \"Shucked_weight\": 0.6165, \"Viscera_weight\": 0.3515, \"Shell_weight\": 0.3725, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.525, \"Height\": 0.16, \"Whole_weight\": 1.5075, \"Shucked_weight\": 0.7455, \"Viscera_weight\": 0.245, \"Shell_weight\": 0.4325, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.16, \"Shucked_weight\": 0.4785, \"Viscera_weight\": 0.27399999999999997, \"Shell_weight\": 0.349, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.59, \"Height\": 0.22, \"Whole_weight\": 1.662, \"Shucked_weight\": 0.77, \"Viscera_weight\": 0.37799999999999995, \"Shell_weight\": 0.435, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.525, \"Height\": 0.175, \"Whole_weight\": 1.5365, \"Shucked_weight\": 0.6865, \"Viscera_weight\": 0.3585, \"Shell_weight\": 0.405, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.51, \"Height\": 0.19, \"Whole_weight\": 1.5419999999999998, \"Shucked_weight\": 0.7155, \"Viscera_weight\": 0.3735, \"Shell_weight\": 0.375, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.51, \"Height\": 0.17, \"Whole_weight\": 1.567, \"Shucked_weight\": 0.7245, \"Viscera_weight\": 0.349, \"Shell_weight\": 0.391, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.525, \"Height\": 0.19, \"Whole_weight\": 1.3595, \"Shucked_weight\": 0.564, \"Viscera_weight\": 0.3215, \"Shell_weight\": 0.3985, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.535, \"Height\": 0.205, \"Whole_weight\": 1.6445, \"Shucked_weight\": 0.7305, \"Viscera_weight\": 0.3595, \"Shell_weight\": 0.46, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.52, \"Height\": 0.19, \"Whole_weight\": 1.4545, \"Shucked_weight\": 0.6, \"Viscera_weight\": 0.3865, \"Shell_weight\": 0.38299999999999995, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.49, \"Height\": 0.175, \"Whole_weight\": 1.3585, \"Shucked_weight\": 0.6395, \"Viscera_weight\": 0.294, \"Shell_weight\": 0.365, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.495, \"Height\": 0.21, \"Whole_weight\": 1.548, \"Shucked_weight\": 0.7240000000000001, \"Viscera_weight\": 0.3525, \"Shell_weight\": 0.3925, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.515, \"Height\": 0.17, \"Whole_weight\": 1.337, \"Shucked_weight\": 0.615, \"Viscera_weight\": 0.3125, \"Shell_weight\": 0.3575, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.53, \"Height\": 0.18, \"Whole_weight\": 1.4909999999999999, \"Shucked_weight\": 0.6345, \"Viscera_weight\": 0.342, \"Shell_weight\": 0.435, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.53, \"Height\": 0.225, \"Whole_weight\": 1.5615, \"Shucked_weight\": 0.63, \"Viscera_weight\": 0.48700000000000004, \"Shell_weight\": 0.3725, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.505, \"Height\": 0.175, \"Whole_weight\": 1.0145, \"Shucked_weight\": 0.4375, \"Viscera_weight\": 0.271, \"Shell_weight\": 0.3745, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.675, \"Diameter\": 0.545, \"Height\": 0.185, \"Whole_weight\": 1.7375, \"Shucked_weight\": 0.8759999999999999, \"Viscera_weight\": 0.3135, \"Shell_weight\": 0.469, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.685, \"Diameter\": 0.545, \"Height\": 0.205, \"Whole_weight\": 1.7925, \"Shucked_weight\": 0.8145, \"Viscera_weight\": 0.41600000000000004, \"Shell_weight\": 0.461, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.695, \"Diameter\": 0.565, \"Height\": 0.19, \"Whole_weight\": 1.7635, \"Shucked_weight\": 0.7465, \"Viscera_weight\": 0.39899999999999997, \"Shell_weight\": 0.4975, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.545, \"Height\": 0.13, \"Whole_weight\": 1.556, \"Shucked_weight\": 0.6725, \"Viscera_weight\": 0.374, \"Shell_weight\": 0.195, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.705, \"Diameter\": 0.565, \"Height\": 0.515, \"Whole_weight\": 2.21, \"Shucked_weight\": 1.1075, \"Viscera_weight\": 0.4865, \"Shell_weight\": 0.512, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.705, \"Diameter\": 0.555, \"Height\": 0.215, \"Whole_weight\": 2.141, \"Shucked_weight\": 1.0465, \"Viscera_weight\": 0.38299999999999995, \"Shell_weight\": 0.528, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.705, \"Diameter\": 0.57, \"Height\": 0.18, \"Whole_weight\": 1.5345, \"Shucked_weight\": 0.96, \"Viscera_weight\": 0.4195, \"Shell_weight\": 0.43, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.71, \"Diameter\": 0.55, \"Height\": 0.17, \"Whole_weight\": 1.614, \"Shucked_weight\": 0.743, \"Viscera_weight\": 0.345, \"Shell_weight\": 0.45, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.575, \"Height\": 0.17, \"Whole_weight\": 1.9335, \"Shucked_weight\": 0.9129999999999999, \"Viscera_weight\": 0.389, \"Shell_weight\": 0.51, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.72, \"Diameter\": 0.575, \"Height\": 0.215, \"Whole_weight\": 2.173, \"Shucked_weight\": 0.9515, \"Viscera_weight\": 0.564, \"Shell_weight\": 0.5365, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.725, \"Diameter\": 0.6, \"Height\": 0.2, \"Whole_weight\": 1.7369999999999999, \"Shucked_weight\": 0.6970000000000001, \"Viscera_weight\": 0.3585, \"Shell_weight\": 0.595, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.73, \"Diameter\": 0.58, \"Height\": 0.19, \"Whole_weight\": 1.7375, \"Shucked_weight\": 0.6785, \"Viscera_weight\": 0.4345, \"Shell_weight\": 0.52, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.735, \"Diameter\": 0.565, \"Height\": 0.205, \"Whole_weight\": 2.1275, \"Shucked_weight\": 0.9490000000000001, \"Viscera_weight\": 0.46, \"Shell_weight\": 0.565, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.745, \"Diameter\": 0.57, \"Height\": 0.215, \"Whole_weight\": 2.25, \"Shucked_weight\": 1.1565, \"Viscera_weight\": 0.446, \"Shell_weight\": 0.5579999999999999, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.75, \"Diameter\": 0.61, \"Height\": 0.235, \"Whole_weight\": 2.5085, \"Shucked_weight\": 1.232, \"Viscera_weight\": 0.519, \"Shell_weight\": 0.612, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.815, \"Diameter\": 0.65, \"Height\": 0.25, \"Whole_weight\": 2.255, \"Shucked_weight\": 0.8905, \"Viscera_weight\": 0.42, \"Shell_weight\": 0.7975, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.14, \"Diameter\": 0.105, \"Height\": 0.035, \"Whole_weight\": 0.013999999999999999, \"Shucked_weight\": 0.0055, \"Viscera_weight\": 0.0025, \"Shell_weight\": 0.004, \"Rings\": 3, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.23, \"Diameter\": 0.165, \"Height\": 0.06, \"Whole_weight\": 0.0515, \"Shucked_weight\": 0.019, \"Viscera_weight\": 0.0145, \"Shell_weight\": 0.036000000000000004, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.265, \"Height\": 0.135, \"Whole_weight\": 0.2215, \"Shucked_weight\": 0.105, \"Viscera_weight\": 0.047, \"Shell_weight\": 0.0605, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.255, \"Height\": 0.08, \"Whole_weight\": 0.1985, \"Shucked_weight\": 0.0785, \"Viscera_weight\": 0.0345, \"Shell_weight\": 0.053, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.27, \"Height\": 0.095, \"Whole_weight\": 0.23199999999999998, \"Shucked_weight\": 0.1325, \"Viscera_weight\": 0.040999999999999995, \"Shell_weight\": 0.0615, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.28, \"Height\": 0.085, \"Whole_weight\": 0.3155, \"Shucked_weight\": 0.187, \"Viscera_weight\": 0.046, \"Shell_weight\": 0.067, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.247, \"Shucked_weight\": 0.1225, \"Viscera_weight\": 0.044000000000000004, \"Shell_weight\": 0.0675, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.295, \"Height\": 0.09, \"Whole_weight\": 0.3025, \"Shucked_weight\": 0.14300000000000002, \"Viscera_weight\": 0.0665, \"Shell_weight\": 0.0765, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.29, \"Height\": 0.11, \"Whole_weight\": 0.32899999999999996, \"Shucked_weight\": 0.188, \"Viscera_weight\": 0.0455, \"Shell_weight\": 0.0825, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.2815, \"Shucked_weight\": 0.1185, \"Viscera_weight\": 0.061, \"Shell_weight\": 0.08, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.31, \"Height\": 0.095, \"Whole_weight\": 0.3425, \"Shucked_weight\": 0.1785, \"Viscera_weight\": 0.064, \"Shell_weight\": 0.0855, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.29, \"Height\": 0.09, \"Whole_weight\": 0.2825, \"Shucked_weight\": 0.11199999999999999, \"Viscera_weight\": 0.075, \"Shell_weight\": 0.0815, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.3, \"Height\": 0.105, \"Whole_weight\": 0.304, \"Shucked_weight\": 0.1455, \"Viscera_weight\": 0.061, \"Shell_weight\": 0.0805, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.32, \"Height\": 0.095, \"Whole_weight\": 0.2905, \"Shucked_weight\": 0.141, \"Viscera_weight\": 0.063, \"Shell_weight\": 0.073, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.415, \"Diameter\": 0.315, \"Height\": 0.115, \"Whole_weight\": 0.3895, \"Shucked_weight\": 0.2015, \"Viscera_weight\": 0.065, \"Shell_weight\": 0.10300000000000001, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.34, \"Height\": 0.105, \"Whole_weight\": 0.389, \"Shucked_weight\": 0.2015, \"Viscera_weight\": 0.0905, \"Shell_weight\": 0.08800000000000001, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.34, \"Height\": 0.105, \"Whole_weight\": 0.4405, \"Shucked_weight\": 0.2385, \"Viscera_weight\": 0.0745, \"Shell_weight\": 0.1075, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.34, \"Height\": 0.105, \"Whole_weight\": 0.369, \"Shucked_weight\": 0.16399999999999998, \"Viscera_weight\": 0.08, \"Shell_weight\": 0.1015, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.44, \"Diameter\": 0.32, \"Height\": 0.12, \"Whole_weight\": 0.4565, \"Shucked_weight\": 0.2435, \"Viscera_weight\": 0.092, \"Shell_weight\": 0.1025, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.365, \"Height\": 0.11, \"Whole_weight\": 0.4465, \"Shucked_weight\": 0.213, \"Viscera_weight\": 0.08900000000000001, \"Shell_weight\": 0.1135, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.335, \"Height\": 0.125, \"Whole_weight\": 0.4475, \"Shucked_weight\": 0.2165, \"Viscera_weight\": 0.126, \"Shell_weight\": 0.11, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.335, \"Height\": 0.135, \"Whole_weight\": 0.501, \"Shucked_weight\": 0.27399999999999997, \"Viscera_weight\": 0.0995, \"Shell_weight\": 0.1065, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.355, \"Height\": 0.11, \"Whole_weight\": 0.436, \"Shucked_weight\": 0.1975, \"Viscera_weight\": 0.096, \"Shell_weight\": 0.125, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.345, \"Height\": 0.14, \"Whole_weight\": 0.4615, \"Shucked_weight\": 0.22899999999999998, \"Viscera_weight\": 0.1105, \"Shell_weight\": 0.11599999999999999, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.35, \"Height\": 0.125, \"Whole_weight\": 0.4315, \"Shucked_weight\": 0.19, \"Viscera_weight\": 0.1165, \"Shell_weight\": 0.1175, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.355, \"Height\": 0.12, \"Whole_weight\": 0.3685, \"Shucked_weight\": 0.126, \"Viscera_weight\": 0.0835, \"Shell_weight\": 0.1365, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.475, \"Diameter\": 0.37, \"Height\": 0.125, \"Whole_weight\": 0.649, \"Shucked_weight\": 0.34700000000000003, \"Viscera_weight\": 0.136, \"Shell_weight\": 0.142, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.365, \"Height\": 0.115, \"Whole_weight\": 0.45899999999999996, \"Shucked_weight\": 0.2175, \"Viscera_weight\": 0.09300000000000001, \"Shell_weight\": 0.1165, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.365, \"Height\": 0.115, \"Whole_weight\": 0.5660000000000001, \"Shucked_weight\": 0.281, \"Viscera_weight\": 0.11699999999999999, \"Shell_weight\": 0.1335, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.36, \"Height\": 0.125, \"Whole_weight\": 0.542, \"Shucked_weight\": 0.2795, \"Viscera_weight\": 0.1025, \"Shell_weight\": 0.147, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.38, \"Height\": 0.12, \"Whole_weight\": 0.4725, \"Shucked_weight\": 0.2075, \"Viscera_weight\": 0.1075, \"Shell_weight\": 0.147, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.485, \"Diameter\": 0.39, \"Height\": 0.085, \"Whole_weight\": 0.6435, \"Shucked_weight\": 0.2945, \"Viscera_weight\": 0.10300000000000001, \"Shell_weight\": 0.198, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.485, \"Diameter\": 0.37, \"Height\": 0.13, \"Whole_weight\": 0.526, \"Shucked_weight\": 0.2485, \"Viscera_weight\": 0.105, \"Shell_weight\": 0.1555, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.495, \"Diameter\": 0.38, \"Height\": 0.12, \"Whole_weight\": 0.573, \"Shucked_weight\": 0.2655, \"Viscera_weight\": 0.1285, \"Shell_weight\": 0.14400000000000002, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.385, \"Height\": 0.105, \"Whole_weight\": 0.5525, \"Shucked_weight\": 0.239, \"Viscera_weight\": 0.1245, \"Shell_weight\": 0.1555, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.6855, \"Shucked_weight\": 0.361, \"Viscera_weight\": 0.1565, \"Shell_weight\": 0.161, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.395, \"Height\": 0.125, \"Whole_weight\": 0.556, \"Shucked_weight\": 0.2695, \"Viscera_weight\": 0.096, \"Shell_weight\": 0.17, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.425, \"Height\": 0.145, \"Whole_weight\": 0.9365, \"Shucked_weight\": 0.49700000000000005, \"Viscera_weight\": 0.18100000000000002, \"Shell_weight\": 0.2185, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.5625, \"Shucked_weight\": 0.25, \"Viscera_weight\": 0.1245, \"Shell_weight\": 0.17, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.5589999999999999, \"Shucked_weight\": 0.254, \"Viscera_weight\": 0.139, \"Shell_weight\": 0.149, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.14, \"Whole_weight\": 0.7205, \"Shucked_weight\": 0.3685, \"Viscera_weight\": 0.145, \"Shell_weight\": 0.1735, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.43, \"Height\": 0.13, \"Whole_weight\": 0.7045, \"Shucked_weight\": 0.34600000000000003, \"Viscera_weight\": 0.1415, \"Shell_weight\": 0.18899999999999997, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.7575, \"Shucked_weight\": 0.39799999999999996, \"Viscera_weight\": 0.151, \"Shell_weight\": 0.175, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.41, \"Height\": 0.14, \"Whole_weight\": 0.7405, \"Shucked_weight\": 0.3565, \"Viscera_weight\": 0.1775, \"Shell_weight\": 0.203, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.43, \"Height\": 0.14, \"Whole_weight\": 0.84, \"Shucked_weight\": 0.375, \"Viscera_weight\": 0.218, \"Shell_weight\": 0.1945, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.16, \"Whole_weight\": 0.7929999999999999, \"Shucked_weight\": 0.34299999999999997, \"Viscera_weight\": 0.2035, \"Shell_weight\": 0.215, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.8745, \"Shucked_weight\": 0.45299999999999996, \"Viscera_weight\": 0.161, \"Shell_weight\": 0.22, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.435, \"Height\": 0.15, \"Whole_weight\": 0.8715, \"Shucked_weight\": 0.4755, \"Viscera_weight\": 0.1835, \"Shell_weight\": 0.1835, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.445, \"Height\": 0.15, \"Whole_weight\": 0.9875, \"Shucked_weight\": 0.504, \"Viscera_weight\": 0.207, \"Shell_weight\": 0.249, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 1.08, \"Shucked_weight\": 0.595, \"Viscera_weight\": 0.2065, \"Shell_weight\": 0.23800000000000002, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.46, \"Height\": 0.165, \"Whole_weight\": 0.9155, \"Shucked_weight\": 0.4005, \"Viscera_weight\": 0.2465, \"Shell_weight\": 0.2385, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.175, \"Whole_weight\": 1.165, \"Shucked_weight\": 0.65, \"Viscera_weight\": 0.2205, \"Shell_weight\": 0.3055, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.953, \"Shucked_weight\": 0.475, \"Viscera_weight\": 0.2165, \"Shell_weight\": 0.2095, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 0.9059999999999999, \"Shucked_weight\": 0.4095, \"Viscera_weight\": 0.23, \"Shell_weight\": 0.2335, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 0.8725, \"Shucked_weight\": 0.387, \"Viscera_weight\": 0.215, \"Shell_weight\": 0.245, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 1.151, \"Shucked_weight\": 0.613, \"Viscera_weight\": 0.239, \"Shell_weight\": 0.2515, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.46, \"Height\": 0.145, \"Whole_weight\": 0.9905, \"Shucked_weight\": 0.45299999999999996, \"Viscera_weight\": 0.2205, \"Shell_weight\": 0.275, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.455, \"Height\": 0.16, \"Whole_weight\": 1.04, \"Shucked_weight\": 0.452, \"Viscera_weight\": 0.2655, \"Shell_weight\": 0.28800000000000003, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.455, \"Height\": 0.155, \"Whole_weight\": 0.945, \"Shucked_weight\": 0.4365, \"Viscera_weight\": 0.2085, \"Shell_weight\": 0.25, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.465, \"Height\": 0.2, \"Whole_weight\": 1.2590000000000001, \"Shucked_weight\": 0.6405, \"Viscera_weight\": 0.1985, \"Shell_weight\": 0.35700000000000004, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.485, \"Height\": 0.165, \"Whole_weight\": 0.9515, \"Shucked_weight\": 0.4535, \"Viscera_weight\": 0.193, \"Shell_weight\": 0.2765, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.485, \"Height\": 0.16, \"Whole_weight\": 1.2009999999999998, \"Shucked_weight\": 0.41700000000000004, \"Viscera_weight\": 0.2875, \"Shell_weight\": 0.38, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.515, \"Height\": 0.17, \"Whole_weight\": 1.2890000000000001, \"Shucked_weight\": 0.6, \"Viscera_weight\": 0.2945, \"Shell_weight\": 0.3315, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.485, \"Height\": 0.17, \"Whole_weight\": 1.1005, \"Shucked_weight\": 0.5125, \"Viscera_weight\": 0.22899999999999998, \"Shell_weight\": 0.305, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.13, \"Whole_weight\": 0.8425, \"Shucked_weight\": 0.353, \"Viscera_weight\": 0.1915, \"Shell_weight\": 0.251, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.485, \"Height\": 0.155, \"Whole_weight\": 1.0490000000000002, \"Shucked_weight\": 0.462, \"Viscera_weight\": 0.231, \"Shell_weight\": 0.25, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.435, \"Height\": 0.155, \"Whole_weight\": 1.012, \"Shucked_weight\": 0.47700000000000004, \"Viscera_weight\": 0.23600000000000002, \"Shell_weight\": 0.275, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.0725, \"Shucked_weight\": 0.4815, \"Viscera_weight\": 0.235, \"Shell_weight\": 0.312, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.52, \"Height\": 0.175, \"Whole_weight\": 1.4105, \"Shucked_weight\": 0.691, \"Viscera_weight\": 0.322, \"Shell_weight\": 0.3465, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.47, \"Height\": 0.18, \"Whole_weight\": 1.136, \"Shucked_weight\": 0.451, \"Viscera_weight\": 0.3245, \"Shell_weight\": 0.305, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.47, \"Height\": 0.145, \"Whole_weight\": 1.1005, \"Shucked_weight\": 0.52, \"Viscera_weight\": 0.26, \"Shell_weight\": 0.276, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.1105, \"Shucked_weight\": 0.467, \"Viscera_weight\": 0.268, \"Shell_weight\": 0.32899999999999996, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 1.1315, \"Shucked_weight\": 0.48100000000000004, \"Viscera_weight\": 0.2745, \"Shell_weight\": 0.305, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 1.271, \"Shucked_weight\": 0.6605, \"Viscera_weight\": 0.2425, \"Shell_weight\": 0.31, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.49, \"Height\": 0.225, \"Whole_weight\": 1.3359999999999999, \"Shucked_weight\": 0.6805, \"Viscera_weight\": 0.259, \"Shell_weight\": 0.3245, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.505, \"Height\": 0.145, \"Whole_weight\": 1.1345, \"Shucked_weight\": 0.505, \"Viscera_weight\": 0.2655, \"Shell_weight\": 0.315, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.51, \"Height\": 0.185, \"Whole_weight\": 1.308, \"Shucked_weight\": 0.544, \"Viscera_weight\": 0.318, \"Shell_weight\": 0.377, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.515, \"Height\": 0.205, \"Whole_weight\": 1.5335, \"Shucked_weight\": 0.6635, \"Viscera_weight\": 0.3345, \"Shell_weight\": 0.4025, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.515, \"Height\": 0.175, \"Whole_weight\": 1.546, \"Shucked_weight\": 0.7035, \"Viscera_weight\": 0.365, \"Shell_weight\": 0.415, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.51, \"Height\": 0.155, \"Whole_weight\": 1.5390000000000001, \"Shucked_weight\": 0.6405, \"Viscera_weight\": 0.3585, \"Shell_weight\": 0.43, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.318, \"Shucked_weight\": 0.55, \"Viscera_weight\": 0.3015, \"Shell_weight\": 0.335, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.545, \"Height\": 0.175, \"Whole_weight\": 1.5245, \"Shucked_weight\": 0.59, \"Viscera_weight\": 0.326, \"Shell_weight\": 0.495, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.515, \"Height\": 0.175, \"Whole_weight\": 1.466, \"Shucked_weight\": 0.677, \"Viscera_weight\": 0.3045, \"Shell_weight\": 0.4, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.5, \"Height\": 0.16, \"Whole_weight\": 1.3825, \"Shucked_weight\": 0.7020000000000001, \"Viscera_weight\": 0.304, \"Shell_weight\": 0.3195, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.485, \"Height\": 0.14, \"Whole_weight\": 1.175, \"Shucked_weight\": 0.475, \"Viscera_weight\": 0.2435, \"Shell_weight\": 0.215, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.54, \"Height\": 0.215, \"Whole_weight\": 1.5555, \"Shucked_weight\": 0.695, \"Viscera_weight\": 0.29600000000000004, \"Shell_weight\": 0.444, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.51, \"Height\": 0.215, \"Whole_weight\": 1.7835, \"Shucked_weight\": 0.8885, \"Viscera_weight\": 0.4095, \"Shell_weight\": 0.4195, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.374, \"Shucked_weight\": 0.589, \"Viscera_weight\": 0.35100000000000003, \"Shell_weight\": 0.345, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.515, \"Height\": 0.18, \"Whole_weight\": 1.389, \"Shucked_weight\": 0.5945, \"Viscera_weight\": 0.324, \"Shell_weight\": 0.395, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.545, \"Height\": 0.2, \"Whole_weight\": 1.7025, \"Shucked_weight\": 0.833, \"Viscera_weight\": 0.374, \"Shell_weight\": 0.41, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.5265, \"Shucked_weight\": 0.6509999999999999, \"Viscera_weight\": 0.4475, \"Shell_weight\": 0.345, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.5, \"Height\": 0.19, \"Whole_weight\": 1.5190000000000001, \"Shucked_weight\": 0.616, \"Viscera_weight\": 0.38799999999999996, \"Shell_weight\": 0.415, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.5, \"Height\": 0.185, \"Whole_weight\": 1.7409999999999999, \"Shucked_weight\": 0.7665, \"Viscera_weight\": 0.3255, \"Shell_weight\": 0.4685, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.68, \"Diameter\": 0.515, \"Height\": 0.17, \"Whole_weight\": 1.6115, \"Shucked_weight\": 0.8415, \"Viscera_weight\": 0.306, \"Shell_weight\": 0.395, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.69, \"Diameter\": 0.525, \"Height\": 0.2, \"Whole_weight\": 1.7825, \"Shucked_weight\": 0.9165, \"Viscera_weight\": 0.3325, \"Shell_weight\": 0.461, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.55, \"Height\": 0.17, \"Whole_weight\": 1.6840000000000002, \"Shucked_weight\": 0.7535, \"Viscera_weight\": 0.3265, \"Shell_weight\": 0.32, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.555, \"Height\": 0.2, \"Whole_weight\": 1.858, \"Shucked_weight\": 0.73, \"Viscera_weight\": 0.3665, \"Shell_weight\": 0.595, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.705, \"Diameter\": 0.56, \"Height\": 0.165, \"Whole_weight\": 1.675, \"Shucked_weight\": 0.797, \"Viscera_weight\": 0.4095, \"Shell_weight\": 0.38799999999999996, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.72, \"Diameter\": 0.565, \"Height\": 0.2, \"Whole_weight\": 2.1055, \"Shucked_weight\": 1.0170000000000001, \"Viscera_weight\": 0.363, \"Shell_weight\": 0.494, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.725, \"Diameter\": 0.575, \"Height\": 0.24, \"Whole_weight\": 2.21, \"Shucked_weight\": 1.351, \"Viscera_weight\": 0.413, \"Shell_weight\": 0.5015, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.74, \"Diameter\": 0.57, \"Height\": 0.18, \"Whole_weight\": 1.8725, \"Shucked_weight\": 0.9115, \"Viscera_weight\": 0.42700000000000005, \"Shell_weight\": 0.446, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.75, \"Diameter\": 0.55, \"Height\": 0.18, \"Whole_weight\": 1.893, \"Shucked_weight\": 0.9420000000000001, \"Viscera_weight\": 0.397, \"Shell_weight\": 0.445, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.21, \"Diameter\": 0.17, \"Height\": 0.045, \"Whole_weight\": 0.0475, \"Shucked_weight\": 0.019, \"Viscera_weight\": 0.011000000000000001, \"Shell_weight\": 0.013000000000000001, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.285, \"Diameter\": 0.21, \"Height\": 0.055, \"Whole_weight\": 0.10099999999999999, \"Shucked_weight\": 0.0415, \"Viscera_weight\": 0.017, \"Shell_weight\": 0.0335, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.295, \"Diameter\": 0.215, \"Height\": 0.07, \"Whole_weight\": 0.121, \"Shucked_weight\": 0.047, \"Viscera_weight\": 0.0155, \"Shell_weight\": 0.0405, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.3, \"Diameter\": 0.23, \"Height\": 0.085, \"Whole_weight\": 0.11699999999999999, \"Shucked_weight\": 0.05, \"Viscera_weight\": 0.0175, \"Shell_weight\": 0.0415, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.305, \"Diameter\": 0.225, \"Height\": 0.09, \"Whole_weight\": 0.1465, \"Shucked_weight\": 0.063, \"Viscera_weight\": 0.034, \"Shell_weight\": 0.0415, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.255, \"Height\": 0.08, \"Whole_weight\": 0.168, \"Shucked_weight\": 0.079, \"Viscera_weight\": 0.0355, \"Shell_weight\": 0.05, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.26, \"Height\": 0.075, \"Whole_weight\": 0.18, \"Shucked_weight\": 0.09, \"Viscera_weight\": 0.0245, \"Shell_weight\": 0.055, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.27, \"Height\": 0.075, \"Whole_weight\": 0.1775, \"Shucked_weight\": 0.079, \"Viscera_weight\": 0.0315, \"Shell_weight\": 0.054000000000000006, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.26, \"Height\": 0.09, \"Whole_weight\": 0.1985, \"Shucked_weight\": 0.0715, \"Viscera_weight\": 0.0495, \"Shell_weight\": 0.057999999999999996, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.27, \"Height\": 0.095, \"Whole_weight\": 0.2, \"Shucked_weight\": 0.073, \"Viscera_weight\": 0.055999999999999994, \"Shell_weight\": 0.061, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.275, \"Height\": 0.075, \"Whole_weight\": 0.2205, \"Shucked_weight\": 0.0985, \"Viscera_weight\": 0.044000000000000004, \"Shell_weight\": 0.066, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.265, \"Height\": 0.075, \"Whole_weight\": 0.1845, \"Shucked_weight\": 0.083, \"Viscera_weight\": 0.0365, \"Shell_weight\": 0.055, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.27, \"Height\": 0.085, \"Whole_weight\": 0.2225, \"Shucked_weight\": 0.0935, \"Viscera_weight\": 0.0525, \"Shell_weight\": 0.066, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.27, \"Height\": 0.095, \"Whole_weight\": 0.2175, \"Shucked_weight\": 0.09699999999999999, \"Viscera_weight\": 0.046, \"Shell_weight\": 0.065, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.28, \"Height\": 0.08, \"Whole_weight\": 0.2165, \"Shucked_weight\": 0.0935, \"Viscera_weight\": 0.0925, \"Shell_weight\": 0.07, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.38, \"Diameter\": 0.285, \"Height\": 0.095, \"Whole_weight\": 0.243, \"Shucked_weight\": 0.0895, \"Viscera_weight\": 0.0665, \"Shell_weight\": 0.075, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.38, \"Diameter\": 0.29, \"Height\": 0.1, \"Whole_weight\": 0.237, \"Shucked_weight\": 0.10800000000000001, \"Viscera_weight\": 0.0395, \"Shell_weight\": 0.08199999999999999, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.29, \"Height\": 0.09, \"Whole_weight\": 0.2365, \"Shucked_weight\": 0.1, \"Viscera_weight\": 0.0505, \"Shell_weight\": 0.076, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.28, \"Height\": 0.095, \"Whole_weight\": 0.257, \"Shucked_weight\": 0.11900000000000001, \"Viscera_weight\": 0.059000000000000004, \"Shell_weight\": 0.07, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.308, \"Shucked_weight\": 0.1525, \"Viscera_weight\": 0.055999999999999994, \"Shell_weight\": 0.0835, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.252, \"Shucked_weight\": 0.1065, \"Viscera_weight\": 0.053, \"Shell_weight\": 0.08, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.285, \"Height\": 0.1, \"Whole_weight\": 0.281, \"Shucked_weight\": 0.1275, \"Viscera_weight\": 0.062, \"Shell_weight\": 0.077, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.29, \"Height\": 0.1, \"Whole_weight\": 0.2225, \"Shucked_weight\": 0.095, \"Viscera_weight\": 0.0465, \"Shell_weight\": 0.073, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.304, \"Shucked_weight\": 0.129, \"Viscera_weight\": 0.071, \"Shell_weight\": 0.0955, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.28, \"Shucked_weight\": 0.141, \"Viscera_weight\": 0.0575, \"Shell_weight\": 0.075, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.313, \"Shucked_weight\": 0.139, \"Viscera_weight\": 0.0625, \"Shell_weight\": 0.0965, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.325, \"Height\": 0.11, \"Whole_weight\": 0.317, \"Shucked_weight\": 0.135, \"Viscera_weight\": 0.048, \"Shell_weight\": 0.09, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.315, \"Height\": 0.08, \"Whole_weight\": 0.303, \"Shucked_weight\": 0.131, \"Viscera_weight\": 0.0585, \"Shell_weight\": 0.095, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.335, \"Height\": 0.1, \"Whole_weight\": 0.3295, \"Shucked_weight\": 0.129, \"Viscera_weight\": 0.07, \"Shell_weight\": 0.11, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.325, \"Height\": 0.11, \"Whole_weight\": 0.36700000000000005, \"Shucked_weight\": 0.1595, \"Viscera_weight\": 0.08, \"Shell_weight\": 0.105, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.34, \"Height\": 0.095, \"Whole_weight\": 0.3245, \"Shucked_weight\": 0.1385, \"Viscera_weight\": 0.064, \"Shell_weight\": 0.105, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.335, \"Height\": 0.11, \"Whole_weight\": 0.4195, \"Shucked_weight\": 0.18100000000000002, \"Viscera_weight\": 0.085, \"Shell_weight\": 0.1345, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.36, \"Height\": 0.115, \"Whole_weight\": 0.457, \"Shucked_weight\": 0.2085, \"Viscera_weight\": 0.0855, \"Shell_weight\": 0.147, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.35, \"Height\": 0.11, \"Whole_weight\": 0.4, \"Shucked_weight\": 0.17600000000000002, \"Viscera_weight\": 0.083, \"Shell_weight\": 0.1205, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.355, \"Height\": 0.11, \"Whole_weight\": 0.4255, \"Shucked_weight\": 0.2015, \"Viscera_weight\": 0.081, \"Shell_weight\": 0.13, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.37, \"Height\": 0.12, \"Whole_weight\": 0.4365, \"Shucked_weight\": 0.188, \"Viscera_weight\": 0.0815, \"Shell_weight\": 0.147, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.345, \"Height\": 0.11, \"Whole_weight\": 0.39299999999999996, \"Shucked_weight\": 0.1825, \"Viscera_weight\": 0.0735, \"Shell_weight\": 0.12, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.355, \"Height\": 0.125, \"Whole_weight\": 0.499, \"Shucked_weight\": 0.21, \"Viscera_weight\": 0.0985, \"Shell_weight\": 0.155, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.36, \"Height\": 0.145, \"Whole_weight\": 0.6325, \"Shucked_weight\": 0.2825, \"Viscera_weight\": 0.13699999999999998, \"Shell_weight\": 0.19, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.475, \"Diameter\": 0.36, \"Height\": 0.1, \"Whole_weight\": 0.4285, \"Shucked_weight\": 0.1965, \"Viscera_weight\": 0.099, \"Shell_weight\": 0.11199999999999999, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.36, \"Height\": 0.125, \"Whole_weight\": 0.4905, \"Shucked_weight\": 0.205, \"Viscera_weight\": 0.1305, \"Shell_weight\": 0.125, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.37, \"Height\": 0.125, \"Whole_weight\": 0.474, \"Shucked_weight\": 0.179, \"Viscera_weight\": 0.1035, \"Shell_weight\": 0.175, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.37, \"Height\": 0.12, \"Whole_weight\": 0.536, \"Shucked_weight\": 0.251, \"Viscera_weight\": 0.114, \"Shell_weight\": 0.15, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.355, \"Height\": 0.16, \"Whole_weight\": 0.46399999999999997, \"Shucked_weight\": 0.221, \"Viscera_weight\": 0.106, \"Shell_weight\": 0.239, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.375, \"Height\": 0.13, \"Whole_weight\": 0.6025, \"Shucked_weight\": 0.2935, \"Viscera_weight\": 0.1285, \"Shell_weight\": 0.16, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.49, \"Diameter\": 0.375, \"Height\": 0.115, \"Whole_weight\": 0.4615, \"Shucked_weight\": 0.204, \"Viscera_weight\": 0.0945, \"Shell_weight\": 0.14300000000000002, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.49, \"Diameter\": 0.4, \"Height\": 0.135, \"Whole_weight\": 0.624, \"Shucked_weight\": 0.3035, \"Viscera_weight\": 0.1285, \"Shell_weight\": 0.16899999999999998, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.37, \"Height\": 0.125, \"Whole_weight\": 0.4715, \"Shucked_weight\": 0.2075, \"Viscera_weight\": 0.091, \"Shell_weight\": 0.15, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.4, \"Height\": 0.105, \"Whole_weight\": 0.602, \"Shucked_weight\": 0.2505, \"Viscera_weight\": 0.1265, \"Shell_weight\": 0.19, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.4, \"Height\": 0.12, \"Whole_weight\": 0.616, \"Shucked_weight\": 0.261, \"Viscera_weight\": 0.14300000000000002, \"Shell_weight\": 0.1935, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.39, \"Height\": 0.12, \"Whole_weight\": 0.5955, \"Shucked_weight\": 0.2455, \"Viscera_weight\": 0.147, \"Shell_weight\": 0.17300000000000001, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.375, \"Height\": 0.14, \"Whole_weight\": 0.5589999999999999, \"Shucked_weight\": 0.2375, \"Viscera_weight\": 0.135, \"Shell_weight\": 0.16899999999999998, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.395, \"Height\": 0.13, \"Whole_weight\": 0.6025, \"Shucked_weight\": 0.281, \"Viscera_weight\": 0.14300000000000002, \"Shell_weight\": 0.162, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.375, \"Height\": 0.11, \"Whole_weight\": 0.6065, \"Shucked_weight\": 0.3005, \"Viscera_weight\": 0.131, \"Shell_weight\": 0.15, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.36, \"Height\": 0.125, \"Whole_weight\": 0.4725, \"Shucked_weight\": 0.1815, \"Viscera_weight\": 0.125, \"Shell_weight\": 0.138, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.35, \"Height\": 0.105, \"Whole_weight\": 0.4745, \"Shucked_weight\": 0.213, \"Viscera_weight\": 0.12300000000000001, \"Shell_weight\": 0.1275, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.395, \"Height\": 0.125, \"Whole_weight\": 0.6635, \"Shucked_weight\": 0.32, \"Viscera_weight\": 0.14, \"Shell_weight\": 0.17, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.39, \"Height\": 0.125, \"Whole_weight\": 0.5705, \"Shucked_weight\": 0.23800000000000002, \"Viscera_weight\": 0.1265, \"Shell_weight\": 0.185, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.41, \"Height\": 0.145, \"Whole_weight\": 0.6459999999999999, \"Shucked_weight\": 0.2965, \"Viscera_weight\": 0.1595, \"Shell_weight\": 0.165, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.39, \"Height\": 0.13, \"Whole_weight\": 0.5545, \"Shucked_weight\": 0.2355, \"Viscera_weight\": 0.1095, \"Shell_weight\": 0.1895, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.415, \"Height\": 0.145, \"Whole_weight\": 0.845, \"Shucked_weight\": 0.3525, \"Viscera_weight\": 0.1635, \"Shell_weight\": 0.2875, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.39, \"Height\": 0.12, \"Whole_weight\": 0.664, \"Shucked_weight\": 0.3115, \"Viscera_weight\": 0.147, \"Shell_weight\": 0.17800000000000002, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.615, \"Shucked_weight\": 0.261, \"Viscera_weight\": 0.159, \"Shell_weight\": 0.175, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.14, \"Whole_weight\": 0.654, \"Shucked_weight\": 0.305, \"Viscera_weight\": 0.16, \"Shell_weight\": 0.16899999999999998, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.155, \"Whole_weight\": 0.7070000000000001, \"Shucked_weight\": 0.282, \"Viscera_weight\": 0.1605, \"Shell_weight\": 0.225, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.42, \"Height\": 0.12, \"Whole_weight\": 0.5965, \"Shucked_weight\": 0.2555, \"Viscera_weight\": 0.141, \"Shell_weight\": 0.177, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.43, \"Height\": 0.135, \"Whole_weight\": 0.6255, \"Shucked_weight\": 0.245, \"Viscera_weight\": 0.1455, \"Shell_weight\": 0.2135, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.4, \"Height\": 0.145, \"Whole_weight\": 0.555, \"Shucked_weight\": 0.1935, \"Viscera_weight\": 0.1305, \"Shell_weight\": 0.195, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.42, \"Height\": 0.13, \"Whole_weight\": 0.8365, \"Shucked_weight\": 0.3745, \"Viscera_weight\": 0.16699999999999998, \"Shell_weight\": 0.249, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.657, \"Shucked_weight\": 0.2835, \"Viscera_weight\": 0.162, \"Shell_weight\": 0.175, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.43, \"Height\": 0.17, \"Whole_weight\": 0.836, \"Shucked_weight\": 0.3725, \"Viscera_weight\": 0.1815, \"Shell_weight\": 0.24, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.425, \"Height\": 0.14, \"Whole_weight\": 0.742, \"Shucked_weight\": 0.32, \"Viscera_weight\": 0.1395, \"Shell_weight\": 0.25, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.43, \"Height\": 0.14, \"Whole_weight\": 0.8195, \"Shucked_weight\": 0.3935, \"Viscera_weight\": 0.1725, \"Shell_weight\": 0.2295, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.455, \"Height\": 0.14, \"Whole_weight\": 0.972, \"Shucked_weight\": 0.419, \"Viscera_weight\": 0.255, \"Shell_weight\": 0.26899999999999996, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.42, \"Height\": 0.14, \"Whole_weight\": 0.6275, \"Shucked_weight\": 0.2505, \"Viscera_weight\": 0.1175, \"Shell_weight\": 0.235, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.425, \"Height\": 0.13, \"Whole_weight\": 0.7205, \"Shucked_weight\": 0.2955, \"Viscera_weight\": 0.16899999999999998, \"Shell_weight\": 0.225, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.425, \"Height\": 0.135, \"Whole_weight\": 0.6859999999999999, \"Shucked_weight\": 0.3475, \"Viscera_weight\": 0.1545, \"Shell_weight\": 0.213, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.545, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.6859999999999999, \"Shucked_weight\": 0.3285, \"Viscera_weight\": 0.1455, \"Shell_weight\": 0.18, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.545, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.5429999999999999, \"Shucked_weight\": 0.2375, \"Viscera_weight\": 0.1155, \"Shell_weight\": 0.1725, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.545, \"Diameter\": 0.42, \"Height\": 0.125, \"Whole_weight\": 0.7170000000000001, \"Shucked_weight\": 0.358, \"Viscera_weight\": 0.11199999999999999, \"Shell_weight\": 0.22, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.7625, \"Shucked_weight\": 0.327, \"Viscera_weight\": 0.1685, \"Shell_weight\": 0.259, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.15, \"Whole_weight\": 0.639, \"Shucked_weight\": 0.26899999999999996, \"Viscera_weight\": 0.1345, \"Shell_weight\": 0.217, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.42, \"Height\": 0.135, \"Whole_weight\": 0.816, \"Shucked_weight\": 0.3995, \"Viscera_weight\": 0.1485, \"Shell_weight\": 0.23, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.415, \"Height\": 0.145, \"Whole_weight\": 0.7815, \"Shucked_weight\": 0.373, \"Viscera_weight\": 0.16, \"Shell_weight\": 0.2215, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.15, \"Whole_weight\": 0.7665, \"Shucked_weight\": 0.33899999999999997, \"Viscera_weight\": 0.17600000000000002, \"Shell_weight\": 0.21, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.555, \"Diameter\": 0.395, \"Height\": 0.13, \"Whole_weight\": 0.5585, \"Shucked_weight\": 0.222, \"Viscera_weight\": 0.1245, \"Shell_weight\": 0.17, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.555, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.765, \"Shucked_weight\": 0.3945, \"Viscera_weight\": 0.15, \"Shell_weight\": 0.20600000000000002, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.555, \"Diameter\": 0.46, \"Height\": 0.145, \"Whole_weight\": 0.9005, \"Shucked_weight\": 0.3845, \"Viscera_weight\": 0.158, \"Shell_weight\": 0.2765, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.445, \"Height\": 0.15, \"Whole_weight\": 0.8225, \"Shucked_weight\": 0.3685, \"Viscera_weight\": 0.187, \"Shell_weight\": 0.23600000000000002, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.44, \"Height\": 0.13, \"Whole_weight\": 0.7235, \"Shucked_weight\": 0.349, \"Viscera_weight\": 0.149, \"Shell_weight\": 0.2, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.425, \"Height\": 0.135, \"Whole_weight\": 0.8490000000000001, \"Shucked_weight\": 0.3265, \"Viscera_weight\": 0.221, \"Shell_weight\": 0.2645, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.565, \"Diameter\": 0.42, \"Height\": 0.155, \"Whole_weight\": 0.743, \"Shucked_weight\": 0.31, \"Viscera_weight\": 0.18600000000000003, \"Shell_weight\": 0.231, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 0.863, \"Shucked_weight\": 0.435, \"Viscera_weight\": 0.149, \"Shell_weight\": 0.27, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.125, \"Whole_weight\": 0.802, \"Shucked_weight\": 0.3595, \"Viscera_weight\": 0.1825, \"Shell_weight\": 0.215, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.831, \"Shucked_weight\": 0.4245, \"Viscera_weight\": 0.1735, \"Shell_weight\": 0.21899999999999997, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.135, \"Whole_weight\": 0.7805, \"Shucked_weight\": 0.3345, \"Viscera_weight\": 0.185, \"Shell_weight\": 0.21, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.14, \"Whole_weight\": 0.795, \"Shucked_weight\": 0.3385, \"Viscera_weight\": 0.14800000000000002, \"Shell_weight\": 0.245, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.57, \"Diameter\": 0.435, \"Height\": 0.17, \"Whole_weight\": 0.848, \"Shucked_weight\": 0.4, \"Viscera_weight\": 0.166, \"Shell_weight\": 0.25, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.57, \"Diameter\": 0.43, \"Height\": 0.145, \"Whole_weight\": 0.833, \"Shucked_weight\": 0.354, \"Viscera_weight\": 0.14400000000000002, \"Shell_weight\": 0.2815, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.57, \"Diameter\": 0.445, \"Height\": 0.155, \"Whole_weight\": 0.867, \"Shucked_weight\": 0.3705, \"Viscera_weight\": 0.1705, \"Shell_weight\": 0.28, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.57, \"Diameter\": 0.445, \"Height\": 0.145, \"Whole_weight\": 0.7405, \"Shucked_weight\": 0.306, \"Viscera_weight\": 0.172, \"Shell_weight\": 0.1825, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.455, \"Height\": 0.165, \"Whole_weight\": 0.867, \"Shucked_weight\": 0.3765, \"Viscera_weight\": 0.1805, \"Shell_weight\": 0.268, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.425, \"Height\": 0.135, \"Whole_weight\": 0.7965, \"Shucked_weight\": 0.364, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.239, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 1.1159999999999999, \"Shucked_weight\": 0.509, \"Viscera_weight\": 0.23800000000000002, \"Shell_weight\": 0.34, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.125, \"Whole_weight\": 0.78, \"Shucked_weight\": 0.3275, \"Viscera_weight\": 0.188, \"Shell_weight\": 0.235, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.47, \"Height\": 0.185, \"Whole_weight\": 0.985, \"Shucked_weight\": 0.3745, \"Viscera_weight\": 0.2175, \"Shell_weight\": 0.355, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.465, \"Height\": 0.195, \"Whole_weight\": 0.9965, \"Shucked_weight\": 0.41700000000000004, \"Viscera_weight\": 0.247, \"Shell_weight\": 0.47, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.445, \"Height\": 0.17, \"Whole_weight\": 0.8015, \"Shucked_weight\": 0.3475, \"Viscera_weight\": 0.1465, \"Shell_weight\": 0.25, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.135, \"Whole_weight\": 0.807, \"Shucked_weight\": 0.3615, \"Viscera_weight\": 0.17600000000000002, \"Shell_weight\": 0.254, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.435, \"Height\": 0.15, \"Whole_weight\": 1.0305, \"Shucked_weight\": 0.4605, \"Viscera_weight\": 0.218, \"Shell_weight\": 0.36, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.445, \"Height\": 0.16, \"Whole_weight\": 0.8390000000000001, \"Shucked_weight\": 0.4005, \"Viscera_weight\": 0.198, \"Shell_weight\": 0.239, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.44, \"Height\": 0.16, \"Whole_weight\": 0.9615, \"Shucked_weight\": 0.483, \"Viscera_weight\": 0.166, \"Shell_weight\": 0.275, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.435, \"Height\": 0.15, \"Whole_weight\": 0.8340000000000001, \"Shucked_weight\": 0.428, \"Viscera_weight\": 0.1515, \"Shell_weight\": 0.23, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.155, \"Whole_weight\": 1.0335, \"Shucked_weight\": 0.469, \"Viscera_weight\": 0.2225, \"Shell_weight\": 0.295, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.43, \"Height\": 0.13, \"Whole_weight\": 0.7979999999999999, \"Shucked_weight\": 0.365, \"Viscera_weight\": 0.17300000000000001, \"Shell_weight\": 0.2285, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.58, \"Diameter\": 0.445, \"Height\": 0.125, \"Whole_weight\": 0.7095, \"Shucked_weight\": 0.303, \"Viscera_weight\": 0.1405, \"Shell_weight\": 0.235, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.445, \"Height\": 0.14, \"Whole_weight\": 0.9129999999999999, \"Shucked_weight\": 0.4305, \"Viscera_weight\": 0.2205, \"Shell_weight\": 0.253, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.49, \"Height\": 0.165, \"Whole_weight\": 1.207, \"Shucked_weight\": 0.5589999999999999, \"Viscera_weight\": 0.235, \"Shell_weight\": 0.309, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.59, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 1.022, \"Shucked_weight\": 0.428, \"Viscera_weight\": 0.268, \"Shell_weight\": 0.265, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.59, \"Diameter\": 0.46, \"Height\": 0.145, \"Whole_weight\": 0.9015, \"Shucked_weight\": 0.419, \"Viscera_weight\": 0.1785, \"Shell_weight\": 0.26, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.435, \"Height\": 0.15, \"Whole_weight\": 0.9, \"Shucked_weight\": 0.4175, \"Viscera_weight\": 0.17, \"Shell_weight\": 0.265, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.45, \"Height\": 0.14, \"Whole_weight\": 0.838, \"Shucked_weight\": 0.3965, \"Viscera_weight\": 0.19399999999999998, \"Shell_weight\": 0.217, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 0.9590000000000001, \"Shucked_weight\": 0.46299999999999997, \"Viscera_weight\": 0.2065, \"Shell_weight\": 0.2535, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.595, \"Diameter\": 0.46, \"Height\": 0.15, \"Whole_weight\": 0.8335, \"Shucked_weight\": 0.377, \"Viscera_weight\": 0.1925, \"Shell_weight\": 0.235, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.46, \"Height\": 0.155, \"Whole_weight\": 0.9735, \"Shucked_weight\": 0.42700000000000005, \"Viscera_weight\": 0.2045, \"Shell_weight\": 0.3, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 1.13, \"Shucked_weight\": 0.575, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.305, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 0.9165, \"Shucked_weight\": 0.4135, \"Viscera_weight\": 0.1965, \"Shell_weight\": 0.2725, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.6, \"Diameter\": 0.48, \"Height\": 0.17, \"Whole_weight\": 0.9175, \"Shucked_weight\": 0.38, \"Viscera_weight\": 0.2225, \"Shell_weight\": 0.29, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.48, \"Height\": 0.18, \"Whole_weight\": 1.0645, \"Shucked_weight\": 0.4495, \"Viscera_weight\": 0.2455, \"Shell_weight\": 0.325, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 1.0590000000000002, \"Shucked_weight\": 0.504, \"Viscera_weight\": 0.24100000000000002, \"Shell_weight\": 0.275, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.47, \"Height\": 0.16, \"Whole_weight\": 1.194, \"Shucked_weight\": 0.5625, \"Viscera_weight\": 0.3045, \"Shell_weight\": 0.2635, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.455, \"Height\": 0.145, \"Whole_weight\": 0.9775, \"Shucked_weight\": 0.46799999999999997, \"Viscera_weight\": 0.1775, \"Shell_weight\": 0.275, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.145, \"Whole_weight\": 0.884, \"Shucked_weight\": 0.3835, \"Viscera_weight\": 0.1905, \"Shell_weight\": 0.27, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.605, \"Diameter\": 0.47, \"Height\": 0.145, \"Whole_weight\": 0.8025, \"Shucked_weight\": 0.379, \"Viscera_weight\": 0.2265, \"Shell_weight\": 0.22, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.48, \"Height\": 0.14, \"Whole_weight\": 0.991, \"Shucked_weight\": 0.4735, \"Viscera_weight\": 0.2345, \"Shell_weight\": 0.24, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 0.9740000000000001, \"Shucked_weight\": 0.39299999999999996, \"Viscera_weight\": 0.22399999999999998, \"Shell_weight\": 0.3345, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.505, \"Height\": 0.18, \"Whole_weight\": 1.4340000000000002, \"Shucked_weight\": 0.7285, \"Viscera_weight\": 0.264, \"Shell_weight\": 0.431, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 0.983, \"Shucked_weight\": 0.4565, \"Viscera_weight\": 0.228, \"Shell_weight\": 0.266, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.465, \"Height\": 0.16, \"Whole_weight\": 1.0725, \"Shucked_weight\": 0.4835, \"Viscera_weight\": 0.2515, \"Shell_weight\": 0.28, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.485, \"Height\": 0.15, \"Whole_weight\": 1.2405, \"Shucked_weight\": 0.6025, \"Viscera_weight\": 0.2915, \"Shell_weight\": 0.3085, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.47, \"Height\": 0.16, \"Whole_weight\": 1.022, \"Shucked_weight\": 0.449, \"Viscera_weight\": 0.2345, \"Shell_weight\": 0.2945, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.1155, \"Shucked_weight\": 0.3835, \"Viscera_weight\": 0.223, \"Shell_weight\": 0.379, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.61, \"Diameter\": 0.465, \"Height\": 0.125, \"Whole_weight\": 0.9225, \"Shucked_weight\": 0.436, \"Viscera_weight\": 0.19, \"Shell_weight\": 0.26, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.47, \"Height\": 0.17, \"Whole_weight\": 1.1185, \"Shucked_weight\": 0.5225, \"Viscera_weight\": 0.2405, \"Shell_weight\": 0.31, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.485, \"Height\": 0.18, \"Whole_weight\": 1.2795, \"Shucked_weight\": 0.5735, \"Viscera_weight\": 0.2855, \"Shell_weight\": 0.355, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.47, \"Height\": 0.16, \"Whole_weight\": 1.0175, \"Shucked_weight\": 0.473, \"Viscera_weight\": 0.2395, \"Shell_weight\": 0.28, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.224, \"Shucked_weight\": 0.6035, \"Viscera_weight\": 0.261, \"Shell_weight\": 0.311, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.62, \"Diameter\": 0.485, \"Height\": 0.18, \"Whole_weight\": 1.1540000000000001, \"Shucked_weight\": 0.4935, \"Viscera_weight\": 0.256, \"Shell_weight\": 0.315, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.515, \"Height\": 0.155, \"Whole_weight\": 1.3255, \"Shucked_weight\": 0.6685, \"Viscera_weight\": 0.2605, \"Shell_weight\": 0.335, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.515, \"Height\": 0.175, \"Whole_weight\": 1.2209999999999999, \"Shucked_weight\": 0.535, \"Viscera_weight\": 0.24100000000000002, \"Shell_weight\": 0.395, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.54, \"Height\": 0.165, \"Whole_weight\": 1.139, \"Shucked_weight\": 0.4995, \"Viscera_weight\": 0.2435, \"Shell_weight\": 0.35700000000000004, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.62, \"Diameter\": 0.49, \"Height\": 0.16, \"Whole_weight\": 1.0659999999999998, \"Shucked_weight\": 0.446, \"Viscera_weight\": 0.24600000000000002, \"Shell_weight\": 0.305, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.48, \"Height\": 0.18, \"Whole_weight\": 1.2215, \"Shucked_weight\": 0.5820000000000001, \"Viscera_weight\": 0.2695, \"Shell_weight\": 0.313, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.62, \"Diameter\": 0.47, \"Height\": 0.14, \"Whole_weight\": 0.8565, \"Shucked_weight\": 0.3595, \"Viscera_weight\": 0.16, \"Shell_weight\": 0.295, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.62, \"Diameter\": 0.45, \"Height\": 0.135, \"Whole_weight\": 0.924, \"Shucked_weight\": 0.358, \"Viscera_weight\": 0.2265, \"Shell_weight\": 0.2965, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 1.266, \"Shucked_weight\": 0.6285, \"Viscera_weight\": 0.2575, \"Shell_weight\": 0.309, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.48, \"Height\": 0.175, \"Whole_weight\": 1.0405, \"Shucked_weight\": 0.46399999999999997, \"Viscera_weight\": 0.2225, \"Shell_weight\": 0.3, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.165, \"Whole_weight\": 1.1165, \"Shucked_weight\": 0.4895, \"Viscera_weight\": 0.2615, \"Shell_weight\": 0.3325, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.0845, \"Shucked_weight\": 0.5005, \"Viscera_weight\": 0.2355, \"Shell_weight\": 0.3105, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.5, \"Height\": 0.17, \"Whole_weight\": 1.0985, \"Shucked_weight\": 0.4645, \"Viscera_weight\": 0.22, \"Shell_weight\": 0.354, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.625, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 1.1955, \"Shucked_weight\": 0.643, \"Viscera_weight\": 0.2055, \"Shell_weight\": 0.3145, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.485, \"Height\": 0.175, \"Whole_weight\": 1.3619999999999999, \"Shucked_weight\": 0.6765, \"Viscera_weight\": 0.2615, \"Shell_weight\": 0.3705, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.625, \"Diameter\": 0.485, \"Height\": 0.15, \"Whole_weight\": 1.044, \"Shucked_weight\": 0.43799999999999994, \"Viscera_weight\": 0.2865, \"Shell_weight\": 0.278, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.505, \"Height\": 0.17, \"Whole_weight\": 1.0915, \"Shucked_weight\": 0.4615, \"Viscera_weight\": 0.266, \"Shell_weight\": 0.3, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.5, \"Height\": 0.18, \"Whole_weight\": 1.1965, \"Shucked_weight\": 0.514, \"Viscera_weight\": 0.2325, \"Shell_weight\": 0.3995, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.49, \"Height\": 0.17, \"Whole_weight\": 1.1745, \"Shucked_weight\": 0.5255, \"Viscera_weight\": 0.273, \"Shell_weight\": 0.33899999999999997, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.485, \"Height\": 0.165, \"Whole_weight\": 1.2329999999999999, \"Shucked_weight\": 0.6565, \"Viscera_weight\": 0.2315, \"Shell_weight\": 0.3035, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.495, \"Height\": 0.175, \"Whole_weight\": 1.2695, \"Shucked_weight\": 0.605, \"Viscera_weight\": 0.271, \"Shell_weight\": 0.32799999999999996, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.635, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.489, \"Shucked_weight\": 0.715, \"Viscera_weight\": 0.3445, \"Shell_weight\": 0.3615, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.5, \"Height\": 0.17, \"Whole_weight\": 1.4345, \"Shucked_weight\": 0.611, \"Viscera_weight\": 0.309, \"Shell_weight\": 0.418, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.49, \"Height\": 0.175, \"Whole_weight\": 1.2435, \"Shucked_weight\": 0.5805, \"Viscera_weight\": 0.313, \"Shell_weight\": 0.305, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.49, \"Height\": 0.17, \"Whole_weight\": 1.2615, \"Shucked_weight\": 0.5385, \"Viscera_weight\": 0.2665, \"Shell_weight\": 0.38, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.2235, \"Shucked_weight\": 0.5215, \"Viscera_weight\": 0.2695, \"Shell_weight\": 0.36, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.515, \"Height\": 0.18, \"Whole_weight\": 1.247, \"Shucked_weight\": 0.5475, \"Viscera_weight\": 0.2925, \"Shell_weight\": 0.3685, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.525, \"Height\": 0.185, \"Whole_weight\": 1.7069999999999999, \"Shucked_weight\": 0.763, \"Viscera_weight\": 0.4205, \"Shell_weight\": 0.4435, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.505, \"Height\": 0.15, \"Whole_weight\": 1.1605, \"Shucked_weight\": 0.519, \"Viscera_weight\": 0.2615, \"Shell_weight\": 0.335, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.286, \"Shucked_weight\": 0.5645, \"Viscera_weight\": 0.28800000000000003, \"Shell_weight\": 0.386, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.19, \"Whole_weight\": 1.5595, \"Shucked_weight\": 0.741, \"Viscera_weight\": 0.3715, \"Shell_weight\": 0.3845, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.51, \"Height\": 0.19, \"Whole_weight\": 1.4745, \"Shucked_weight\": 0.605, \"Viscera_weight\": 0.345, \"Shell_weight\": 0.48, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.51, \"Height\": 0.195, \"Whole_weight\": 1.226, \"Shucked_weight\": 0.5885, \"Viscera_weight\": 0.2215, \"Shell_weight\": 0.3745, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.51, \"Height\": 0.16, \"Whole_weight\": 1.33, \"Shucked_weight\": 0.6665, \"Viscera_weight\": 0.309, \"Shell_weight\": 0.317, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.51, \"Height\": 0.16, \"Whole_weight\": 1.2415, \"Shucked_weight\": 0.5815, \"Viscera_weight\": 0.276, \"Shell_weight\": 0.315, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.3375, \"Shucked_weight\": 0.5539999999999999, \"Viscera_weight\": 0.308, \"Shell_weight\": 0.415, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.51, \"Height\": 0.19, \"Whole_weight\": 1.3630000000000002, \"Shucked_weight\": 0.573, \"Viscera_weight\": 0.36200000000000004, \"Shell_weight\": 0.36, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.485, \"Height\": 0.15, \"Whole_weight\": 1.2215, \"Shucked_weight\": 0.5695, \"Viscera_weight\": 0.2735, \"Shell_weight\": 0.33, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.48, \"Height\": 0.19, \"Whole_weight\": 1.371, \"Shucked_weight\": 0.6925, \"Viscera_weight\": 0.2905, \"Shell_weight\": 0.35, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.495, \"Height\": 0.155, \"Whole_weight\": 1.337, \"Shucked_weight\": 0.615, \"Viscera_weight\": 0.3195, \"Shell_weight\": 0.335, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.505, \"Height\": 0.19, \"Whole_weight\": 1.274, \"Shucked_weight\": 0.59, \"Viscera_weight\": 0.23, \"Shell_weight\": 0.391, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.525, \"Height\": 0.185, \"Whole_weight\": 1.4880000000000002, \"Shucked_weight\": 0.665, \"Viscera_weight\": 0.337, \"Shell_weight\": 0.37799999999999995, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.51, \"Height\": 0.16, \"Whole_weight\": 1.3835, \"Shucked_weight\": 0.6385, \"Viscera_weight\": 0.2905, \"Shell_weight\": 0.3665, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.55, \"Height\": 0.18, \"Whole_weight\": 1.274, \"Shucked_weight\": 0.586, \"Viscera_weight\": 0.281, \"Shell_weight\": 0.365, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.51, \"Height\": 0.15, \"Whole_weight\": 1.043, \"Shucked_weight\": 0.4795, \"Viscera_weight\": 0.223, \"Shell_weight\": 0.305, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.505, \"Height\": 0.19, \"Whole_weight\": 1.3485, \"Shucked_weight\": 0.5935, \"Viscera_weight\": 0.2745, \"Shell_weight\": 0.425, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.505, \"Height\": 0.195, \"Whole_weight\": 1.4405, \"Shucked_weight\": 0.688, \"Viscera_weight\": 0.3805, \"Shell_weight\": 0.363, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.3195, \"Shucked_weight\": 0.667, \"Viscera_weight\": 0.26899999999999996, \"Shell_weight\": 0.341, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.535, \"Height\": 0.175, \"Whole_weight\": 1.5175, \"Shucked_weight\": 0.711, \"Viscera_weight\": 0.3125, \"Shell_weight\": 0.415, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.53, \"Height\": 0.195, \"Whole_weight\": 1.5505, \"Shucked_weight\": 0.6505, \"Viscera_weight\": 0.3295, \"Shell_weight\": 0.495, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.51, \"Height\": 0.165, \"Whole_weight\": 1.6375, \"Shucked_weight\": 0.7685, \"Viscera_weight\": 0.3545, \"Shell_weight\": 0.3925, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.525, \"Height\": 0.175, \"Whole_weight\": 1.443, \"Shucked_weight\": 0.6635, \"Viscera_weight\": 0.3845, \"Shell_weight\": 0.353, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.505, \"Height\": 0.16, \"Whole_weight\": 1.2890000000000001, \"Shucked_weight\": 0.6145, \"Viscera_weight\": 0.253, \"Shell_weight\": 0.3665, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.505, \"Height\": 0.16, \"Whole_weight\": 1.2915, \"Shucked_weight\": 0.631, \"Viscera_weight\": 0.2925, \"Shell_weight\": 0.32, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.52, \"Height\": 0.175, \"Whole_weight\": 1.3725, \"Shucked_weight\": 0.606, \"Viscera_weight\": 0.32, \"Shell_weight\": 0.395, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.2975, \"Shucked_weight\": 0.6075, \"Viscera_weight\": 0.314, \"Shell_weight\": 0.315, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.505, \"Height\": 0.16, \"Whole_weight\": 1.2585, \"Shucked_weight\": 0.6255, \"Viscera_weight\": 0.311, \"Shell_weight\": 0.308, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.52, \"Height\": 0.165, \"Whole_weight\": 1.39, \"Shucked_weight\": 0.711, \"Viscera_weight\": 0.2865, \"Shell_weight\": 0.3, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.52, \"Height\": 0.19, \"Whole_weight\": 1.32, \"Shucked_weight\": 0.5235, \"Viscera_weight\": 0.3095, \"Shell_weight\": 0.4275, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.55, \"Height\": 0.155, \"Whole_weight\": 1.5659999999999998, \"Shucked_weight\": 0.858, \"Viscera_weight\": 0.33899999999999997, \"Shell_weight\": 0.354, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.54, \"Height\": 0.195, \"Whole_weight\": 1.619, \"Shucked_weight\": 0.74, \"Viscera_weight\": 0.3305, \"Shell_weight\": 0.465, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.675, \"Diameter\": 0.525, \"Height\": 0.16, \"Whole_weight\": 1.2835, \"Shucked_weight\": 0.5720000000000001, \"Viscera_weight\": 0.2755, \"Shell_weight\": 0.3545, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.51, \"Height\": 0.195, \"Whole_weight\": 1.382, \"Shucked_weight\": 0.6045, \"Viscera_weight\": 0.3175, \"Shell_weight\": 0.3965, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.68, \"Diameter\": 0.52, \"Height\": 0.195, \"Whole_weight\": 1.4535, \"Shucked_weight\": 0.5920000000000001, \"Viscera_weight\": 0.391, \"Shell_weight\": 0.4125, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.51, \"Height\": 0.2, \"Whole_weight\": 1.6075, \"Shucked_weight\": 0.7140000000000001, \"Viscera_weight\": 0.33899999999999997, \"Shell_weight\": 0.4705, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.685, \"Diameter\": 0.52, \"Height\": 0.15, \"Whole_weight\": 1.3735, \"Shucked_weight\": 0.7185, \"Viscera_weight\": 0.293, \"Shell_weight\": 0.32, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.685, \"Diameter\": 0.565, \"Height\": 0.175, \"Whole_weight\": 1.6380000000000001, \"Shucked_weight\": 0.7775, \"Viscera_weight\": 0.375, \"Shell_weight\": 0.43799999999999994, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.69, \"Diameter\": 0.55, \"Height\": 0.2, \"Whole_weight\": 1.569, \"Shucked_weight\": 0.687, \"Viscera_weight\": 0.3675, \"Shell_weight\": 0.46, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.565, \"Height\": 0.175, \"Whole_weight\": 1.8565, \"Shucked_weight\": 0.8445, \"Viscera_weight\": 0.3935, \"Shell_weight\": 0.54, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.535, \"Height\": 0.175, \"Whole_weight\": 1.7730000000000001, \"Shucked_weight\": 0.6805, \"Viscera_weight\": 0.48, \"Shell_weight\": 0.512, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.705, \"Diameter\": 0.545, \"Height\": 0.17, \"Whole_weight\": 1.58, \"Shucked_weight\": 0.6435, \"Viscera_weight\": 0.4565, \"Shell_weight\": 0.265, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.71, \"Diameter\": 0.575, \"Height\": 0.215, \"Whole_weight\": 2.009, \"Shucked_weight\": 0.9895, \"Viscera_weight\": 0.4475, \"Shell_weight\": 0.502, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.71, \"Diameter\": 0.57, \"Height\": 0.195, \"Whole_weight\": 1.9805, \"Shucked_weight\": 0.9925, \"Viscera_weight\": 0.4925, \"Shell_weight\": 0.48, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.71, \"Diameter\": 0.54, \"Height\": 0.205, \"Whole_weight\": 1.5805, \"Shucked_weight\": 0.802, \"Viscera_weight\": 0.287, \"Shell_weight\": 0.435, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.71, \"Diameter\": 0.56, \"Height\": 0.22, \"Whole_weight\": 2.015, \"Shucked_weight\": 0.9215, \"Viscera_weight\": 0.45399999999999996, \"Shell_weight\": 0.5660000000000001, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.72, \"Diameter\": 0.57, \"Height\": 0.2, \"Whole_weight\": 1.8275, \"Shucked_weight\": 0.919, \"Viscera_weight\": 0.366, \"Shell_weight\": 0.485, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.72, \"Diameter\": 0.55, \"Height\": 0.205, \"Whole_weight\": 2.125, \"Shucked_weight\": 1.1455, \"Viscera_weight\": 0.4425, \"Shell_weight\": 0.511, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.525, \"Height\": 0.18, \"Whole_weight\": 1.445, \"Shucked_weight\": 0.631, \"Viscera_weight\": 0.3215, \"Shell_weight\": 0.435, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.725, \"Diameter\": 0.565, \"Height\": 0.21, \"Whole_weight\": 2.1425, \"Shucked_weight\": 1.03, \"Viscera_weight\": 0.48700000000000004, \"Shell_weight\": 0.503, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.73, \"Diameter\": 0.56, \"Height\": 0.19, \"Whole_weight\": 1.9425, \"Shucked_weight\": 0.799, \"Viscera_weight\": 0.5195, \"Shell_weight\": 0.5655, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.735, \"Diameter\": 0.59, \"Height\": 0.215, \"Whole_weight\": 1.7469999999999999, \"Shucked_weight\": 0.7275, \"Viscera_weight\": 0.40299999999999997, \"Shell_weight\": 0.557, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.74, \"Diameter\": 0.565, \"Height\": 0.205, \"Whole_weight\": 2.119, \"Shucked_weight\": 0.9655, \"Viscera_weight\": 0.5185, \"Shell_weight\": 0.48200000000000004, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.75, \"Diameter\": 0.565, \"Height\": 0.215, \"Whole_weight\": 1.9380000000000002, \"Shucked_weight\": 0.7735, \"Viscera_weight\": 0.4825, \"Shell_weight\": 0.575, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.75, \"Diameter\": 0.595, \"Height\": 0.205, \"Whole_weight\": 2.2205, \"Shucked_weight\": 1.083, \"Viscera_weight\": 0.42100000000000004, \"Shell_weight\": 0.63, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.77, \"Diameter\": 0.62, \"Height\": 0.195, \"Whole_weight\": 2.5155, \"Shucked_weight\": 1.1155, \"Viscera_weight\": 0.6415, \"Shell_weight\": 0.642, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.775, \"Diameter\": 0.63, \"Height\": 0.25, \"Whole_weight\": 2.7795, \"Shucked_weight\": 1.3485, \"Viscera_weight\": 0.76, \"Shell_weight\": 0.578, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.175, \"Height\": 0.09, \"Whole_weight\": 0.2315, \"Shucked_weight\": 0.096, \"Viscera_weight\": 0.057, \"Shell_weight\": 0.0705, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.245, \"Height\": 0.1, \"Whole_weight\": 0.39399999999999996, \"Shucked_weight\": 0.166, \"Viscera_weight\": 0.091, \"Shell_weight\": 0.1125, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.375, \"Diameter\": 0.27, \"Height\": 0.135, \"Whole_weight\": 0.597, \"Shucked_weight\": 0.272, \"Viscera_weight\": 0.131, \"Shell_weight\": 0.1675, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.39, \"Diameter\": 0.28, \"Height\": 0.125, \"Whole_weight\": 0.564, \"Shucked_weight\": 0.3035, \"Viscera_weight\": 0.0955, \"Shell_weight\": 0.14300000000000002, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.3, \"Height\": 0.12, \"Whole_weight\": 0.5965, \"Shucked_weight\": 0.259, \"Viscera_weight\": 0.139, \"Shell_weight\": 0.1645, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.445, \"Diameter\": 0.32, \"Height\": 0.12, \"Whole_weight\": 0.414, \"Shucked_weight\": 0.19899999999999998, \"Viscera_weight\": 0.09, \"Shell_weight\": 0.11699999999999999, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.335, \"Height\": 0.105, \"Whole_weight\": 0.42200000000000004, \"Shucked_weight\": 0.22899999999999998, \"Viscera_weight\": 0.0865, \"Shell_weight\": 0.1, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.325, \"Height\": 0.135, \"Whole_weight\": 0.82, \"Shucked_weight\": 0.4005, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.21100000000000002, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.345, \"Height\": 0.11, \"Whole_weight\": 0.434, \"Shucked_weight\": 0.207, \"Viscera_weight\": 0.0855, \"Shell_weight\": 0.1215, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.325, \"Height\": 0.14, \"Whole_weight\": 0.7615, \"Shucked_weight\": 0.36200000000000004, \"Viscera_weight\": 0.1535, \"Shell_weight\": 0.209, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.36, \"Height\": 0.115, \"Whole_weight\": 0.5795, \"Shucked_weight\": 0.295, \"Viscera_weight\": 0.1395, \"Shell_weight\": 0.12, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.365, \"Height\": 0.105, \"Whole_weight\": 0.5205, \"Shucked_weight\": 0.195, \"Viscera_weight\": 0.12300000000000001, \"Shell_weight\": 0.182, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.485, \"Diameter\": 0.37, \"Height\": 0.155, \"Whole_weight\": 0.968, \"Shucked_weight\": 0.419, \"Viscera_weight\": 0.2455, \"Shell_weight\": 0.2365, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.345, \"Height\": 0.16, \"Whole_weight\": 0.8690000000000001, \"Shucked_weight\": 0.3085, \"Viscera_weight\": 0.185, \"Shell_weight\": 0.319, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.355, \"Height\": 0.16, \"Whole_weight\": 0.8795, \"Shucked_weight\": 0.3485, \"Viscera_weight\": 0.215, \"Shell_weight\": 0.2825, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.37, \"Height\": 0.15, \"Whole_weight\": 1.0615, \"Shucked_weight\": 0.494, \"Viscera_weight\": 0.223, \"Shell_weight\": 0.29600000000000004, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.35, \"Height\": 0.155, \"Whole_weight\": 0.9225, \"Shucked_weight\": 0.4185, \"Viscera_weight\": 0.198, \"Shell_weight\": 0.273, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.395, \"Height\": 0.135, \"Whole_weight\": 1.0070000000000001, \"Shucked_weight\": 0.47200000000000003, \"Viscera_weight\": 0.2495, \"Shell_weight\": 0.252, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.365, \"Height\": 0.17, \"Whole_weight\": 0.9605, \"Shucked_weight\": 0.43799999999999994, \"Viscera_weight\": 0.2225, \"Shell_weight\": 0.276, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.38, \"Height\": 0.125, \"Whole_weight\": 0.65, \"Shucked_weight\": 0.303, \"Viscera_weight\": 0.155, \"Shell_weight\": 0.159, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.41, \"Height\": 0.14, \"Whole_weight\": 0.7545, \"Shucked_weight\": 0.3495, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.2105, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.425, \"Height\": 0.135, \"Whole_weight\": 0.7709999999999999, \"Shucked_weight\": 0.3765, \"Viscera_weight\": 0.1815, \"Shell_weight\": 0.1795, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.385, \"Height\": 0.18, \"Whole_weight\": 1.0835, \"Shucked_weight\": 0.4955, \"Viscera_weight\": 0.2295, \"Shell_weight\": 0.304, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.545, \"Diameter\": 0.42, \"Height\": 0.165, \"Whole_weight\": 0.8935, \"Shucked_weight\": 0.4235, \"Viscera_weight\": 0.2195, \"Shell_weight\": 0.228, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.415, \"Height\": 0.2, \"Whole_weight\": 1.358, \"Shucked_weight\": 0.5670000000000001, \"Viscera_weight\": 0.318, \"Shell_weight\": 0.40299999999999997, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.385, \"Height\": 0.15, \"Whole_weight\": 1.1185, \"Shucked_weight\": 0.5425, \"Viscera_weight\": 0.2445, \"Shell_weight\": 0.2845, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.38, \"Height\": 0.165, \"Whole_weight\": 1.205, \"Shucked_weight\": 0.5429999999999999, \"Viscera_weight\": 0.294, \"Shell_weight\": 0.3345, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.42, \"Height\": 0.16, \"Whole_weight\": 1.3405, \"Shucked_weight\": 0.6325, \"Viscera_weight\": 0.311, \"Shell_weight\": 0.344, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.455, \"Height\": 0.175, \"Whole_weight\": 1.02, \"Shucked_weight\": 0.4805, \"Viscera_weight\": 0.2145, \"Shell_weight\": 0.29, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.44, \"Height\": 0.185, \"Whole_weight\": 1.025, \"Shucked_weight\": 0.5075, \"Viscera_weight\": 0.2245, \"Shell_weight\": 0.2485, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.13, \"Whole_weight\": 0.8145, \"Shucked_weight\": 0.40299999999999997, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.213, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.43, \"Height\": 0.17, \"Whole_weight\": 1.48, \"Shucked_weight\": 0.6535, \"Viscera_weight\": 0.324, \"Shell_weight\": 0.4155, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.455, \"Height\": 0.145, \"Whole_weight\": 0.953, \"Shucked_weight\": 0.3945, \"Viscera_weight\": 0.2685, \"Shell_weight\": 0.258, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.585, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 0.8915, \"Shucked_weight\": 0.3975, \"Viscera_weight\": 0.2035, \"Shell_weight\": 0.253, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.495, \"Height\": 0.175, \"Whole_weight\": 1.3005, \"Shucked_weight\": 0.6195, \"Viscera_weight\": 0.284, \"Shell_weight\": 0.3285, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.465, \"Height\": 0.165, \"Whole_weight\": 1.038, \"Shucked_weight\": 0.4975, \"Viscera_weight\": 0.2205, \"Shell_weight\": 0.251, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.2525, \"Shucked_weight\": 0.5575, \"Viscera_weight\": 0.3055, \"Shell_weight\": 0.34299999999999997, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 1.15, \"Shucked_weight\": 0.575, \"Viscera_weight\": 0.23199999999999998, \"Shell_weight\": 0.297, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 1.1135, \"Shucked_weight\": 0.5195, \"Viscera_weight\": 0.2575, \"Shell_weight\": 0.3005, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.455, \"Height\": 0.145, \"Whole_weight\": 1.1155, \"Shucked_weight\": 0.5045, \"Viscera_weight\": 0.23800000000000002, \"Shell_weight\": 0.315, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.47, \"Height\": 0.145, \"Whole_weight\": 1.0865, \"Shucked_weight\": 0.511, \"Viscera_weight\": 0.2715, \"Shell_weight\": 0.2565, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.495, \"Height\": 0.175, \"Whole_weight\": 1.254, \"Shucked_weight\": 0.5815, \"Viscera_weight\": 0.28600000000000003, \"Shell_weight\": 0.3185, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.185, \"Whole_weight\": 1.169, \"Shucked_weight\": 0.5275, \"Viscera_weight\": 0.2535, \"Shell_weight\": 0.344, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.495, \"Height\": 0.195, \"Whole_weight\": 1.172, \"Shucked_weight\": 0.445, \"Viscera_weight\": 0.3115, \"Shell_weight\": 0.3475, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 1.1845, \"Shucked_weight\": 0.5329999999999999, \"Viscera_weight\": 0.307, \"Shell_weight\": 0.29100000000000004, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.475, \"Height\": 0.14, \"Whole_weight\": 1.0725, \"Shucked_weight\": 0.4895, \"Viscera_weight\": 0.2295, \"Shell_weight\": 0.31, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.16, \"Whole_weight\": 1.3815, \"Shucked_weight\": 0.672, \"Viscera_weight\": 0.326, \"Shell_weight\": 0.315, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.525, \"Height\": 0.19, \"Whole_weight\": 1.6125, \"Shucked_weight\": 0.777, \"Viscera_weight\": 0.3685, \"Shell_weight\": 0.3965, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.485, \"Height\": 0.16, \"Whole_weight\": 1.7395, \"Shucked_weight\": 0.5715, \"Viscera_weight\": 0.2785, \"Shell_weight\": 0.3075, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.52, \"Height\": 0.2, \"Whole_weight\": 1.5475, \"Shucked_weight\": 0.713, \"Viscera_weight\": 0.314, \"Shell_weight\": 0.466, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.545, \"Height\": 0.19, \"Whole_weight\": 1.4245, \"Shucked_weight\": 0.6325, \"Viscera_weight\": 0.33299999999999996, \"Shell_weight\": 0.37799999999999995, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.515, \"Height\": 0.185, \"Whole_weight\": 1.3405, \"Shucked_weight\": 0.5595, \"Viscera_weight\": 0.293, \"Shell_weight\": 0.4375, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.53, \"Height\": 0.175, \"Whole_weight\": 1.4465, \"Shucked_weight\": 0.6775, \"Viscera_weight\": 0.33, \"Shell_weight\": 0.389, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.685, \"Diameter\": 0.535, \"Height\": 0.175, \"Whole_weight\": 1.5845, \"Shucked_weight\": 0.7175, \"Viscera_weight\": 0.3775, \"Shell_weight\": 0.4215, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.695, \"Diameter\": 0.55, \"Height\": 0.185, \"Whole_weight\": 1.679, \"Shucked_weight\": 0.805, \"Viscera_weight\": 0.4015, \"Shell_weight\": 0.3965, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.695, \"Diameter\": 0.53, \"Height\": 0.19, \"Whole_weight\": 1.726, \"Shucked_weight\": 0.7625, \"Viscera_weight\": 0.436, \"Shell_weight\": 0.455, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.705, \"Diameter\": 0.545, \"Height\": 0.18, \"Whole_weight\": 1.5395, \"Shucked_weight\": 0.6075, \"Viscera_weight\": 0.3675, \"Shell_weight\": 0.4645, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.55, \"Height\": 0.195, \"Whole_weight\": 2.073, \"Shucked_weight\": 1.0715, \"Viscera_weight\": 0.4265, \"Shell_weight\": 0.5015, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.72, \"Diameter\": 0.56, \"Height\": 0.18, \"Whole_weight\": 1.5865, \"Shucked_weight\": 0.691, \"Viscera_weight\": 0.375, \"Shell_weight\": 0.4425, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.73, \"Diameter\": 0.575, \"Height\": 0.21, \"Whole_weight\": 2.069, \"Shucked_weight\": 0.9285, \"Viscera_weight\": 0.409, \"Shell_weight\": 0.643, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.185, \"Diameter\": 0.135, \"Height\": 0.04, \"Whole_weight\": 0.027000000000000003, \"Shucked_weight\": 0.0105, \"Viscera_weight\": 0.0055, \"Shell_weight\": 0.009000000000000001, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.24, \"Diameter\": 0.18, \"Height\": 0.055, \"Whole_weight\": 0.0555, \"Shucked_weight\": 0.0235, \"Viscera_weight\": 0.013000000000000001, \"Shell_weight\": 0.018000000000000002, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.31, \"Diameter\": 0.215, \"Height\": 0.075, \"Whole_weight\": 0.1275, \"Shucked_weight\": 0.0565, \"Viscera_weight\": 0.0275, \"Shell_weight\": 0.036000000000000004, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.34, \"Diameter\": 0.26, \"Height\": 0.085, \"Whole_weight\": 0.1885, \"Shucked_weight\": 0.0815, \"Viscera_weight\": 0.0335, \"Shell_weight\": 0.06, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.265, \"Height\": 0.08, \"Whole_weight\": 0.2, \"Shucked_weight\": 0.09, \"Viscera_weight\": 0.042, \"Shell_weight\": 0.06, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.27, \"Height\": 0.085, \"Whole_weight\": 0.19699999999999998, \"Shucked_weight\": 0.0815, \"Viscera_weight\": 0.0325, \"Shell_weight\": 0.065, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.275, \"Height\": 0.085, \"Whole_weight\": 0.223, \"Shucked_weight\": 0.098, \"Viscera_weight\": 0.0375, \"Shell_weight\": 0.075, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.27, \"Height\": 0.075, \"Whole_weight\": 0.2215, \"Shucked_weight\": 0.095, \"Viscera_weight\": 0.0445, \"Shell_weight\": 0.07, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.31, \"Height\": 0.105, \"Whole_weight\": 0.2665, \"Shucked_weight\": 0.1185, \"Viscera_weight\": 0.0525, \"Shell_weight\": 0.081, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.26899999999999996, \"Shucked_weight\": 0.10300000000000001, \"Viscera_weight\": 0.067, \"Shell_weight\": 0.11, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.315, \"Height\": 0.095, \"Whole_weight\": 0.2805, \"Shucked_weight\": 0.114, \"Viscera_weight\": 0.0345, \"Shell_weight\": 0.11, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.335, \"Height\": 0.105, \"Whole_weight\": 0.3305, \"Shucked_weight\": 0.1405, \"Viscera_weight\": 0.064, \"Shell_weight\": 0.105, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.31, \"Height\": 0.09, \"Whole_weight\": 0.2815, \"Shucked_weight\": 0.1245, \"Viscera_weight\": 0.0615, \"Shell_weight\": 0.085, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.31, \"Height\": 0.1, \"Whole_weight\": 0.2805, \"Shucked_weight\": 0.114, \"Viscera_weight\": 0.0565, \"Shell_weight\": 0.0975, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.31, \"Height\": 0.095, \"Whole_weight\": 0.311, \"Shucked_weight\": 0.1125, \"Viscera_weight\": 0.0625, \"Shell_weight\": 0.115, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.368, \"Shucked_weight\": 0.1675, \"Viscera_weight\": 0.0625, \"Shell_weight\": 0.1135, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.34, \"Height\": 0.1, \"Whole_weight\": 0.3405, \"Shucked_weight\": 0.1395, \"Viscera_weight\": 0.0665, \"Shell_weight\": 0.12, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.335, \"Height\": 0.1, \"Whole_weight\": 0.3245, \"Shucked_weight\": 0.135, \"Viscera_weight\": 0.0785, \"Shell_weight\": 0.098, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.33, \"Height\": 0.11, \"Whole_weight\": 0.38, \"Shucked_weight\": 0.1515, \"Viscera_weight\": 0.0945, \"Shell_weight\": 0.11, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.33, \"Height\": 0.105, \"Whole_weight\": 0.335, \"Shucked_weight\": 0.156, \"Viscera_weight\": 0.0555, \"Shell_weight\": 0.105, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.345, \"Height\": 0.12, \"Whole_weight\": 0.3215, \"Shucked_weight\": 0.13, \"Viscera_weight\": 0.055999999999999994, \"Shell_weight\": 0.1185, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.33, \"Height\": 0.11, \"Whole_weight\": 0.358, \"Shucked_weight\": 0.1525, \"Viscera_weight\": 0.067, \"Shell_weight\": 0.1185, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.37, \"Height\": 0.11, \"Whole_weight\": 0.445, \"Shucked_weight\": 0.1635, \"Viscera_weight\": 0.096, \"Shell_weight\": 0.166, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.48700000000000004, \"Shucked_weight\": 0.196, \"Viscera_weight\": 0.099, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.34, \"Height\": 0.105, \"Whole_weight\": 0.4535, \"Shucked_weight\": 0.203, \"Viscera_weight\": 0.08, \"Shell_weight\": 0.1465, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.385, \"Height\": 0.13, \"Whole_weight\": 0.568, \"Shucked_weight\": 0.2505, \"Viscera_weight\": 0.17800000000000002, \"Shell_weight\": 0.154, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.36, \"Height\": 0.12, \"Whole_weight\": 0.5155, \"Shucked_weight\": 0.2465, \"Viscera_weight\": 0.1025, \"Shell_weight\": 0.147, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.37, \"Height\": 0.115, \"Whole_weight\": 0.457, \"Shucked_weight\": 0.1885, \"Viscera_weight\": 0.0965, \"Shell_weight\": 0.15, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.5095, \"Shucked_weight\": 0.2065, \"Viscera_weight\": 0.1165, \"Shell_weight\": 0.165, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.38, \"Height\": 0.145, \"Whole_weight\": 0.5, \"Shucked_weight\": 0.205, \"Viscera_weight\": 0.14800000000000002, \"Shell_weight\": 0.1505, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.375, \"Height\": 0.14, \"Whole_weight\": 0.494, \"Shucked_weight\": 0.18100000000000002, \"Viscera_weight\": 0.0975, \"Shell_weight\": 0.191, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.38, \"Height\": 0.11, \"Whole_weight\": 0.5605, \"Shucked_weight\": 0.28, \"Viscera_weight\": 0.106, \"Shell_weight\": 0.15, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.405, \"Height\": 0.13, \"Whole_weight\": 0.599, \"Shucked_weight\": 0.2245, \"Viscera_weight\": 0.1175, \"Shell_weight\": 0.225, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.4, \"Height\": 0.145, \"Whole_weight\": 0.7045, \"Shucked_weight\": 0.33399999999999996, \"Viscera_weight\": 0.1425, \"Shell_weight\": 0.207, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.51, \"Diameter\": 0.4, \"Height\": 0.12, \"Whole_weight\": 0.7005, \"Shucked_weight\": 0.34700000000000003, \"Viscera_weight\": 0.1105, \"Shell_weight\": 0.195, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.415, \"Height\": 0.135, \"Whole_weight\": 0.7125, \"Shucked_weight\": 0.285, \"Viscera_weight\": 0.152, \"Shell_weight\": 0.245, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.42, \"Height\": 0.15, \"Whole_weight\": 0.6725, \"Shucked_weight\": 0.2555, \"Viscera_weight\": 0.1335, \"Shell_weight\": 0.235, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.385, \"Height\": 0.11, \"Whole_weight\": 0.5785, \"Shucked_weight\": 0.253, \"Viscera_weight\": 0.16, \"Shell_weight\": 0.14, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.41, \"Height\": 0.11, \"Whole_weight\": 0.5185, \"Shucked_weight\": 0.2165, \"Viscera_weight\": 0.0915, \"Shell_weight\": 0.184, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.415, \"Height\": 0.14, \"Whole_weight\": 0.6375, \"Shucked_weight\": 0.308, \"Viscera_weight\": 0.1335, \"Shell_weight\": 0.168, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.395, \"Height\": 0.125, \"Whole_weight\": 0.5805, \"Shucked_weight\": 0.2445, \"Viscera_weight\": 0.146, \"Shell_weight\": 0.165, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.38, \"Height\": 0.115, \"Whole_weight\": 0.6645, \"Shucked_weight\": 0.3285, \"Viscera_weight\": 0.17, \"Shell_weight\": 0.1425, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.385, \"Height\": 0.115, \"Whole_weight\": 0.581, \"Shucked_weight\": 0.2555, \"Viscera_weight\": 0.156, \"Shell_weight\": 0.14300000000000002, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.415, \"Height\": 0.12, \"Whole_weight\": 0.596, \"Shucked_weight\": 0.2805, \"Viscera_weight\": 0.12, \"Shell_weight\": 0.1695, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.405, \"Height\": 0.145, \"Whole_weight\": 0.6965, \"Shucked_weight\": 0.3045, \"Viscera_weight\": 0.1535, \"Shell_weight\": 0.21, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.145, \"Whole_weight\": 0.6095, \"Shucked_weight\": 0.248, \"Viscera_weight\": 0.159, \"Shell_weight\": 0.175, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.43, \"Height\": 0.14, \"Whole_weight\": 0.677, \"Shucked_weight\": 0.298, \"Viscera_weight\": 0.0965, \"Shell_weight\": 0.23, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.43, \"Height\": 0.16, \"Whole_weight\": 0.7245, \"Shucked_weight\": 0.321, \"Viscera_weight\": 0.1275, \"Shell_weight\": 0.24, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.395, \"Height\": 0.13, \"Whole_weight\": 0.575, \"Shucked_weight\": 0.247, \"Viscera_weight\": 0.115, \"Shell_weight\": 0.183, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.405, \"Height\": 0.12, \"Whole_weight\": 0.632, \"Shucked_weight\": 0.2715, \"Viscera_weight\": 0.14800000000000002, \"Shell_weight\": 0.1875, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.455, \"Height\": 0.14, \"Whole_weight\": 1.0015, \"Shucked_weight\": 0.53, \"Viscera_weight\": 0.1765, \"Shell_weight\": 0.244, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.54, \"Diameter\": 0.425, \"Height\": 0.16, \"Whole_weight\": 0.9455, \"Shucked_weight\": 0.3675, \"Viscera_weight\": 0.2005, \"Shell_weight\": 0.295, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.395, \"Height\": 0.135, \"Whole_weight\": 0.6555, \"Shucked_weight\": 0.2705, \"Viscera_weight\": 0.155, \"Shell_weight\": 0.192, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.39, \"Height\": 0.125, \"Whole_weight\": 0.6255, \"Shucked_weight\": 0.2525, \"Viscera_weight\": 0.158, \"Shell_weight\": 0.19, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.545, \"Diameter\": 0.425, \"Height\": 0.14, \"Whole_weight\": 0.8145, \"Shucked_weight\": 0.305, \"Viscera_weight\": 0.231, \"Shell_weight\": 0.244, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.545, \"Diameter\": 0.43, \"Height\": 0.14, \"Whole_weight\": 0.687, \"Shucked_weight\": 0.2615, \"Viscera_weight\": 0.1405, \"Shell_weight\": 0.25, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.7995, \"Shucked_weight\": 0.295, \"Viscera_weight\": 0.1905, \"Shell_weight\": 0.23800000000000002, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.45, \"Height\": 0.13, \"Whole_weight\": 0.804, \"Shucked_weight\": 0.3375, \"Viscera_weight\": 0.1405, \"Shell_weight\": 0.23, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.7495, \"Shucked_weight\": 0.341, \"Viscera_weight\": 0.1645, \"Shell_weight\": 0.214, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.41, \"Height\": 0.125, \"Whole_weight\": 0.599, \"Shucked_weight\": 0.2345, \"Viscera_weight\": 0.1465, \"Shell_weight\": 0.19399999999999998, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.7075, \"Shucked_weight\": 0.332, \"Viscera_weight\": 0.1585, \"Shell_weight\": 0.18, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.555, \"Diameter\": 0.45, \"Height\": 0.175, \"Whole_weight\": 0.738, \"Shucked_weight\": 0.304, \"Viscera_weight\": 0.1755, \"Shell_weight\": 0.22, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.455, \"Height\": 0.135, \"Whole_weight\": 0.8370000000000001, \"Shucked_weight\": 0.382, \"Viscera_weight\": 0.171, \"Shell_weight\": 0.235, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.445, \"Height\": 0.165, \"Whole_weight\": 0.8320000000000001, \"Shucked_weight\": 0.3455, \"Viscera_weight\": 0.179, \"Shell_weight\": 0.27899999999999997, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.445, \"Height\": 0.125, \"Whole_weight\": 0.8305, \"Shucked_weight\": 0.3135, \"Viscera_weight\": 0.1785, \"Shell_weight\": 0.23, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.415, \"Height\": 0.125, \"Whole_weight\": 0.667, \"Shucked_weight\": 0.302, \"Viscera_weight\": 0.1545, \"Shell_weight\": 0.185, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.455, \"Height\": 0.155, \"Whole_weight\": 0.9355, \"Shucked_weight\": 0.42100000000000004, \"Viscera_weight\": 0.183, \"Shell_weight\": 0.26, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.565, \"Diameter\": 0.435, \"Height\": 0.145, \"Whole_weight\": 0.8445, \"Shucked_weight\": 0.3975, \"Viscera_weight\": 0.158, \"Shell_weight\": 0.255, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 0.895, \"Shucked_weight\": 0.415, \"Viscera_weight\": 0.195, \"Shell_weight\": 0.24600000000000002, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.565, \"Diameter\": 0.46, \"Height\": 0.155, \"Whole_weight\": 0.8715, \"Shucked_weight\": 0.3755, \"Viscera_weight\": 0.215, \"Shell_weight\": 0.25, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.46, \"Height\": 0.155, \"Whole_weight\": 1.0005, \"Shucked_weight\": 0.45399999999999996, \"Viscera_weight\": 0.205, \"Shell_weight\": 0.265, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.455, \"Height\": 0.155, \"Whole_weight\": 0.8320000000000001, \"Shucked_weight\": 0.3585, \"Viscera_weight\": 0.174, \"Shell_weight\": 0.27699999999999997, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.44, \"Height\": 0.175, \"Whole_weight\": 0.9415, \"Shucked_weight\": 0.3805, \"Viscera_weight\": 0.2285, \"Shell_weight\": 0.28300000000000003, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.415, \"Height\": 0.13, \"Whole_weight\": 0.88, \"Shucked_weight\": 0.4275, \"Viscera_weight\": 0.1955, \"Shell_weight\": 0.23800000000000002, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.44, \"Height\": 0.12, \"Whole_weight\": 0.8029999999999999, \"Shucked_weight\": 0.382, \"Viscera_weight\": 0.1525, \"Shell_weight\": 0.23399999999999999, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.13, \"Whole_weight\": 0.785, \"Shucked_weight\": 0.318, \"Viscera_weight\": 0.193, \"Shell_weight\": 0.2265, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.155, \"Whole_weight\": 0.9765, \"Shucked_weight\": 0.495, \"Viscera_weight\": 0.2145, \"Shell_weight\": 0.235, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.435, \"Height\": 0.135, \"Whole_weight\": 0.992, \"Shucked_weight\": 0.43200000000000005, \"Viscera_weight\": 0.2225, \"Shell_weight\": 0.239, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.455, \"Height\": 0.155, \"Whole_weight\": 1.013, \"Shucked_weight\": 0.4685, \"Viscera_weight\": 0.2085, \"Shell_weight\": 0.295, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.445, \"Height\": 0.145, \"Whole_weight\": 0.8759999999999999, \"Shucked_weight\": 0.3795, \"Viscera_weight\": 0.1615, \"Shell_weight\": 0.27, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.465, \"Height\": 0.175, \"Whole_weight\": 1.099, \"Shucked_weight\": 0.4735, \"Viscera_weight\": 0.20199999999999999, \"Shell_weight\": 0.35, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.135, \"Whole_weight\": 0.8715, \"Shucked_weight\": 0.45, \"Viscera_weight\": 0.162, \"Shell_weight\": 0.225, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.135, \"Whole_weight\": 0.8245, \"Shucked_weight\": 0.3375, \"Viscera_weight\": 0.2115, \"Shell_weight\": 0.239, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.43, \"Height\": 0.155, \"Whole_weight\": 0.7955, \"Shucked_weight\": 0.3485, \"Viscera_weight\": 0.1925, \"Shell_weight\": 0.22, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.475, \"Height\": 0.145, \"Whole_weight\": 0.857, \"Shucked_weight\": 0.3665, \"Viscera_weight\": 0.17300000000000001, \"Shell_weight\": 0.26899999999999996, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.195, \"Whole_weight\": 0.8265, \"Shucked_weight\": 0.4035, \"Viscera_weight\": 0.17300000000000001, \"Shell_weight\": 0.225, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 0.925, \"Shucked_weight\": 0.37, \"Viscera_weight\": 0.185, \"Shell_weight\": 0.3005, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 1.0465, \"Shucked_weight\": 0.518, \"Viscera_weight\": 0.2185, \"Shell_weight\": 0.2795, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.58, \"Diameter\": 0.44, \"Height\": 0.145, \"Whole_weight\": 0.7905, \"Shucked_weight\": 0.3525, \"Viscera_weight\": 0.1645, \"Shell_weight\": 0.242, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.44, \"Height\": 0.16, \"Whole_weight\": 0.8295, \"Shucked_weight\": 0.3365, \"Viscera_weight\": 0.2005, \"Shell_weight\": 0.2485, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 0.8859999999999999, \"Shucked_weight\": 0.4315, \"Viscera_weight\": 0.201, \"Shell_weight\": 0.223, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.47, \"Height\": 0.135, \"Whole_weight\": 0.97, \"Shucked_weight\": 0.4655, \"Viscera_weight\": 0.1955, \"Shell_weight\": 0.264, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.46, \"Height\": 0.17, \"Whole_weight\": 1.1805, \"Shucked_weight\": 0.456, \"Viscera_weight\": 0.337, \"Shell_weight\": 0.32899999999999996, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 0.99, \"Shucked_weight\": 0.386, \"Viscera_weight\": 0.2195, \"Shell_weight\": 0.3105, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.465, \"Height\": 0.16, \"Whole_weight\": 1.133, \"Shucked_weight\": 0.466, \"Viscera_weight\": 0.2885, \"Shell_weight\": 0.298, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.605, \"Diameter\": 0.49, \"Height\": 0.165, \"Whole_weight\": 1.071, \"Shucked_weight\": 0.48200000000000004, \"Viscera_weight\": 0.1935, \"Shell_weight\": 0.35200000000000004, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.455, \"Height\": 0.145, \"Whole_weight\": 0.862, \"Shucked_weight\": 0.33399999999999996, \"Viscera_weight\": 0.1985, \"Shell_weight\": 0.3, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.47, \"Height\": 0.18, \"Whole_weight\": 1.1155, \"Shucked_weight\": 0.479, \"Viscera_weight\": 0.2565, \"Shell_weight\": 0.321, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.48, \"Height\": 0.14, \"Whole_weight\": 1.031, \"Shucked_weight\": 0.4375, \"Viscera_weight\": 0.2615, \"Shell_weight\": 0.27, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.46, \"Height\": 0.145, \"Whole_weight\": 1.1185, \"Shucked_weight\": 0.478, \"Viscera_weight\": 0.2945, \"Shell_weight\": 0.2985, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.46, \"Height\": 0.155, \"Whole_weight\": 0.9570000000000001, \"Shucked_weight\": 0.4255, \"Viscera_weight\": 0.1975, \"Shell_weight\": 0.265, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 1.1785, \"Shucked_weight\": 0.5660000000000001, \"Viscera_weight\": 0.2785, \"Shell_weight\": 0.294, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.47, \"Height\": 0.145, \"Whole_weight\": 1.0285, \"Shucked_weight\": 0.4435, \"Viscera_weight\": 0.2825, \"Shell_weight\": 0.285, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 1.0875, \"Shucked_weight\": 0.4975, \"Viscera_weight\": 0.28300000000000003, \"Shell_weight\": 0.2685, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.495, \"Height\": 0.16, \"Whole_weight\": 1.255, \"Shucked_weight\": 0.5815, \"Viscera_weight\": 0.3195, \"Shell_weight\": 0.3225, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.495, \"Height\": 0.2, \"Whole_weight\": 1.219, \"Shucked_weight\": 0.564, \"Viscera_weight\": 0.22699999999999998, \"Shell_weight\": 0.3885, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.49, \"Height\": 0.16, \"Whole_weight\": 1.035, \"Shucked_weight\": 0.44, \"Viscera_weight\": 0.2525, \"Shell_weight\": 0.285, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.49, \"Height\": 0.15, \"Whole_weight\": 1.195, \"Shucked_weight\": 0.4605, \"Viscera_weight\": 0.302, \"Shell_weight\": 0.355, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.495, \"Height\": 0.17, \"Whole_weight\": 1.062, \"Shucked_weight\": 0.37200000000000005, \"Viscera_weight\": 0.213, \"Shell_weight\": 0.34, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.495, \"Height\": 0.195, \"Whole_weight\": 1.5145, \"Shucked_weight\": 0.579, \"Viscera_weight\": 0.34600000000000003, \"Shell_weight\": 0.5195, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 1.3090000000000002, \"Shucked_weight\": 0.5870000000000001, \"Viscera_weight\": 0.4405, \"Shell_weight\": 0.325, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.485, \"Height\": 0.155, \"Whole_weight\": 1.0295, \"Shucked_weight\": 0.425, \"Viscera_weight\": 0.2315, \"Shell_weight\": 0.335, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.495, \"Height\": 0.155, \"Whole_weight\": 1.0485, \"Shucked_weight\": 0.48700000000000004, \"Viscera_weight\": 0.212, \"Shell_weight\": 0.3215, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.515, \"Height\": 0.17, \"Whole_weight\": 1.331, \"Shucked_weight\": 0.5725, \"Viscera_weight\": 0.3005, \"Shell_weight\": 0.361, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.505, \"Height\": 0.185, \"Whole_weight\": 1.1565, \"Shucked_weight\": 0.52, \"Viscera_weight\": 0.2405, \"Shell_weight\": 0.3535, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.445, \"Height\": 0.16, \"Whole_weight\": 1.09, \"Shucked_weight\": 0.46, \"Viscera_weight\": 0.2965, \"Shell_weight\": 0.304, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.52, \"Height\": 0.18, \"Whole_weight\": 1.354, \"Shucked_weight\": 0.4845, \"Viscera_weight\": 0.35100000000000003, \"Shell_weight\": 0.375, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.47, \"Height\": 0.145, \"Whole_weight\": 0.9840000000000001, \"Shucked_weight\": 0.475, \"Viscera_weight\": 0.2, \"Shell_weight\": 0.265, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.49, \"Height\": 0.155, \"Whole_weight\": 1.2525, \"Shucked_weight\": 0.63, \"Viscera_weight\": 0.24600000000000002, \"Shell_weight\": 0.289, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.485, \"Height\": 0.165, \"Whole_weight\": 1.2695, \"Shucked_weight\": 0.5635, \"Viscera_weight\": 0.3065, \"Shell_weight\": 0.3395, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.52, \"Height\": 0.165, \"Whole_weight\": 1.3405, \"Shucked_weight\": 0.5065, \"Viscera_weight\": 0.29600000000000004, \"Shell_weight\": 0.41200000000000003, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.505, \"Height\": 0.155, \"Whole_weight\": 1.2895, \"Shucked_weight\": 0.594, \"Viscera_weight\": 0.314, \"Shell_weight\": 0.345, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.525, \"Height\": 0.16, \"Whole_weight\": 1.195, \"Shucked_weight\": 0.5435, \"Viscera_weight\": 0.24600000000000002, \"Shell_weight\": 0.335, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.273, \"Shucked_weight\": 0.6535, \"Viscera_weight\": 0.213, \"Shell_weight\": 0.365, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.515, \"Height\": 0.165, \"Whole_weight\": 1.229, \"Shucked_weight\": 0.5055, \"Viscera_weight\": 0.2975, \"Shell_weight\": 0.3535, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.53, \"Height\": 0.165, \"Whole_weight\": 1.1895, \"Shucked_weight\": 0.4765, \"Viscera_weight\": 0.3, \"Shell_weight\": 0.35, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.48, \"Height\": 0.145, \"Whole_weight\": 1.1145, \"Shucked_weight\": 0.508, \"Viscera_weight\": 0.24, \"Shell_weight\": 0.34, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.515, \"Height\": 0.165, \"Whole_weight\": 1.3115, \"Shucked_weight\": 0.4945, \"Viscera_weight\": 0.2555, \"Shell_weight\": 0.41, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.64, \"Diameter\": 0.49, \"Height\": 0.135, \"Whole_weight\": 1.1, \"Shucked_weight\": 0.488, \"Viscera_weight\": 0.2505, \"Shell_weight\": 0.2925, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.49, \"Height\": 0.155, \"Whole_weight\": 1.1285, \"Shucked_weight\": 0.47700000000000004, \"Viscera_weight\": 0.26899999999999996, \"Shell_weight\": 0.34, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.485, \"Height\": 0.185, \"Whole_weight\": 1.4195, \"Shucked_weight\": 0.6735, \"Viscera_weight\": 0.3465, \"Shell_weight\": 0.3255, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.51, \"Height\": 0.18, \"Whole_weight\": 1.6195, \"Shucked_weight\": 0.7815, \"Viscera_weight\": 0.322, \"Shell_weight\": 0.4675, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.49, \"Height\": 0.175, \"Whole_weight\": 1.32, \"Shucked_weight\": 0.6525, \"Viscera_weight\": 0.2375, \"Shell_weight\": 0.3385, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.52, \"Height\": 0.21, \"Whole_weight\": 1.5535, \"Shucked_weight\": 0.616, \"Viscera_weight\": 0.3655, \"Shell_weight\": 0.474, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.65, \"Diameter\": 0.52, \"Height\": 0.15, \"Whole_weight\": 1.238, \"Shucked_weight\": 0.5495, \"Viscera_weight\": 0.29600000000000004, \"Shell_weight\": 0.3305, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.51, \"Height\": 0.155, \"Whole_weight\": 1.189, \"Shucked_weight\": 0.483, \"Viscera_weight\": 0.278, \"Shell_weight\": 0.3645, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.51, \"Height\": 0.185, \"Whole_weight\": 1.375, \"Shucked_weight\": 0.531, \"Viscera_weight\": 0.384, \"Shell_weight\": 0.3985, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.515, \"Height\": 0.18, \"Whole_weight\": 1.412, \"Shucked_weight\": 0.6195, \"Viscera_weight\": 0.2485, \"Shell_weight\": 0.49700000000000005, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.525, \"Height\": 0.175, \"Whole_weight\": 1.348, \"Shucked_weight\": 0.5855, \"Viscera_weight\": 0.2605, \"Shell_weight\": 0.39399999999999996, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.52, \"Height\": 0.17, \"Whole_weight\": 1.1445, \"Shucked_weight\": 0.53, \"Viscera_weight\": 0.223, \"Shell_weight\": 0.348, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.535, \"Height\": 0.205, \"Whole_weight\": 1.4415, \"Shucked_weight\": 0.5925, \"Viscera_weight\": 0.2775, \"Shell_weight\": 0.49, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.218, \"Shucked_weight\": 0.5055, \"Viscera_weight\": 0.303, \"Shell_weight\": 0.37, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.5, \"Height\": 0.15, \"Whole_weight\": 1.2475, \"Shucked_weight\": 0.4625, \"Viscera_weight\": 0.2955, \"Shell_weight\": 0.3595, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.515, \"Height\": 0.2, \"Whole_weight\": 1.2695, \"Shucked_weight\": 0.5115, \"Viscera_weight\": 0.2675, \"Shell_weight\": 0.436, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.525, \"Height\": 0.18, \"Whole_weight\": 1.429, \"Shucked_weight\": 0.6715, \"Viscera_weight\": 0.29, \"Shell_weight\": 0.4, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.53, \"Height\": 0.205, \"Whole_weight\": 1.4015, \"Shucked_weight\": 0.643, \"Viscera_weight\": 0.2465, \"Shell_weight\": 0.41600000000000004, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.675, \"Diameter\": 0.515, \"Height\": 0.15, \"Whole_weight\": 1.3119999999999998, \"Shucked_weight\": 0.556, \"Viscera_weight\": 0.2845, \"Shell_weight\": 0.4115, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.51, \"Height\": 0.185, \"Whole_weight\": 1.473, \"Shucked_weight\": 0.6295, \"Viscera_weight\": 0.3025, \"Shell_weight\": 0.4245, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.68, \"Diameter\": 0.54, \"Height\": 0.19, \"Whole_weight\": 1.6230000000000002, \"Shucked_weight\": 0.7165, \"Viscera_weight\": 0.354, \"Shell_weight\": 0.4715, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.68, \"Diameter\": 0.54, \"Height\": 0.155, \"Whole_weight\": 1.534, \"Shucked_weight\": 0.6709999999999999, \"Viscera_weight\": 0.379, \"Shell_weight\": 0.384, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.685, \"Diameter\": 0.535, \"Height\": 0.155, \"Whole_weight\": 1.3845, \"Shucked_weight\": 0.6615, \"Viscera_weight\": 0.2145, \"Shell_weight\": 0.4075, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.69, \"Diameter\": 0.55, \"Height\": 0.18, \"Whole_weight\": 1.6915, \"Shucked_weight\": 0.6655, \"Viscera_weight\": 0.402, \"Shell_weight\": 0.5, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.695, \"Diameter\": 0.545, \"Height\": 0.185, \"Whole_weight\": 1.5715, \"Shucked_weight\": 0.6645, \"Viscera_weight\": 0.3835, \"Shell_weight\": 0.4505, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.575, \"Height\": 0.205, \"Whole_weight\": 1.7730000000000001, \"Shucked_weight\": 0.605, \"Viscera_weight\": 0.447, \"Shell_weight\": 0.5379999999999999, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.55, \"Height\": 0.175, \"Whole_weight\": 1.4405, \"Shucked_weight\": 0.6565, \"Viscera_weight\": 0.2985, \"Shell_weight\": 0.375, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.55, \"Height\": 0.195, \"Whole_weight\": 1.6245, \"Shucked_weight\": 0.675, \"Viscera_weight\": 0.34700000000000003, \"Shell_weight\": 0.535, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.705, \"Diameter\": 0.535, \"Height\": 0.22, \"Whole_weight\": 1.8659999999999999, \"Shucked_weight\": 0.929, \"Viscera_weight\": 0.3835, \"Shell_weight\": 0.4395, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.575, \"Height\": 0.18, \"Whole_weight\": 1.6705, \"Shucked_weight\": 0.732, \"Viscera_weight\": 0.3605, \"Shell_weight\": 0.501, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.72, \"Diameter\": 0.565, \"Height\": 0.19, \"Whole_weight\": 2.081, \"Shucked_weight\": 1.0815, \"Viscera_weight\": 0.4305, \"Shell_weight\": 0.503, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.725, \"Diameter\": 0.57, \"Height\": 0.205, \"Whole_weight\": 1.6195, \"Shucked_weight\": 0.7440000000000001, \"Viscera_weight\": 0.315, \"Shell_weight\": 0.488, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.75, \"Diameter\": 0.55, \"Height\": 0.195, \"Whole_weight\": 1.8325, \"Shucked_weight\": 0.83, \"Viscera_weight\": 0.366, \"Shell_weight\": 0.44, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.76, \"Diameter\": 0.605, \"Height\": 0.215, \"Whole_weight\": 2.173, \"Shucked_weight\": 0.8009999999999999, \"Viscera_weight\": 0.4915, \"Shell_weight\": 0.6459999999999999, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.135, \"Diameter\": 0.13, \"Height\": 0.04, \"Whole_weight\": 0.028999999999999998, \"Shucked_weight\": 0.0125, \"Viscera_weight\": 0.0065, \"Shell_weight\": 0.008, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.16, \"Diameter\": 0.11, \"Height\": 0.025, \"Whole_weight\": 0.0195, \"Shucked_weight\": 0.0075, \"Viscera_weight\": 0.005, \"Shell_weight\": 0.006, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.21, \"Diameter\": 0.15, \"Height\": 0.055, \"Whole_weight\": 0.0465, \"Shucked_weight\": 0.017, \"Viscera_weight\": 0.012, \"Shell_weight\": 0.015, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.21, \"Height\": 0.075, \"Whole_weight\": 0.1195, \"Shucked_weight\": 0.053, \"Viscera_weight\": 0.0265, \"Shell_weight\": 0.03, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.2, \"Height\": 0.065, \"Whole_weight\": 0.0895, \"Shucked_weight\": 0.036000000000000004, \"Viscera_weight\": 0.0185, \"Shell_weight\": 0.03, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.285, \"Diameter\": 0.215, \"Height\": 0.06, \"Whole_weight\": 0.0935, \"Shucked_weight\": 0.031, \"Viscera_weight\": 0.023, \"Shell_weight\": 0.03, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.29, \"Diameter\": 0.21, \"Height\": 0.07, \"Whole_weight\": 0.1115, \"Shucked_weight\": 0.048, \"Viscera_weight\": 0.0205, \"Shell_weight\": 0.03, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.29, \"Diameter\": 0.21, \"Height\": 0.06, \"Whole_weight\": 0.1195, \"Shucked_weight\": 0.055999999999999994, \"Viscera_weight\": 0.0235, \"Shell_weight\": 0.03, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.29, \"Diameter\": 0.21, \"Height\": 0.065, \"Whole_weight\": 0.09699999999999999, \"Shucked_weight\": 0.0375, \"Viscera_weight\": 0.022000000000000002, \"Shell_weight\": 0.03, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.24, \"Height\": 0.07, \"Whole_weight\": 0.133, \"Shucked_weight\": 0.0585, \"Viscera_weight\": 0.0255, \"Shell_weight\": 0.040999999999999995, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.25, \"Height\": 0.07, \"Whole_weight\": 0.1745, \"Shucked_weight\": 0.0875, \"Viscera_weight\": 0.0355, \"Shell_weight\": 0.04, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.25, \"Height\": 0.08, \"Whole_weight\": 0.1695, \"Shucked_weight\": 0.0695, \"Viscera_weight\": 0.044000000000000004, \"Shell_weight\": 0.0495, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.235, \"Height\": 0.08, \"Whole_weight\": 0.17, \"Shucked_weight\": 0.0725, \"Viscera_weight\": 0.0465, \"Shell_weight\": 0.0495, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.25, \"Height\": 0.07, \"Whole_weight\": 0.1605, \"Shucked_weight\": 0.0715, \"Viscera_weight\": 0.0335, \"Shell_weight\": 0.046, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.27, \"Height\": 0.105, \"Whole_weight\": 0.271, \"Shucked_weight\": 0.1425, \"Viscera_weight\": 0.0525, \"Shell_weight\": 0.0735, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.27, \"Height\": 0.085, \"Whole_weight\": 0.2185, \"Shucked_weight\": 0.1065, \"Viscera_weight\": 0.038, \"Shell_weight\": 0.062, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.27, \"Height\": 0.085, \"Whole_weight\": 0.196, \"Shucked_weight\": 0.0905, \"Viscera_weight\": 0.034, \"Shell_weight\": 0.053, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.28, \"Height\": 0.08, \"Whole_weight\": 0.226, \"Shucked_weight\": 0.105, \"Viscera_weight\": 0.047, \"Shell_weight\": 0.065, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.275, \"Height\": 0.085, \"Whole_weight\": 0.22, \"Shucked_weight\": 0.109, \"Viscera_weight\": 0.05, \"Shell_weight\": 0.0605, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.29, \"Height\": 0.095, \"Whole_weight\": 0.3, \"Shucked_weight\": 0.158, \"Viscera_weight\": 0.068, \"Shell_weight\": 0.078, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.25, \"Height\": 0.09, \"Whole_weight\": 0.2875, \"Shucked_weight\": 0.128, \"Viscera_weight\": 0.063, \"Shell_weight\": 0.0805, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.325, \"Height\": 0.11, \"Whole_weight\": 0.316, \"Shucked_weight\": 0.1385, \"Viscera_weight\": 0.0795, \"Shell_weight\": 0.0925, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.315, \"Height\": 0.095, \"Whole_weight\": 0.3675, \"Shucked_weight\": 0.1865, \"Viscera_weight\": 0.0675, \"Shell_weight\": 0.0985, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.32, \"Height\": 0.11, \"Whole_weight\": 0.3675, \"Shucked_weight\": 0.1675, \"Viscera_weight\": 0.102, \"Shell_weight\": 0.105, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.325, \"Height\": 0.12, \"Whole_weight\": 0.34600000000000003, \"Shucked_weight\": 0.159, \"Viscera_weight\": 0.084, \"Shell_weight\": 0.095, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.33, \"Height\": 0.105, \"Whole_weight\": 0.4955, \"Shucked_weight\": 0.2575, \"Viscera_weight\": 0.08199999999999999, \"Shell_weight\": 0.129, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.35, \"Height\": 0.11, \"Whole_weight\": 0.4675, \"Shucked_weight\": 0.2125, \"Viscera_weight\": 0.099, \"Shell_weight\": 0.1375, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.365, \"Height\": 0.135, \"Whole_weight\": 0.522, \"Shucked_weight\": 0.2395, \"Viscera_weight\": 0.1525, \"Shell_weight\": 0.145, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.375, \"Height\": 0.105, \"Whole_weight\": 0.441, \"Shucked_weight\": 0.16699999999999998, \"Viscera_weight\": 0.0865, \"Shell_weight\": 0.145, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.365, \"Height\": 0.12, \"Whole_weight\": 0.5185, \"Shucked_weight\": 0.268, \"Viscera_weight\": 0.1095, \"Shell_weight\": 0.1365, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.39, \"Height\": 0.12, \"Whole_weight\": 0.653, \"Shucked_weight\": 0.3315, \"Viscera_weight\": 0.1385, \"Shell_weight\": 0.16699999999999998, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.395, \"Height\": 0.135, \"Whole_weight\": 0.5915, \"Shucked_weight\": 0.28800000000000003, \"Viscera_weight\": 0.1315, \"Shell_weight\": 0.185, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.385, \"Height\": 0.115, \"Whole_weight\": 0.4825, \"Shucked_weight\": 0.21, \"Viscera_weight\": 0.1035, \"Shell_weight\": 0.1535, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.455, \"Height\": 0.135, \"Whole_weight\": 0.6855, \"Shucked_weight\": 0.2875, \"Viscera_weight\": 0.154, \"Shell_weight\": 0.2035, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.4, \"Height\": 0.14, \"Whole_weight\": 0.6335, \"Shucked_weight\": 0.28800000000000003, \"Viscera_weight\": 0.145, \"Shell_weight\": 0.168, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.41, \"Height\": 0.13, \"Whole_weight\": 0.6875, \"Shucked_weight\": 0.3435, \"Viscera_weight\": 0.1495, \"Shell_weight\": 0.1765, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.741, \"Shucked_weight\": 0.325, \"Viscera_weight\": 0.1855, \"Shell_weight\": 0.196, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.405, \"Height\": 0.13, \"Whole_weight\": 0.6355, \"Shucked_weight\": 0.2635, \"Viscera_weight\": 0.1565, \"Shell_weight\": 0.185, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.44, \"Height\": 0.14, \"Whole_weight\": 0.8395, \"Shucked_weight\": 0.35600000000000004, \"Viscera_weight\": 0.1905, \"Shell_weight\": 0.2385, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 0.9205, \"Shucked_weight\": 0.381, \"Viscera_weight\": 0.2435, \"Shell_weight\": 0.2675, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.41, \"Height\": 0.16, \"Whole_weight\": 0.8215, \"Shucked_weight\": 0.342, \"Viscera_weight\": 0.184, \"Shell_weight\": 0.253, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.445, \"Height\": 0.145, \"Whole_weight\": 0.9255, \"Shucked_weight\": 0.4345, \"Viscera_weight\": 0.212, \"Shell_weight\": 0.2475, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.435, \"Height\": 0.15, \"Whole_weight\": 0.8295, \"Shucked_weight\": 0.3875, \"Viscera_weight\": 0.156, \"Shell_weight\": 0.245, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.16, \"Whole_weight\": 1.063, \"Shucked_weight\": 0.513, \"Viscera_weight\": 0.2705, \"Shell_weight\": 0.2625, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.465, \"Height\": 0.165, \"Whole_weight\": 1.115, \"Shucked_weight\": 0.5165, \"Viscera_weight\": 0.273, \"Shell_weight\": 0.275, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.45, \"Height\": 0.14, \"Whole_weight\": 0.8370000000000001, \"Shucked_weight\": 0.37, \"Viscera_weight\": 0.177, \"Shell_weight\": 0.2425, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.445, \"Height\": 0.14, \"Whole_weight\": 0.982, \"Shucked_weight\": 0.4295, \"Viscera_weight\": 0.2085, \"Shell_weight\": 0.295, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.49, \"Height\": 0.16, \"Whole_weight\": 1.112, \"Shucked_weight\": 0.465, \"Viscera_weight\": 0.228, \"Shell_weight\": 0.341, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.515, \"Height\": 0.18, \"Whole_weight\": 1.3485, \"Shucked_weight\": 0.5255, \"Viscera_weight\": 0.252, \"Shell_weight\": 0.3925, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.515, \"Height\": 0.195, \"Whole_weight\": 1.5655, \"Shucked_weight\": 0.7345, \"Viscera_weight\": 0.353, \"Shell_weight\": 0.386, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.255, \"Diameter\": 0.19, \"Height\": 0.06, \"Whole_weight\": 0.086, \"Shucked_weight\": 0.04, \"Viscera_weight\": 0.0185, \"Shell_weight\": 0.025, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.27, \"Diameter\": 0.195, \"Height\": 0.065, \"Whole_weight\": 0.1065, \"Shucked_weight\": 0.0475, \"Viscera_weight\": 0.0225, \"Shell_weight\": 0.0285, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.215, \"Height\": 0.08, \"Whole_weight\": 0.132, \"Shucked_weight\": 0.07200000000000001, \"Viscera_weight\": 0.022000000000000002, \"Shell_weight\": 0.033, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.285, \"Diameter\": 0.215, \"Height\": 0.07, \"Whole_weight\": 0.1075, \"Shucked_weight\": 0.051, \"Viscera_weight\": 0.0225, \"Shell_weight\": 0.027000000000000003, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.255, \"Height\": 0.085, \"Whole_weight\": 0.1745, \"Shucked_weight\": 0.07200000000000001, \"Viscera_weight\": 0.033, \"Shell_weight\": 0.057, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.24, \"Height\": 0.07, \"Whole_weight\": 0.152, \"Shucked_weight\": 0.0565, \"Viscera_weight\": 0.0305, \"Shell_weight\": 0.054000000000000006, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.28, \"Height\": 0.1, \"Whole_weight\": 0.2755, \"Shucked_weight\": 0.1305, \"Viscera_weight\": 0.061, \"Shell_weight\": 0.0725, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.295, \"Height\": 0.1, \"Whole_weight\": 0.293, \"Shucked_weight\": 0.14, \"Viscera_weight\": 0.062, \"Shell_weight\": 0.08199999999999999, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.4, \"Diameter\": 0.305, \"Height\": 0.16, \"Whole_weight\": 0.368, \"Shucked_weight\": 0.17300000000000001, \"Viscera_weight\": 0.0705, \"Shell_weight\": 0.105, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.31, \"Height\": 0.09, \"Whole_weight\": 0.312, \"Shucked_weight\": 0.138, \"Viscera_weight\": 0.06, \"Shell_weight\": 0.087, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.305, \"Height\": 0.12, \"Whole_weight\": 0.336, \"Shucked_weight\": 0.165, \"Viscera_weight\": 0.076, \"Shell_weight\": 0.0805, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.315, \"Height\": 0.115, \"Whole_weight\": 0.355, \"Shucked_weight\": 0.1895, \"Viscera_weight\": 0.065, \"Shell_weight\": 0.087, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.305, \"Height\": 0.115, \"Whole_weight\": 0.379, \"Shucked_weight\": 0.162, \"Viscera_weight\": 0.091, \"Shell_weight\": 0.11, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.32, \"Height\": 0.12, \"Whole_weight\": 0.37799999999999995, \"Shucked_weight\": 0.152, \"Viscera_weight\": 0.0825, \"Shell_weight\": 0.12, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.35, \"Height\": 0.13, \"Whole_weight\": 0.4655, \"Shucked_weight\": 0.2075, \"Viscera_weight\": 0.1045, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.455, \"Diameter\": 0.355, \"Height\": 1.13, \"Whole_weight\": 0.594, \"Shucked_weight\": 0.332, \"Viscera_weight\": 0.11599999999999999, \"Shell_weight\": 0.1335, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.345, \"Height\": 0.12, \"Whole_weight\": 0.4935, \"Shucked_weight\": 0.2435, \"Viscera_weight\": 0.1175, \"Shell_weight\": 0.132, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.345, \"Height\": 0.11, \"Whole_weight\": 0.4595, \"Shucked_weight\": 0.235, \"Viscera_weight\": 0.0885, \"Shell_weight\": 0.11599999999999999, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.36, \"Height\": 0.11, \"Whole_weight\": 0.4955, \"Shucked_weight\": 0.2665, \"Viscera_weight\": 0.085, \"Shell_weight\": 0.121, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.355, \"Height\": 0.09, \"Whole_weight\": 0.4325, \"Shucked_weight\": 0.2005, \"Viscera_weight\": 0.07400000000000001, \"Shell_weight\": 0.1275, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.38, \"Height\": 0.14, \"Whole_weight\": 0.6890000000000001, \"Shucked_weight\": 0.3165, \"Viscera_weight\": 0.1315, \"Shell_weight\": 0.1955, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.35, \"Height\": 0.135, \"Whole_weight\": 0.5465, \"Shucked_weight\": 0.2735, \"Viscera_weight\": 0.0995, \"Shell_weight\": 0.158, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.485, \"Diameter\": 0.39, \"Height\": 0.135, \"Whole_weight\": 0.617, \"Shucked_weight\": 0.25, \"Viscera_weight\": 0.1345, \"Shell_weight\": 0.1635, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.49, \"Diameter\": 0.37, \"Height\": 0.11, \"Whole_weight\": 0.5379999999999999, \"Shucked_weight\": 0.271, \"Viscera_weight\": 0.1035, \"Shell_weight\": 0.139, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.39, \"Height\": 0.135, \"Whole_weight\": 0.7815, \"Shucked_weight\": 0.361, \"Viscera_weight\": 0.1575, \"Shell_weight\": 0.2385, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.38, \"Height\": 0.14, \"Whole_weight\": 0.6355, \"Shucked_weight\": 0.27699999999999997, \"Viscera_weight\": 0.14300000000000002, \"Shell_weight\": 0.1785, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.385, \"Height\": 0.13, \"Whole_weight\": 0.6435, \"Shucked_weight\": 0.3135, \"Viscera_weight\": 0.149, \"Shell_weight\": 0.1515, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.385, \"Height\": 0.1, \"Whole_weight\": 0.5115, \"Shucked_weight\": 0.24600000000000002, \"Viscera_weight\": 0.1005, \"Shell_weight\": 0.1455, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.42, \"Height\": 0.125, \"Whole_weight\": 0.738, \"Shucked_weight\": 0.355, \"Viscera_weight\": 0.1895, \"Shell_weight\": 0.1795, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.42, \"Height\": 0.13, \"Whole_weight\": 0.6990000000000001, \"Shucked_weight\": 0.3125, \"Viscera_weight\": 0.1565, \"Shell_weight\": 0.2035, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.54, \"Diameter\": 0.385, \"Height\": 0.14, \"Whole_weight\": 0.7655, \"Shucked_weight\": 0.3265, \"Viscera_weight\": 0.11599999999999999, \"Shell_weight\": 0.2365, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.54, \"Diameter\": 0.42, \"Height\": 0.13, \"Whole_weight\": 0.7505, \"Shucked_weight\": 0.368, \"Viscera_weight\": 0.1675, \"Shell_weight\": 0.1845, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.43, \"Height\": 0.16, \"Whole_weight\": 0.8440000000000001, \"Shucked_weight\": 0.3945, \"Viscera_weight\": 0.1855, \"Shell_weight\": 0.231, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.41, \"Height\": 0.13, \"Whole_weight\": 0.8705, \"Shucked_weight\": 0.4455, \"Viscera_weight\": 0.2115, \"Shell_weight\": 0.213, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.42, \"Height\": 0.115, \"Whole_weight\": 0.6679999999999999, \"Shucked_weight\": 0.2925, \"Viscera_weight\": 0.13699999999999998, \"Shell_weight\": 0.209, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.135, \"Whole_weight\": 0.83, \"Shucked_weight\": 0.39299999999999996, \"Viscera_weight\": 0.1735, \"Shell_weight\": 0.23800000000000002, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.12, \"Whole_weight\": 0.8685, \"Shucked_weight\": 0.418, \"Viscera_weight\": 0.1475, \"Shell_weight\": 0.2605, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.435, \"Height\": 0.15, \"Whole_weight\": 0.8390000000000001, \"Shucked_weight\": 0.3485, \"Viscera_weight\": 0.207, \"Shell_weight\": 0.192, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.485, \"Height\": 0.15, \"Whole_weight\": 1.079, \"Shucked_weight\": 0.4145, \"Viscera_weight\": 0.2115, \"Shell_weight\": 0.35600000000000004, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 0.919, \"Shucked_weight\": 0.4335, \"Viscera_weight\": 0.1765, \"Shell_weight\": 0.262, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.47, \"Height\": 0.19, \"Whole_weight\": 1.1345, \"Shucked_weight\": 0.49200000000000005, \"Viscera_weight\": 0.2595, \"Shell_weight\": 0.3375, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.43, \"Height\": 0.14, \"Whole_weight\": 0.909, \"Shucked_weight\": 0.43799999999999994, \"Viscera_weight\": 0.2, \"Shell_weight\": 0.22, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.2435, \"Shucked_weight\": 0.5575, \"Viscera_weight\": 0.2675, \"Shell_weight\": 0.37200000000000005, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.49, \"Height\": 0.16, \"Whole_weight\": 1.056, \"Shucked_weight\": 0.493, \"Viscera_weight\": 0.244, \"Shell_weight\": 0.2725, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.495, \"Height\": 0.15, \"Whole_weight\": 1.2095, \"Shucked_weight\": 0.603, \"Viscera_weight\": 0.2225, \"Shell_weight\": 0.33899999999999997, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.5, \"Height\": 0.14, \"Whole_weight\": 1.238, \"Shucked_weight\": 0.6165, \"Viscera_weight\": 0.2355, \"Shell_weight\": 0.32, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.525, \"Height\": 0.21, \"Whole_weight\": 1.6440000000000001, \"Shucked_weight\": 0.818, \"Viscera_weight\": 0.3395, \"Shell_weight\": 0.4275, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.685, \"Diameter\": 0.55, \"Height\": 0.2, \"Whole_weight\": 1.7725, \"Shucked_weight\": 0.813, \"Viscera_weight\": 0.387, \"Shell_weight\": 0.49, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.69, \"Diameter\": 0.54, \"Height\": 0.195, \"Whole_weight\": 1.2525, \"Shucked_weight\": 0.73, \"Viscera_weight\": 0.3975, \"Shell_weight\": 0.462, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.705, \"Diameter\": 0.57, \"Height\": 0.185, \"Whole_weight\": 1.761, \"Shucked_weight\": 0.747, \"Viscera_weight\": 0.3725, \"Shell_weight\": 0.488, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.71, \"Diameter\": 0.5, \"Height\": 0.15, \"Whole_weight\": 1.3165, \"Shucked_weight\": 0.6835, \"Viscera_weight\": 0.2815, \"Shell_weight\": 0.28, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.72, \"Diameter\": 0.585, \"Height\": 0.22, \"Whole_weight\": 1.9140000000000001, \"Shucked_weight\": 0.9155, \"Viscera_weight\": 0.44799999999999995, \"Shell_weight\": 0.479, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.575, \"Height\": 0.215, \"Whole_weight\": 2.1, \"Shucked_weight\": 0.8565, \"Viscera_weight\": 0.4825, \"Shell_weight\": 0.602, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.73, \"Diameter\": 0.555, \"Height\": 0.18, \"Whole_weight\": 1.6895, \"Shucked_weight\": 0.6555, \"Viscera_weight\": 0.1965, \"Shell_weight\": 0.4935, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.775, \"Diameter\": 0.57, \"Height\": 0.22, \"Whole_weight\": 2.032, \"Shucked_weight\": 0.735, \"Viscera_weight\": 0.4755, \"Shell_weight\": 0.6585, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.39, \"Height\": 0.115, \"Whole_weight\": 0.66, \"Shucked_weight\": 0.3045, \"Viscera_weight\": 0.1555, \"Shell_weight\": 0.175, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.425, \"Height\": 0.13, \"Whole_weight\": 0.7455, \"Shucked_weight\": 0.2995, \"Viscera_weight\": 0.1355, \"Shell_weight\": 0.245, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.385, \"Height\": 0.115, \"Whole_weight\": 0.616, \"Shucked_weight\": 0.243, \"Viscera_weight\": 0.1075, \"Shell_weight\": 0.21, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.305, \"Height\": 0.09, \"Whole_weight\": 0.2825, \"Shucked_weight\": 0.114, \"Viscera_weight\": 0.0575, \"Shell_weight\": 0.095, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.415, \"Diameter\": 0.3, \"Height\": 0.1, \"Whole_weight\": 0.3355, \"Shucked_weight\": 0.1545, \"Viscera_weight\": 0.0685, \"Shell_weight\": 0.095, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.39, \"Height\": 0.145, \"Whole_weight\": 0.6509999999999999, \"Shucked_weight\": 0.273, \"Viscera_weight\": 0.132, \"Shell_weight\": 0.22, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.425, \"Diameter\": 0.33, \"Height\": 0.08, \"Whole_weight\": 0.361, \"Shucked_weight\": 0.134, \"Viscera_weight\": 0.0825, \"Shell_weight\": 0.125, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.35, \"Height\": 0.1, \"Whole_weight\": 0.4775, \"Shucked_weight\": 0.1885, \"Viscera_weight\": 0.0885, \"Shell_weight\": 0.175, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.4, \"Diameter\": 0.31, \"Height\": 0.115, \"Whole_weight\": 0.3465, \"Shucked_weight\": 0.1475, \"Viscera_weight\": 0.0695, \"Shell_weight\": 0.115, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.29, \"Height\": 0.1, \"Whole_weight\": 0.25, \"Shucked_weight\": 0.1025, \"Viscera_weight\": 0.0505, \"Shell_weight\": 0.085, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.38, \"Height\": 0.155, \"Whole_weight\": 0.66, \"Shucked_weight\": 0.2655, \"Viscera_weight\": 0.1365, \"Shell_weight\": 0.215, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.31, \"Height\": 0.11, \"Whole_weight\": 0.315, \"Shucked_weight\": 0.124, \"Viscera_weight\": 0.08199999999999999, \"Shell_weight\": 0.095, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.375, \"Diameter\": 0.29, \"Height\": 0.1, \"Whole_weight\": 0.276, \"Shucked_weight\": 0.1175, \"Viscera_weight\": 0.0565, \"Shell_weight\": 0.085, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.385, \"Height\": 0.125, \"Whole_weight\": 0.5395, \"Shucked_weight\": 0.2175, \"Viscera_weight\": 0.128, \"Shell_weight\": 0.165, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.48, \"Height\": 0.185, \"Whole_weight\": 1.04, \"Shucked_weight\": 0.434, \"Viscera_weight\": 0.265, \"Shell_weight\": 0.285, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.455, \"Height\": 0.155, \"Whole_weight\": 1.041, \"Shucked_weight\": 0.41600000000000004, \"Viscera_weight\": 0.2105, \"Shell_weight\": 0.365, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.55, \"Height\": 0.18, \"Whole_weight\": 1.6885, \"Shucked_weight\": 0.562, \"Viscera_weight\": 0.3705, \"Shell_weight\": 0.6, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.535, \"Height\": 0.225, \"Whole_weight\": 2.1835, \"Shucked_weight\": 0.7535, \"Viscera_weight\": 0.391, \"Shell_weight\": 0.885, \"Rings\": 27, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.49, \"Height\": 0.17, \"Whole_weight\": 1.2105, \"Shucked_weight\": 0.5185, \"Viscera_weight\": 0.2555, \"Shell_weight\": 0.335, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.25, \"Height\": 0.055, \"Whole_weight\": 0.166, \"Shucked_weight\": 0.076, \"Viscera_weight\": 0.051, \"Shell_weight\": 0.045, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.355, \"Height\": 0.08, \"Whole_weight\": 0.452, \"Shucked_weight\": 0.2165, \"Viscera_weight\": 0.0995, \"Shell_weight\": 0.125, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.405, \"Height\": 0.13, \"Whole_weight\": 0.7185, \"Shucked_weight\": 0.3265, \"Viscera_weight\": 0.1975, \"Shell_weight\": 0.175, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.29, \"Height\": 0.09, \"Whole_weight\": 0.23199999999999998, \"Shucked_weight\": 0.0855, \"Viscera_weight\": 0.0495, \"Shell_weight\": 0.08, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.13, \"Diameter\": 0.095, \"Height\": 0.035, \"Whole_weight\": 0.0105, \"Shucked_weight\": 0.005, \"Viscera_weight\": 0.0065, \"Shell_weight\": 0.0035, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.18, \"Diameter\": 0.13, \"Height\": 0.045, \"Whole_weight\": 0.0275, \"Shucked_weight\": 0.0125, \"Viscera_weight\": 0.01, \"Shell_weight\": 0.009000000000000001, \"Rings\": 3, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.31, \"Diameter\": 0.225, \"Height\": 0.05, \"Whole_weight\": 0.1445, \"Shucked_weight\": 0.0675, \"Viscera_weight\": 0.0385, \"Shell_weight\": 0.045, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.375, \"Diameter\": 0.29, \"Height\": 0.08, \"Whole_weight\": 0.282, \"Shucked_weight\": 0.1405, \"Viscera_weight\": 0.0725, \"Shell_weight\": 0.08, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.48, \"Diameter\": 0.38, \"Height\": 0.12, \"Whole_weight\": 0.608, \"Shucked_weight\": 0.2705, \"Viscera_weight\": 0.1405, \"Shell_weight\": 0.185, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.37, \"Height\": 0.125, \"Whole_weight\": 0.433, \"Shucked_weight\": 0.201, \"Viscera_weight\": 0.1265, \"Shell_weight\": 0.145, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.425, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.3295, \"Shucked_weight\": 0.1365, \"Viscera_weight\": 0.0725, \"Shell_weight\": 0.11, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.36, \"Height\": 0.11, \"Whole_weight\": 0.4555, \"Shucked_weight\": 0.177, \"Viscera_weight\": 0.0965, \"Shell_weight\": 0.145, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.435, \"Diameter\": 0.35, \"Height\": 0.12, \"Whole_weight\": 0.4585, \"Shucked_weight\": 0.192, \"Viscera_weight\": 0.1, \"Shell_weight\": 0.13, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.29, \"Diameter\": 0.21, \"Height\": 0.075, \"Whole_weight\": 0.275, \"Shucked_weight\": 0.113, \"Viscera_weight\": 0.0675, \"Shell_weight\": 0.035, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.385, \"Diameter\": 0.295, \"Height\": 0.095, \"Whole_weight\": 0.335, \"Shucked_weight\": 0.147, \"Viscera_weight\": 0.094, \"Shell_weight\": 0.09, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.375, \"Height\": 0.115, \"Whole_weight\": 0.4265, \"Shucked_weight\": 0.1685, \"Viscera_weight\": 0.0755, \"Shell_weight\": 0.15, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.5765, \"Shucked_weight\": 0.2395, \"Viscera_weight\": 0.126, \"Shell_weight\": 0.185, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.31, \"Height\": 0.1, \"Whole_weight\": 0.127, \"Shucked_weight\": 0.106, \"Viscera_weight\": 0.071, \"Shell_weight\": 0.085, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.1505, \"Shucked_weight\": 0.4375, \"Viscera_weight\": 0.2265, \"Shell_weight\": 0.4, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 0.8915, \"Shucked_weight\": 0.359, \"Viscera_weight\": 0.2105, \"Shell_weight\": 0.245, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.455, \"Height\": 0.14, \"Whole_weight\": 0.97, \"Shucked_weight\": 0.462, \"Viscera_weight\": 0.185, \"Shell_weight\": 0.295, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.32, \"Diameter\": 0.24, \"Height\": 0.08, \"Whole_weight\": 0.18, \"Shucked_weight\": 0.08, \"Viscera_weight\": 0.0385, \"Shell_weight\": 0.055, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.41, \"Height\": 0.125, \"Whole_weight\": 0.6985, \"Shucked_weight\": 0.2945, \"Viscera_weight\": 0.1625, \"Shell_weight\": 0.215, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.44, \"Diameter\": 0.35, \"Height\": 0.11, \"Whole_weight\": 0.4585, \"Shucked_weight\": 0.2, \"Viscera_weight\": 0.0885, \"Shell_weight\": 0.13, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.44, \"Diameter\": 0.33, \"Height\": 0.115, \"Whole_weight\": 0.4005, \"Shucked_weight\": 0.14300000000000002, \"Viscera_weight\": 0.113, \"Shell_weight\": 0.12, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.425, \"Height\": 0.1, \"Whole_weight\": 0.7145, \"Shucked_weight\": 0.3055, \"Viscera_weight\": 0.166, \"Shell_weight\": 0.18, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.425, \"Height\": 0.125, \"Whole_weight\": 0.932, \"Shucked_weight\": 0.361, \"Viscera_weight\": 0.213, \"Shell_weight\": 0.335, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.455, \"Height\": 0.175, \"Whole_weight\": 0.966, \"Shucked_weight\": 0.391, \"Viscera_weight\": 0.2455, \"Shell_weight\": 0.31, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.465, \"Height\": 0.18, \"Whole_weight\": 0.9995, \"Shucked_weight\": 0.405, \"Viscera_weight\": 0.27699999999999997, \"Shell_weight\": 0.295, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.68, \"Diameter\": 0.53, \"Height\": 0.205, \"Whole_weight\": 1.496, \"Shucked_weight\": 0.5825, \"Viscera_weight\": 0.337, \"Shell_weight\": 0.465, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.45, \"Diameter\": 0.36, \"Height\": 0.125, \"Whole_weight\": 0.5065, \"Shucked_weight\": 0.222, \"Viscera_weight\": 0.105, \"Shell_weight\": 0.16, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.24, \"Height\": 0.075, \"Whole_weight\": 0.1735, \"Shucked_weight\": 0.076, \"Viscera_weight\": 0.0355, \"Shell_weight\": 0.05, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.35, \"Height\": 0.11, \"Whole_weight\": 0.3945, \"Shucked_weight\": 0.1685, \"Viscera_weight\": 0.0865, \"Shell_weight\": 0.125, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.37, \"Height\": 0.105, \"Whole_weight\": 0.4665, \"Shucked_weight\": 0.2025, \"Viscera_weight\": 0.1015, \"Shell_weight\": 0.155, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.455, \"Diameter\": 0.35, \"Height\": 0.105, \"Whole_weight\": 0.401, \"Shucked_weight\": 0.1575, \"Viscera_weight\": 0.083, \"Shell_weight\": 0.135, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.415, \"Diameter\": 0.325, \"Height\": 0.115, \"Whole_weight\": 0.3455, \"Shucked_weight\": 0.1405, \"Viscera_weight\": 0.0765, \"Shell_weight\": 0.11, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.35, \"Height\": 0.12, \"Whole_weight\": 0.5205, \"Shucked_weight\": 0.2015, \"Viscera_weight\": 0.1625, \"Shell_weight\": 0.185, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.375, \"Height\": 0.135, \"Whole_weight\": 0.4935, \"Shucked_weight\": 0.18600000000000003, \"Viscera_weight\": 0.0845, \"Shell_weight\": 0.17, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.415, \"Diameter\": 0.31, \"Height\": 0.09, \"Whole_weight\": 0.3245, \"Shucked_weight\": 0.1305, \"Viscera_weight\": 0.0735, \"Shell_weight\": 0.115, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.27, \"Diameter\": 0.195, \"Height\": 0.07, \"Whole_weight\": 0.106, \"Shucked_weight\": 0.0465, \"Viscera_weight\": 0.018000000000000002, \"Shell_weight\": 0.036000000000000004, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.445, \"Diameter\": 0.355, \"Height\": 0.11, \"Whole_weight\": 0.4415, \"Shucked_weight\": 0.1805, \"Viscera_weight\": 0.1035, \"Shell_weight\": 0.1505, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.745, \"Diameter\": 0.585, \"Height\": 0.19, \"Whole_weight\": 1.966, \"Shucked_weight\": 0.8435, \"Viscera_weight\": 0.43700000000000006, \"Shell_weight\": 0.5855, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.4, \"Diameter\": 0.3, \"Height\": 0.115, \"Whole_weight\": 0.3025, \"Shucked_weight\": 0.1335, \"Viscera_weight\": 0.0465, \"Shell_weight\": 0.0935, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.2, \"Height\": 0.075, \"Whole_weight\": 0.1225, \"Shucked_weight\": 0.0545, \"Viscera_weight\": 0.0115, \"Shell_weight\": 0.035, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.44, \"Height\": 0.135, \"Whole_weight\": 0.879, \"Shucked_weight\": 0.368, \"Viscera_weight\": 0.2095, \"Shell_weight\": 0.265, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.165, \"Whole_weight\": 1.2275, \"Shucked_weight\": 0.473, \"Viscera_weight\": 0.1965, \"Shell_weight\": 0.435, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.2715, \"Shucked_weight\": 0.4915, \"Viscera_weight\": 0.185, \"Shell_weight\": 0.49, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.495, \"Height\": 0.175, \"Whole_weight\": 1.806, \"Shucked_weight\": 0.643, \"Viscera_weight\": 0.3285, \"Shell_weight\": 0.725, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.42, \"Height\": 0.195, \"Whole_weight\": 0.8085, \"Shucked_weight\": 0.3025, \"Viscera_weight\": 0.1795, \"Shell_weight\": 0.285, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.51, \"Height\": 0.2, \"Whole_weight\": 1.3905, \"Shucked_weight\": 0.61, \"Viscera_weight\": 0.3315, \"Shell_weight\": 0.41, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.69, \"Diameter\": 0.55, \"Height\": 0.2, \"Whole_weight\": 1.8465, \"Shucked_weight\": 0.732, \"Viscera_weight\": 0.47200000000000003, \"Shell_weight\": 0.57, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.715, \"Diameter\": 0.565, \"Height\": 0.24, \"Whole_weight\": 2.1995, \"Shucked_weight\": 0.7245, \"Viscera_weight\": 0.465, \"Shell_weight\": 0.885, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.71, \"Diameter\": 0.565, \"Height\": 0.195, \"Whole_weight\": 1.817, \"Shucked_weight\": 0.785, \"Viscera_weight\": 0.49200000000000005, \"Shell_weight\": 0.49, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 0.897, \"Shucked_weight\": 0.377, \"Viscera_weight\": 0.184, \"Shell_weight\": 0.29, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.375, \"Diameter\": 0.305, \"Height\": 0.09, \"Whole_weight\": 0.3245, \"Shucked_weight\": 0.1395, \"Viscera_weight\": 0.0565, \"Shell_weight\": 0.095, \"Rings\": 5, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 1.136, \"Shucked_weight\": 0.414, \"Viscera_weight\": 0.311, \"Shell_weight\": 0.3, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.38, \"Diameter\": 0.28, \"Height\": 0.085, \"Whole_weight\": 0.2735, \"Shucked_weight\": 0.115, \"Viscera_weight\": 0.061, \"Shell_weight\": 0.085, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.37, \"Diameter\": 0.275, \"Height\": 0.085, \"Whole_weight\": 0.2405, \"Shucked_weight\": 0.10400000000000001, \"Viscera_weight\": 0.0535, \"Shell_weight\": 0.07, \"Rings\": 5, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.335, \"Diameter\": 0.235, \"Height\": 0.085, \"Whole_weight\": 0.1545, \"Shucked_weight\": 0.066, \"Viscera_weight\": 0.0345, \"Shell_weight\": 0.045, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.165, \"Diameter\": 0.115, \"Height\": 0.015, \"Whole_weight\": 0.0145, \"Shucked_weight\": 0.0055, \"Viscera_weight\": 0.003, \"Shell_weight\": 0.005, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.285, \"Diameter\": 0.21, \"Height\": 0.075, \"Whole_weight\": 0.1185, \"Shucked_weight\": 0.055, \"Viscera_weight\": 0.0285, \"Shell_weight\": 0.04, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.19, \"Diameter\": 0.13, \"Height\": 0.03, \"Whole_weight\": 0.0295, \"Shucked_weight\": 0.0155, \"Viscera_weight\": 0.015, \"Shell_weight\": 0.01, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.215, \"Diameter\": 0.15, \"Height\": 0.03, \"Whole_weight\": 0.0385, \"Shucked_weight\": 0.0115, \"Viscera_weight\": 0.005, \"Shell_weight\": 0.01, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.465, \"Height\": 0.125, \"Whole_weight\": 0.799, \"Shucked_weight\": 0.3245, \"Viscera_weight\": 0.2, \"Shell_weight\": 0.23, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.17, \"Whole_weight\": 1.1845, \"Shucked_weight\": 0.4805, \"Viscera_weight\": 0.27399999999999997, \"Shell_weight\": 0.355, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.185, \"Whole_weight\": 0.925, \"Shucked_weight\": 0.342, \"Viscera_weight\": 0.19699999999999998, \"Shell_weight\": 0.35, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.17, \"Whole_weight\": 1.0979999999999999, \"Shucked_weight\": 0.414, \"Viscera_weight\": 0.187, \"Shell_weight\": 0.405, \"Rings\": 20, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.235, \"Whole_weight\": 1.071, \"Shucked_weight\": 0.3, \"Viscera_weight\": 0.20600000000000002, \"Shell_weight\": 0.395, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.48, \"Height\": 0.2, \"Whole_weight\": 0.975, \"Shucked_weight\": 0.358, \"Viscera_weight\": 0.2035, \"Shell_weight\": 0.34, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.47, \"Height\": 0.25, \"Whole_weight\": 1.2830000000000001, \"Shucked_weight\": 0.462, \"Viscera_weight\": 0.2475, \"Shell_weight\": 0.445, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.42, \"Height\": 0.165, \"Whole_weight\": 1.0595, \"Shucked_weight\": 0.358, \"Viscera_weight\": 0.165, \"Shell_weight\": 0.445, \"Rings\": 21, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.42, \"Height\": 0.165, \"Whole_weight\": 0.9195, \"Shucked_weight\": 0.3355, \"Viscera_weight\": 0.1985, \"Shell_weight\": 0.26, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.43, \"Height\": 0.16, \"Whole_weight\": 0.9295, \"Shucked_weight\": 0.317, \"Viscera_weight\": 0.1735, \"Shell_weight\": 0.355, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.4, \"Height\": 0.155, \"Whole_weight\": 0.8085, \"Shucked_weight\": 0.2345, \"Viscera_weight\": 0.1155, \"Shell_weight\": 0.35, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.235, \"Height\": 0.08, \"Whole_weight\": 0.1485, \"Shucked_weight\": 0.064, \"Viscera_weight\": 0.031, \"Shell_weight\": 0.045, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.445, \"Diameter\": 0.34, \"Height\": 0.12, \"Whole_weight\": 0.4475, \"Shucked_weight\": 0.193, \"Viscera_weight\": 0.1035, \"Shell_weight\": 0.13, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.6865, \"Shucked_weight\": 0.295, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.185, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.385, \"Height\": 0.135, \"Whole_weight\": 0.6335, \"Shucked_weight\": 0.2, \"Viscera_weight\": 0.1225, \"Shell_weight\": 0.26, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.37, \"Height\": 0.135, \"Whole_weight\": 0.547, \"Shucked_weight\": 0.222, \"Viscera_weight\": 0.1325, \"Shell_weight\": 0.17, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.37, \"Height\": 0.14, \"Whole_weight\": 0.585, \"Shucked_weight\": 0.243, \"Viscera_weight\": 0.115, \"Shell_weight\": 0.195, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 0.927, \"Shucked_weight\": 0.3215, \"Viscera_weight\": 0.1985, \"Shell_weight\": 0.315, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.495, \"Height\": 0.185, \"Whole_weight\": 1.4935, \"Shucked_weight\": 0.5265, \"Viscera_weight\": 0.2785, \"Shell_weight\": 0.455, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.485, \"Height\": 0.165, \"Whole_weight\": 1.0405, \"Shucked_weight\": 0.419, \"Viscera_weight\": 0.264, \"Shell_weight\": 0.3, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.215, \"Diameter\": 0.17, \"Height\": 0.055, \"Whole_weight\": 0.0605, \"Shucked_weight\": 0.0205, \"Viscera_weight\": 0.013999999999999999, \"Shell_weight\": 0.02, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.325, \"Height\": 0.11, \"Whole_weight\": 0.3675, \"Shucked_weight\": 0.1355, \"Viscera_weight\": 0.0935, \"Shell_weight\": 0.12, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.26, \"Diameter\": 0.215, \"Height\": 0.08, \"Whole_weight\": 0.099, \"Shucked_weight\": 0.037000000000000005, \"Viscera_weight\": 0.0255, \"Shell_weight\": 0.045, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.28, \"Height\": 0.09, \"Whole_weight\": 0.233, \"Shucked_weight\": 0.0905, \"Viscera_weight\": 0.0545, \"Shell_weight\": 0.07, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.305, \"Height\": 0.105, \"Whole_weight\": 0.3625, \"Shucked_weight\": 0.1565, \"Viscera_weight\": 0.0705, \"Shell_weight\": 0.125, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.27, \"Diameter\": 0.19, \"Height\": 0.08, \"Whole_weight\": 0.081, \"Shucked_weight\": 0.0265, \"Viscera_weight\": 0.0195, \"Shell_weight\": 0.03, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.55, \"Height\": 0.2, \"Whole_weight\": 1.5959999999999999, \"Shucked_weight\": 0.525, \"Viscera_weight\": 0.4075, \"Shell_weight\": 0.585, \"Rings\": 21, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.515, \"Height\": 0.195, \"Whole_weight\": 1.4005, \"Shucked_weight\": 0.5195, \"Viscera_weight\": 0.36, \"Shell_weight\": 0.44, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.49, \"Height\": 0.215, \"Whole_weight\": 1.406, \"Shucked_weight\": 0.4265, \"Viscera_weight\": 0.2285, \"Shell_weight\": 0.51, \"Rings\": 25, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.405, \"Height\": 0.16, \"Whole_weight\": 0.9245, \"Shucked_weight\": 0.3445, \"Viscera_weight\": 0.2185, \"Shell_weight\": 0.295, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.48, \"Height\": 0.19, \"Whole_weight\": 1.36, \"Shucked_weight\": 0.5305, \"Viscera_weight\": 0.2375, \"Shell_weight\": 0.47, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.42, \"Diameter\": 0.345, \"Height\": 0.105, \"Whole_weight\": 0.43, \"Shucked_weight\": 0.175, \"Viscera_weight\": 0.096, \"Shell_weight\": 0.13, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.22, \"Height\": 0.08, \"Whole_weight\": 0.1365, \"Shucked_weight\": 0.0565, \"Viscera_weight\": 0.0285, \"Shell_weight\": 0.042, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.29, \"Diameter\": 0.225, \"Height\": 0.075, \"Whole_weight\": 0.14, \"Shucked_weight\": 0.0515, \"Viscera_weight\": 0.0235, \"Shell_weight\": 0.04, \"Rings\": 5, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.42, \"Diameter\": 0.34, \"Height\": 0.115, \"Whole_weight\": 0.4215, \"Shucked_weight\": 0.175, \"Viscera_weight\": 0.09300000000000001, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.525, \"Height\": 0.215, \"Whole_weight\": 1.5765, \"Shucked_weight\": 0.5115, \"Viscera_weight\": 0.2595, \"Shell_weight\": 0.665, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.465, \"Height\": 0.18, \"Whole_weight\": 1.2125, \"Shucked_weight\": 0.3245, \"Viscera_weight\": 0.205, \"Shell_weight\": 0.525, \"Rings\": 27, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.505, \"Height\": 0.2, \"Whole_weight\": 1.6305, \"Shucked_weight\": 0.4865, \"Viscera_weight\": 0.297, \"Shell_weight\": 0.61, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.47, \"Height\": 0.195, \"Whole_weight\": 1.1420000000000001, \"Shucked_weight\": 0.387, \"Viscera_weight\": 0.258, \"Shell_weight\": 0.35, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.495, \"Height\": 0.235, \"Whole_weight\": 1.3659999999999999, \"Shucked_weight\": 0.5065, \"Viscera_weight\": 0.21899999999999997, \"Shell_weight\": 0.52, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.51, \"Height\": 0.23, \"Whole_weight\": 1.5390000000000001, \"Shucked_weight\": 0.5635, \"Viscera_weight\": 0.2815, \"Shell_weight\": 0.57, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.43, \"Diameter\": 0.325, \"Height\": 0.12, \"Whole_weight\": 0.445, \"Shucked_weight\": 0.165, \"Viscera_weight\": 0.0995, \"Shell_weight\": 0.155, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.455, \"Diameter\": 0.35, \"Height\": 0.14, \"Whole_weight\": 0.5725, \"Shucked_weight\": 0.1965, \"Viscera_weight\": 0.1325, \"Shell_weight\": 0.175, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.33, \"Diameter\": 0.26, \"Height\": 0.08, \"Whole_weight\": 0.19, \"Shucked_weight\": 0.0765, \"Viscera_weight\": 0.0385, \"Shell_weight\": 0.065, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.415, \"Height\": 0.13, \"Whole_weight\": 0.764, \"Shucked_weight\": 0.276, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.25, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.39, \"Height\": 0.15, \"Whole_weight\": 0.853, \"Shucked_weight\": 0.3285, \"Viscera_weight\": 0.18899999999999997, \"Shell_weight\": 0.27, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.485, \"Diameter\": 0.375, \"Height\": 0.145, \"Whole_weight\": 0.5885, \"Shucked_weight\": 0.2385, \"Viscera_weight\": 0.1155, \"Shell_weight\": 0.19, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.46, \"Height\": 0.145, \"Whole_weight\": 0.7875, \"Shucked_weight\": 0.3395, \"Viscera_weight\": 0.2005, \"Shell_weight\": 0.2, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.465, \"Height\": 0.175, \"Whole_weight\": 1.035, \"Shucked_weight\": 0.401, \"Viscera_weight\": 0.1865, \"Shell_weight\": 0.385, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.525, \"Height\": 0.195, \"Whole_weight\": 1.3519999999999999, \"Shucked_weight\": 0.4505, \"Viscera_weight\": 0.2445, \"Shell_weight\": 0.53, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.555, \"Diameter\": 0.455, \"Height\": 0.18, \"Whole_weight\": 0.958, \"Shucked_weight\": 0.29600000000000004, \"Viscera_weight\": 0.195, \"Shell_weight\": 0.39, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.145, \"Whole_weight\": 0.797, \"Shucked_weight\": 0.297, \"Viscera_weight\": 0.15, \"Shell_weight\": 0.265, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 0.857, \"Shucked_weight\": 0.35600000000000004, \"Viscera_weight\": 0.174, \"Shell_weight\": 0.28, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.28, \"Height\": 0.11, \"Whole_weight\": 0.2235, \"Shucked_weight\": 0.0815, \"Viscera_weight\": 0.0525, \"Shell_weight\": 0.08, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.2, \"Height\": 0.075, \"Whole_weight\": 0.086, \"Shucked_weight\": 0.0305, \"Viscera_weight\": 0.019, \"Shell_weight\": 0.03, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.39, \"Height\": 0.175, \"Whole_weight\": 0.6920000000000001, \"Shucked_weight\": 0.267, \"Viscera_weight\": 0.15, \"Shell_weight\": 0.215, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.37, \"Diameter\": 0.28, \"Height\": 0.095, \"Whole_weight\": 0.2225, \"Shucked_weight\": 0.0805, \"Viscera_weight\": 0.051, \"Shell_weight\": 0.075, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.43, \"Height\": 0.165, \"Whole_weight\": 0.7575, \"Shucked_weight\": 0.2735, \"Viscera_weight\": 0.1635, \"Shell_weight\": 0.275, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.4, \"Height\": 0.165, \"Whole_weight\": 0.7290000000000001, \"Shucked_weight\": 0.2675, \"Viscera_weight\": 0.155, \"Shell_weight\": 0.25, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.445, \"Height\": 0.18, \"Whole_weight\": 0.903, \"Shucked_weight\": 0.3575, \"Viscera_weight\": 0.2045, \"Shell_weight\": 0.295, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.475, \"Height\": 0.17, \"Whole_weight\": 1.0965, \"Shucked_weight\": 0.419, \"Viscera_weight\": 0.22899999999999998, \"Shell_weight\": 0.35, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.165, \"Whole_weight\": 0.903, \"Shucked_weight\": 0.3305, \"Viscera_weight\": 0.1845, \"Shell_weight\": 0.295, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.48, \"Height\": 0.175, \"Whole_weight\": 1.229, \"Shucked_weight\": 0.4125, \"Viscera_weight\": 0.2735, \"Shell_weight\": 0.415, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.435, \"Height\": 0.185, \"Whole_weight\": 1.1059999999999999, \"Shucked_weight\": 0.42200000000000004, \"Viscera_weight\": 0.2435, \"Shell_weight\": 0.33, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.465, \"Height\": 0.19, \"Whole_weight\": 1.171, \"Shucked_weight\": 0.3905, \"Viscera_weight\": 0.2355, \"Shell_weight\": 0.4, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.335, \"Height\": 0.11, \"Whole_weight\": 0.444, \"Shucked_weight\": 0.225, \"Viscera_weight\": 0.0745, \"Shell_weight\": 0.11, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.46, \"Diameter\": 0.36, \"Height\": 0.115, \"Whole_weight\": 0.4755, \"Shucked_weight\": 0.2105, \"Viscera_weight\": 0.105, \"Shell_weight\": 0.16, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.415, \"Diameter\": 0.315, \"Height\": 0.125, \"Whole_weight\": 0.38799999999999996, \"Shucked_weight\": 0.068, \"Viscera_weight\": 0.09, \"Shell_weight\": 0.125, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.435, \"Diameter\": 0.32, \"Height\": 0.12, \"Whole_weight\": 0.3785, \"Shucked_weight\": 0.152, \"Viscera_weight\": 0.0915, \"Shell_weight\": 0.125, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.486, \"Shucked_weight\": 0.1735, \"Viscera_weight\": 0.07, \"Shell_weight\": 0.185, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.36, \"Height\": 0.13, \"Whole_weight\": 0.5265, \"Shucked_weight\": 0.2105, \"Viscera_weight\": 0.1185, \"Shell_weight\": 0.165, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.28, \"Height\": 0.1, \"Whole_weight\": 0.2275, \"Shucked_weight\": 0.0935, \"Viscera_weight\": 0.0455, \"Shell_weight\": 0.085, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.375, \"Height\": 0.14, \"Whole_weight\": 0.5105, \"Shucked_weight\": 0.192, \"Viscera_weight\": 0.1045, \"Shell_weight\": 0.205, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.38, \"Diameter\": 0.325, \"Height\": 0.11, \"Whole_weight\": 0.3105, \"Shucked_weight\": 0.12, \"Viscera_weight\": 0.07400000000000001, \"Shell_weight\": 0.105, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.365, \"Height\": 0.12, \"Whole_weight\": 0.5429999999999999, \"Shucked_weight\": 0.2295, \"Viscera_weight\": 0.1495, \"Shell_weight\": 0.15, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.36, \"Diameter\": 0.27, \"Height\": 0.09, \"Whole_weight\": 0.2225, \"Shucked_weight\": 0.083, \"Viscera_weight\": 0.053, \"Shell_weight\": 0.075, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.455, \"Height\": 0.165, \"Whole_weight\": 0.998, \"Shucked_weight\": 0.345, \"Viscera_weight\": 0.2495, \"Shell_weight\": 0.315, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.59, \"Height\": 0.2, \"Whole_weight\": 1.5455, \"Shucked_weight\": 0.654, \"Viscera_weight\": 0.3765, \"Shell_weight\": 0.415, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.485, \"Height\": 0.175, \"Whole_weight\": 1.2675, \"Shucked_weight\": 0.4995, \"Viscera_weight\": 0.2815, \"Shell_weight\": 0.38, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.46, \"Height\": 0.17, \"Whole_weight\": 1.1, \"Shucked_weight\": 0.4125, \"Viscera_weight\": 0.2205, \"Shell_weight\": 0.38, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.2, \"Whole_weight\": 1.4285, \"Shucked_weight\": 0.639, \"Viscera_weight\": 0.305, \"Shell_weight\": 0.36, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.495, \"Height\": 0.18, \"Whole_weight\": 1.7930000000000001, \"Shucked_weight\": 0.8005, \"Viscera_weight\": 0.33899999999999997, \"Shell_weight\": 0.53, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.395, \"Height\": 0.145, \"Whole_weight\": 0.6185, \"Shucked_weight\": 0.21600000000000003, \"Viscera_weight\": 0.1385, \"Shell_weight\": 0.24, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.5825, \"Shucked_weight\": 0.2505, \"Viscera_weight\": 0.1565, \"Shell_weight\": 0.175, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.415, \"Height\": 0.165, \"Whole_weight\": 0.7485, \"Shucked_weight\": 0.264, \"Viscera_weight\": 0.134, \"Shell_weight\": 0.285, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.43, \"Diameter\": 0.335, \"Height\": 0.115, \"Whole_weight\": 0.406, \"Shucked_weight\": 0.166, \"Viscera_weight\": 0.0935, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.465, \"Height\": 0.16, \"Whole_weight\": 1.1005, \"Shucked_weight\": 0.506, \"Viscera_weight\": 0.2525, \"Shell_weight\": 0.295, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.46, \"Height\": 0.175, \"Whole_weight\": 0.8690000000000001, \"Shucked_weight\": 0.3155, \"Viscera_weight\": 0.1825, \"Shell_weight\": 0.32, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.43, \"Height\": 0.16, \"Whole_weight\": 0.955, \"Shucked_weight\": 0.3625, \"Viscera_weight\": 0.17600000000000002, \"Shell_weight\": 0.27, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.455, \"Height\": 0.16, \"Whole_weight\": 0.9215, \"Shucked_weight\": 0.312, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.3, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.51, \"Height\": 0.15, \"Whole_weight\": 1.456, \"Shucked_weight\": 0.581, \"Viscera_weight\": 0.2875, \"Shell_weight\": 0.32, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.59, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 0.893, \"Shucked_weight\": 0.2745, \"Viscera_weight\": 0.2185, \"Shell_weight\": 0.345, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.575, \"Height\": 0.215, \"Whole_weight\": 2.226, \"Shucked_weight\": 0.8955, \"Viscera_weight\": 0.405, \"Shell_weight\": 0.62, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.2125, \"Shucked_weight\": 0.5735, \"Viscera_weight\": 0.261, \"Shell_weight\": 0.36, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.48, \"Height\": 0.175, \"Whole_weight\": 1.0675, \"Shucked_weight\": 0.391, \"Viscera_weight\": 0.21600000000000003, \"Shell_weight\": 0.42, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.445, \"Height\": 0.175, \"Whole_weight\": 0.8525, \"Shucked_weight\": 0.3465, \"Viscera_weight\": 0.18899999999999997, \"Shell_weight\": 0.295, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 0.8615, \"Shucked_weight\": 0.3725, \"Viscera_weight\": 0.2175, \"Shell_weight\": 0.255, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.18, \"Whole_weight\": 1.162, \"Shucked_weight\": 0.511, \"Viscera_weight\": 0.2675, \"Shell_weight\": 0.32, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.41, \"Height\": 0.17, \"Whole_weight\": 0.8705, \"Shucked_weight\": 0.3735, \"Viscera_weight\": 0.21899999999999997, \"Shell_weight\": 0.25, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.51, \"Height\": 0.21, \"Whole_weight\": 1.598, \"Shucked_weight\": 0.6535, \"Viscera_weight\": 0.2835, \"Shell_weight\": 0.58, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.52, \"Height\": 0.15, \"Whole_weight\": 1.406, \"Shucked_weight\": 0.519, \"Viscera_weight\": 0.348, \"Shell_weight\": 0.37, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.695, \"Diameter\": 0.57, \"Height\": 0.2, \"Whole_weight\": 2.033, \"Shucked_weight\": 0.7509999999999999, \"Viscera_weight\": 0.4255, \"Shell_weight\": 0.685, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.525, \"Height\": 0.185, \"Whole_weight\": 1.2590000000000001, \"Shucked_weight\": 0.48700000000000004, \"Viscera_weight\": 0.2215, \"Shell_weight\": 0.445, \"Rings\": 20, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.48, \"Height\": 0.23, \"Whole_weight\": 1.0935, \"Shucked_weight\": 0.40299999999999997, \"Viscera_weight\": 0.245, \"Shell_weight\": 0.355, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.18, \"Whole_weight\": 1.1805, \"Shucked_weight\": 0.4345, \"Viscera_weight\": 0.2475, \"Shell_weight\": 0.425, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.405, \"Height\": 0.13, \"Whole_weight\": 0.7175, \"Shucked_weight\": 0.3725, \"Viscera_weight\": 0.158, \"Shell_weight\": 0.17, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.405, \"Height\": 0.135, \"Whole_weight\": 0.7575, \"Shucked_weight\": 0.3305, \"Viscera_weight\": 0.21600000000000003, \"Shell_weight\": 0.195, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.44, \"Diameter\": 0.375, \"Height\": 0.13, \"Whole_weight\": 0.48700000000000004, \"Shucked_weight\": 0.226, \"Viscera_weight\": 0.0965, \"Shell_weight\": 0.155, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.415, \"Height\": 0.14, \"Whole_weight\": 0.5705, \"Shucked_weight\": 0.25, \"Viscera_weight\": 0.134, \"Shell_weight\": 0.185, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.495, \"Diameter\": 0.385, \"Height\": 0.13, \"Whole_weight\": 0.6905, \"Shucked_weight\": 0.3125, \"Viscera_weight\": 0.179, \"Shell_weight\": 0.175, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.345, \"Height\": 0.12, \"Whole_weight\": 0.4475, \"Shucked_weight\": 0.221, \"Viscera_weight\": 0.11199999999999999, \"Shell_weight\": 0.125, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.315, \"Height\": 0.105, \"Whole_weight\": 0.34700000000000003, \"Shucked_weight\": 0.1605, \"Viscera_weight\": 0.0785, \"Shell_weight\": 0.1, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.33, \"Height\": 0.1, \"Whole_weight\": 0.35200000000000004, \"Shucked_weight\": 0.1635, \"Viscera_weight\": 0.08900000000000001, \"Shell_weight\": 0.1, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.395, \"Height\": 0.15, \"Whole_weight\": 0.7145, \"Shucked_weight\": 0.3235, \"Viscera_weight\": 0.17300000000000001, \"Shell_weight\": 0.195, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.385, \"Diameter\": 0.305, \"Height\": 0.105, \"Whole_weight\": 0.3315, \"Shucked_weight\": 0.1365, \"Viscera_weight\": 0.0745, \"Shell_weight\": 0.1, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.33, \"Diameter\": 0.265, \"Height\": 0.09, \"Whole_weight\": 0.18, \"Shucked_weight\": 0.068, \"Viscera_weight\": 0.036000000000000004, \"Shell_weight\": 0.06, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 0.9740000000000001, \"Shucked_weight\": 0.4305, \"Viscera_weight\": 0.23, \"Shell_weight\": 0.285, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.27, \"Height\": 0.1, \"Whole_weight\": 0.185, \"Shucked_weight\": 0.08, \"Viscera_weight\": 0.0435, \"Shell_weight\": 0.065, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.475, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.563, \"Shucked_weight\": 0.2525, \"Viscera_weight\": 0.1205, \"Shell_weight\": 0.185, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.38, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.3215, \"Shucked_weight\": 0.1545, \"Viscera_weight\": 0.075, \"Shell_weight\": 0.095, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.34, \"Diameter\": 0.26, \"Height\": 0.09, \"Whole_weight\": 0.179, \"Shucked_weight\": 0.076, \"Viscera_weight\": 0.0525, \"Shell_weight\": 0.055, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.425, \"Height\": 0.12, \"Whole_weight\": 0.7020000000000001, \"Shucked_weight\": 0.3335, \"Viscera_weight\": 0.1465, \"Shell_weight\": 0.22, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.415, \"Height\": 0.145, \"Whole_weight\": 0.8045, \"Shucked_weight\": 0.3325, \"Viscera_weight\": 0.1725, \"Shell_weight\": 0.285, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.45, \"Height\": 0.135, \"Whole_weight\": 0.8075, \"Shucked_weight\": 0.322, \"Viscera_weight\": 0.18100000000000002, \"Shell_weight\": 0.25, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.475, \"Diameter\": 0.36, \"Height\": 0.12, \"Whole_weight\": 0.578, \"Shucked_weight\": 0.2825, \"Viscera_weight\": 0.12, \"Shell_weight\": 0.17, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.385, \"Shucked_weight\": 0.16699999999999998, \"Viscera_weight\": 0.08, \"Shell_weight\": 0.125, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.385, \"Height\": 0.125, \"Whole_weight\": 0.585, \"Shucked_weight\": 0.2755, \"Viscera_weight\": 0.1235, \"Shell_weight\": 0.165, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.48, \"Diameter\": 0.405, \"Height\": 0.13, \"Whole_weight\": 0.6375, \"Shucked_weight\": 0.27699999999999997, \"Viscera_weight\": 0.1445, \"Shell_weight\": 0.21, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.425, \"Height\": 0.15, \"Whole_weight\": 0.813, \"Shucked_weight\": 0.385, \"Viscera_weight\": 0.2015, \"Shell_weight\": 0.23, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.375, \"Height\": 0.13, \"Whole_weight\": 0.5735, \"Shucked_weight\": 0.2505, \"Viscera_weight\": 0.11900000000000001, \"Shell_weight\": 0.195, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.455, \"Height\": 0.12, \"Whole_weight\": 0.94, \"Shucked_weight\": 0.39899999999999997, \"Viscera_weight\": 0.257, \"Shell_weight\": 0.265, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.49, \"Height\": 0.135, \"Whole_weight\": 1.008, \"Shucked_weight\": 0.42200000000000004, \"Viscera_weight\": 0.2245, \"Shell_weight\": 0.285, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.415, \"Height\": 0.135, \"Whole_weight\": 0.775, \"Shucked_weight\": 0.302, \"Viscera_weight\": 0.179, \"Shell_weight\": 0.26, \"Rings\": 23, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.1445, \"Shucked_weight\": 0.485, \"Viscera_weight\": 0.218, \"Shell_weight\": 0.365, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.465, \"Diameter\": 0.375, \"Height\": 0.135, \"Whole_weight\": 0.6, \"Shucked_weight\": 0.2225, \"Viscera_weight\": 0.129, \"Shell_weight\": 0.23, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.455, \"Diameter\": 0.355, \"Height\": 0.13, \"Whole_weight\": 0.515, \"Shucked_weight\": 0.2, \"Viscera_weight\": 0.1275, \"Shell_weight\": 0.175, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.47, \"Diameter\": 0.375, \"Height\": 0.13, \"Whole_weight\": 0.5795, \"Shucked_weight\": 0.2145, \"Viscera_weight\": 0.16399999999999998, \"Shell_weight\": 0.195, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.435, \"Diameter\": 0.35, \"Height\": 0.11, \"Whole_weight\": 0.384, \"Shucked_weight\": 0.14300000000000002, \"Viscera_weight\": 0.1005, \"Shell_weight\": 0.125, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.35, \"Diameter\": 0.265, \"Height\": 0.11, \"Whole_weight\": 0.2965, \"Shucked_weight\": 0.1365, \"Viscera_weight\": 0.063, \"Shell_weight\": 0.085, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.315, \"Diameter\": 0.24, \"Height\": 0.07, \"Whole_weight\": 0.13699999999999998, \"Shucked_weight\": 0.0545, \"Viscera_weight\": 0.0315, \"Shell_weight\": 0.04, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.47, \"Height\": 0.145, \"Whole_weight\": 0.991, \"Shucked_weight\": 0.4035, \"Viscera_weight\": 0.1505, \"Shell_weight\": 0.34, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.475, \"Height\": 0.135, \"Whole_weight\": 0.925, \"Shucked_weight\": 0.391, \"Viscera_weight\": 0.165, \"Shell_weight\": 0.275, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.435, \"Height\": 0.15, \"Whole_weight\": 0.805, \"Shucked_weight\": 0.293, \"Viscera_weight\": 0.1625, \"Shell_weight\": 0.27, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.435, \"Height\": 0.155, \"Whole_weight\": 0.8915, \"Shucked_weight\": 0.3415, \"Viscera_weight\": 0.177, \"Shell_weight\": 0.25, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.42, \"Height\": 0.14, \"Whole_weight\": 0.769, \"Shucked_weight\": 0.2505, \"Viscera_weight\": 0.154, \"Shell_weight\": 0.29, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.385, \"Height\": 0.135, \"Whole_weight\": 0.6185, \"Shucked_weight\": 0.251, \"Viscera_weight\": 0.1175, \"Shell_weight\": 0.2, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.395, \"Height\": 0.145, \"Whole_weight\": 0.6515, \"Shucked_weight\": 0.2695, \"Viscera_weight\": 0.153, \"Shell_weight\": 0.205, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.31, \"Height\": 0.1, \"Whole_weight\": 0.2875, \"Shucked_weight\": 0.1145, \"Viscera_weight\": 0.0635, \"Shell_weight\": 0.095, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.395, \"Height\": 0.135, \"Whole_weight\": 0.5545, \"Shucked_weight\": 0.213, \"Viscera_weight\": 0.0925, \"Shell_weight\": 0.215, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.435, \"Height\": 0.135, \"Whole_weight\": 0.7365, \"Shucked_weight\": 0.3275, \"Viscera_weight\": 0.1315, \"Shell_weight\": 0.22, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.325, \"Height\": 0.105, \"Whole_weight\": 0.306, \"Shucked_weight\": 0.111, \"Viscera_weight\": 0.0735, \"Shell_weight\": 0.095, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.535, \"Height\": 0.19, \"Whole_weight\": 1.496, \"Shucked_weight\": 0.5775, \"Viscera_weight\": 0.2815, \"Shell_weight\": 0.475, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.415, \"Diameter\": 0.305, \"Height\": 0.105, \"Whole_weight\": 0.3605, \"Shucked_weight\": 0.12, \"Viscera_weight\": 0.08199999999999999, \"Shell_weight\": 0.1, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.43, \"Diameter\": 0.345, \"Height\": 0.115, \"Whole_weight\": 0.3045, \"Shucked_weight\": 0.0925, \"Viscera_weight\": 0.055, \"Shell_weight\": 0.12, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.475, \"Diameter\": 0.395, \"Height\": 0.135, \"Whole_weight\": 0.5920000000000001, \"Shucked_weight\": 0.2465, \"Viscera_weight\": 0.1645, \"Shell_weight\": 0.2, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.425, \"Height\": 0.145, \"Whole_weight\": 0.7995, \"Shucked_weight\": 0.3345, \"Viscera_weight\": 0.209, \"Shell_weight\": 0.24, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.39, \"Height\": 0.145, \"Whole_weight\": 0.5825, \"Shucked_weight\": 0.2315, \"Viscera_weight\": 0.121, \"Shell_weight\": 0.255, \"Rings\": 15, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.345, \"Height\": 0.115, \"Whole_weight\": 0.3435, \"Shucked_weight\": 0.1515, \"Viscera_weight\": 0.0795, \"Shell_weight\": 0.115, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.46, \"Height\": 0.155, \"Whole_weight\": 0.9059999999999999, \"Shucked_weight\": 0.327, \"Viscera_weight\": 0.1485, \"Shell_weight\": 0.335, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.42, \"Height\": 0.135, \"Whole_weight\": 0.6295, \"Shucked_weight\": 0.2815, \"Viscera_weight\": 0.127, \"Shell_weight\": 0.215, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.695, \"Diameter\": 0.55, \"Height\": 0.22, \"Whole_weight\": 1.5515, \"Shucked_weight\": 0.5660000000000001, \"Viscera_weight\": 0.3835, \"Shell_weight\": 0.445, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.8, \"Diameter\": 0.63, \"Height\": 0.195, \"Whole_weight\": 2.526, \"Shucked_weight\": 0.9329999999999999, \"Viscera_weight\": 0.59, \"Shell_weight\": 0.62, \"Rings\": 23, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.49, \"Height\": 0.15, \"Whole_weight\": 1.103, \"Shucked_weight\": 0.425, \"Viscera_weight\": 0.2025, \"Shell_weight\": 0.36, \"Rings\": 23, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.48, \"Height\": 0.175, \"Whole_weight\": 0.9570000000000001, \"Shucked_weight\": 0.3885, \"Viscera_weight\": 0.215, \"Shell_weight\": 0.275, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.455, \"Height\": 0.165, \"Whole_weight\": 0.86, \"Shucked_weight\": 0.4015, \"Viscera_weight\": 0.1695, \"Shell_weight\": 0.245, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.485, \"Height\": 0.195, \"Whole_weight\": 1.62, \"Shucked_weight\": 0.6275, \"Viscera_weight\": 0.358, \"Shell_weight\": 0.485, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.52, \"Height\": 0.2, \"Whole_weight\": 1.4069999999999998, \"Shucked_weight\": 0.5660000000000001, \"Viscera_weight\": 0.304, \"Shell_weight\": 0.455, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.47, \"Height\": 0.17, \"Whole_weight\": 0.9, \"Shucked_weight\": 0.355, \"Viscera_weight\": 0.1905, \"Shell_weight\": 0.25, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.31, \"Diameter\": 0.24, \"Height\": 0.09, \"Whole_weight\": 0.1455, \"Shucked_weight\": 0.0605, \"Viscera_weight\": 0.0315, \"Shell_weight\": 0.045, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.255, \"Diameter\": 0.185, \"Height\": 0.07, \"Whole_weight\": 0.075, \"Shucked_weight\": 0.027999999999999997, \"Viscera_weight\": 0.018000000000000002, \"Shell_weight\": 0.025, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.17, \"Diameter\": 0.125, \"Height\": 0.055, \"Whole_weight\": 0.0235, \"Shucked_weight\": 0.009000000000000001, \"Viscera_weight\": 0.0055, \"Shell_weight\": 0.008, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.55, \"Height\": 0.17, \"Whole_weight\": 1.247, \"Shucked_weight\": 0.47200000000000003, \"Viscera_weight\": 0.2455, \"Shell_weight\": 0.4, \"Rings\": 21, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.71, \"Diameter\": 0.565, \"Height\": 0.195, \"Whole_weight\": 1.7265, \"Shucked_weight\": 0.638, \"Viscera_weight\": 0.3365, \"Shell_weight\": 0.565, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.43, \"Height\": 0.125, \"Whole_weight\": 0.8025, \"Shucked_weight\": 0.313, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.263, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.764, \"Shucked_weight\": 0.3035, \"Viscera_weight\": 0.18899999999999997, \"Shell_weight\": 0.2175, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.43, \"Height\": 0.165, \"Whole_weight\": 0.8645, \"Shucked_weight\": 0.376, \"Viscera_weight\": 0.1945, \"Shell_weight\": 0.2515, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.45, \"Diameter\": 0.36, \"Height\": 0.105, \"Whole_weight\": 0.4715, \"Shucked_weight\": 0.2035, \"Viscera_weight\": 0.0935, \"Shell_weight\": 0.149, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.435, \"Height\": 0.17, \"Whole_weight\": 0.631, \"Shucked_weight\": 0.2765, \"Viscera_weight\": 0.111, \"Shell_weight\": 0.21600000000000003, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 0.9455, \"Shucked_weight\": 0.3815, \"Viscera_weight\": 0.184, \"Shell_weight\": 0.27, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.53, \"Height\": 0.19, \"Whole_weight\": 1.3185, \"Shucked_weight\": 0.5479999999999999, \"Viscera_weight\": 0.233, \"Shell_weight\": 0.42, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.56, \"Height\": 0.175, \"Whole_weight\": 1.7265, \"Shucked_weight\": 0.637, \"Viscera_weight\": 0.3415, \"Shell_weight\": 0.525, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.495, \"Height\": 0.15, \"Whole_weight\": 1.081, \"Shucked_weight\": 0.4825, \"Viscera_weight\": 0.242, \"Shell_weight\": 0.31, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.44, \"Height\": 0.135, \"Whole_weight\": 0.9025, \"Shucked_weight\": 0.3805, \"Viscera_weight\": 0.2105, \"Shell_weight\": 0.28, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 1.1415, \"Shucked_weight\": 0.4515, \"Viscera_weight\": 0.204, \"Shell_weight\": 0.4, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.455, \"Height\": 0.125, \"Whole_weight\": 1.0270000000000001, \"Shucked_weight\": 0.391, \"Viscera_weight\": 0.212, \"Shell_weight\": 0.25, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.485, \"Height\": 0.21, \"Whole_weight\": 1.3445, \"Shucked_weight\": 0.535, \"Viscera_weight\": 0.2205, \"Shell_weight\": 0.515, \"Rings\": 20, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.525, \"Height\": 0.2, \"Whole_weight\": 1.449, \"Shucked_weight\": 0.601, \"Viscera_weight\": 0.2565, \"Shell_weight\": 0.505, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.44, \"Height\": 0.175, \"Whole_weight\": 0.7745, \"Shucked_weight\": 0.2985, \"Viscera_weight\": 0.1875, \"Shell_weight\": 0.265, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.45, \"Height\": 0.155, \"Whole_weight\": 0.7895, \"Shucked_weight\": 0.34299999999999997, \"Viscera_weight\": 0.159, \"Shell_weight\": 0.25, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.525, \"Height\": 0.205, \"Whole_weight\": 1.3665, \"Shucked_weight\": 0.5005, \"Viscera_weight\": 0.29100000000000004, \"Shell_weight\": 0.41, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.475, \"Height\": 0.195, \"Whole_weight\": 1.0295, \"Shucked_weight\": 0.4635, \"Viscera_weight\": 0.1905, \"Shell_weight\": 0.305, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.47, \"Height\": 0.2, \"Whole_weight\": 1.031, \"Shucked_weight\": 0.392, \"Viscera_weight\": 0.2035, \"Shell_weight\": 0.29, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.065, \"Shucked_weight\": 0.4595, \"Viscera_weight\": 0.21600000000000003, \"Shell_weight\": 0.315, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.695, \"Diameter\": 0.57, \"Height\": 0.23, \"Whole_weight\": 1.885, \"Shucked_weight\": 0.8665, \"Viscera_weight\": 0.435, \"Shell_weight\": 0.5, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.545, \"Height\": 0.16, \"Whole_weight\": 1.2425, \"Shucked_weight\": 0.48700000000000004, \"Viscera_weight\": 0.29600000000000004, \"Shell_weight\": 0.48, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.595, \"Height\": 0.225, \"Whole_weight\": 1.969, \"Shucked_weight\": 0.8045, \"Viscera_weight\": 0.423, \"Shell_weight\": 0.66, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.44, \"Height\": 0.17, \"Whole_weight\": 0.9445, \"Shucked_weight\": 0.3545, \"Viscera_weight\": 0.2175, \"Shell_weight\": 0.3, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.325, \"Height\": 0.115, \"Whole_weight\": 0.354, \"Shucked_weight\": 0.1625, \"Viscera_weight\": 0.064, \"Shell_weight\": 0.105, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.18, \"Diameter\": 0.125, \"Height\": 0.05, \"Whole_weight\": 0.023, \"Shucked_weight\": 0.0085, \"Viscera_weight\": 0.0055, \"Shell_weight\": 0.01, \"Rings\": 3, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.405, \"Diameter\": 0.325, \"Height\": 0.11, \"Whole_weight\": 0.3575, \"Shucked_weight\": 0.145, \"Viscera_weight\": 0.0725, \"Shell_weight\": 0.11, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.405, \"Height\": 0.15, \"Whole_weight\": 0.5965, \"Shucked_weight\": 0.253, \"Viscera_weight\": 0.126, \"Shell_weight\": 0.185, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.335, \"Height\": 0.11, \"Whole_weight\": 0.38299999999999995, \"Shucked_weight\": 0.1555, \"Viscera_weight\": 0.0675, \"Shell_weight\": 0.135, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.34, \"Diameter\": 0.275, \"Height\": 0.09, \"Whole_weight\": 0.2065, \"Shucked_weight\": 0.0725, \"Viscera_weight\": 0.043, \"Shell_weight\": 0.07, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.43, \"Diameter\": 0.34, \"Height\": 0.11, \"Whole_weight\": 0.382, \"Shucked_weight\": 0.154, \"Viscera_weight\": 0.0955, \"Shell_weight\": 0.109, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.41, \"Height\": 0.155, \"Whole_weight\": 0.6315, \"Shucked_weight\": 0.2745, \"Viscera_weight\": 0.1415, \"Shell_weight\": 0.1815, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.325, \"Height\": 0.115, \"Whole_weight\": 0.3285, \"Shucked_weight\": 0.1405, \"Viscera_weight\": 0.051, \"Shell_weight\": 0.106, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.36, \"Diameter\": 0.265, \"Height\": 0.09, \"Whole_weight\": 0.2165, \"Shucked_weight\": 0.096, \"Viscera_weight\": 0.037000000000000005, \"Shell_weight\": 0.0735, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.175, \"Diameter\": 0.135, \"Height\": 0.04, \"Whole_weight\": 0.0305, \"Shucked_weight\": 0.011000000000000001, \"Viscera_weight\": 0.0075, \"Shell_weight\": 0.01, \"Rings\": 5, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.155, \"Diameter\": 0.115, \"Height\": 0.025, \"Whole_weight\": 0.024, \"Shucked_weight\": 0.009000000000000001, \"Viscera_weight\": 0.005, \"Shell_weight\": 0.0075, \"Rings\": 5, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.7365, \"Shucked_weight\": 0.3225, \"Viscera_weight\": 0.161, \"Shell_weight\": 0.215, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.39, \"Height\": 0.135, \"Whole_weight\": 0.6005, \"Shucked_weight\": 0.2265, \"Viscera_weight\": 0.131, \"Shell_weight\": 0.21, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.44, \"Diameter\": 0.345, \"Height\": 0.105, \"Whole_weight\": 0.4285, \"Shucked_weight\": 0.165, \"Viscera_weight\": 0.083, \"Shell_weight\": 0.132, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.45, \"Diameter\": 0.345, \"Height\": 0.115, \"Whole_weight\": 0.496, \"Shucked_weight\": 0.1905, \"Viscera_weight\": 0.11699999999999999, \"Shell_weight\": 0.14, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.485, \"Diameter\": 0.365, \"Height\": 0.14, \"Whole_weight\": 0.6195, \"Shucked_weight\": 0.2595, \"Viscera_weight\": 0.1445, \"Shell_weight\": 0.177, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.35, \"Height\": 0.135, \"Whole_weight\": 0.5670000000000001, \"Shucked_weight\": 0.2315, \"Viscera_weight\": 0.1465, \"Shell_weight\": 0.1525, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.375, \"Height\": 0.14, \"Whole_weight\": 0.6505, \"Shucked_weight\": 0.2495, \"Viscera_weight\": 0.141, \"Shell_weight\": 0.2215, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.42, \"Diameter\": 0.34, \"Height\": 0.125, \"Whole_weight\": 0.4495, \"Shucked_weight\": 0.165, \"Viscera_weight\": 0.1125, \"Shell_weight\": 0.14400000000000002, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.455, \"Diameter\": 0.35, \"Height\": 0.125, \"Whole_weight\": 0.4485, \"Shucked_weight\": 0.1585, \"Viscera_weight\": 0.102, \"Shell_weight\": 0.1335, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.37, \"Diameter\": 0.29, \"Height\": 0.09, \"Whole_weight\": 0.24100000000000002, \"Shucked_weight\": 0.11, \"Viscera_weight\": 0.045, \"Shell_weight\": 0.069, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.33, \"Diameter\": 0.25, \"Height\": 0.09, \"Whole_weight\": 0.19699999999999998, \"Shucked_weight\": 0.085, \"Viscera_weight\": 0.040999999999999995, \"Shell_weight\": 0.0605, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.3, \"Diameter\": 0.22, \"Height\": 0.09, \"Whole_weight\": 0.1425, \"Shucked_weight\": 0.057, \"Viscera_weight\": 0.0335, \"Shell_weight\": 0.043, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.625, \"Diameter\": 0.46, \"Height\": 0.16, \"Whole_weight\": 1.2395, \"Shucked_weight\": 0.55, \"Viscera_weight\": 0.273, \"Shell_weight\": 0.38, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.61, \"Diameter\": 0.475, \"Height\": 0.17, \"Whole_weight\": 1.0385, \"Shucked_weight\": 0.4435, \"Viscera_weight\": 0.24100000000000002, \"Shell_weight\": 0.32, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.625, \"Diameter\": 0.465, \"Height\": 0.155, \"Whole_weight\": 0.972, \"Shucked_weight\": 0.40399999999999997, \"Viscera_weight\": 0.1845, \"Shell_weight\": 0.35, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.635, \"Diameter\": 0.505, \"Height\": 0.19, \"Whole_weight\": 1.3315, \"Shucked_weight\": 0.5805, \"Viscera_weight\": 0.252, \"Shell_weight\": 0.435, \"Rings\": 17, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.385, \"Height\": 0.155, \"Whole_weight\": 0.762, \"Shucked_weight\": 0.3795, \"Viscera_weight\": 0.161, \"Shell_weight\": 0.19, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.43, \"Height\": 0.17, \"Whole_weight\": 0.775, \"Shucked_weight\": 0.35, \"Viscera_weight\": 0.152, \"Shell_weight\": 0.235, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.33, \"Height\": 0.1, \"Whole_weight\": 0.43700000000000006, \"Shucked_weight\": 0.163, \"Viscera_weight\": 0.0755, \"Shell_weight\": 0.17, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.415, \"Height\": 0.155, \"Whole_weight\": 0.6985, \"Shucked_weight\": 0.3, \"Viscera_weight\": 0.146, \"Shell_weight\": 0.195, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.355, \"Height\": 0.165, \"Whole_weight\": 0.435, \"Shucked_weight\": 0.159, \"Viscera_weight\": 0.105, \"Shell_weight\": 0.14, \"Rings\": 16, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.29, \"Diameter\": 0.225, \"Height\": 0.08, \"Whole_weight\": 0.1295, \"Shucked_weight\": 0.0535, \"Viscera_weight\": 0.026000000000000002, \"Shell_weight\": 0.045, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.555, \"Diameter\": 0.455, \"Height\": 0.17, \"Whole_weight\": 0.8435, \"Shucked_weight\": 0.309, \"Viscera_weight\": 0.1905, \"Shell_weight\": 0.3, \"Rings\": 15, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.655, \"Diameter\": 0.515, \"Height\": 0.145, \"Whole_weight\": 1.25, \"Shucked_weight\": 0.5265, \"Viscera_weight\": 0.28300000000000003, \"Shell_weight\": 0.315, \"Rings\": 15, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.185, \"Whole_weight\": 1.0170000000000001, \"Shucked_weight\": 0.3515, \"Viscera_weight\": 0.2, \"Shell_weight\": 0.32, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.625, \"Diameter\": 0.43, \"Height\": 0.175, \"Whole_weight\": 1.411, \"Shucked_weight\": 0.5720000000000001, \"Viscera_weight\": 0.297, \"Shell_weight\": 0.395, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.62, \"Diameter\": 0.485, \"Height\": 0.17, \"Whole_weight\": 1.208, \"Shucked_weight\": 0.4805, \"Viscera_weight\": 0.3045, \"Shell_weight\": 0.33, \"Rings\": 15, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.5, \"Height\": 0.15, \"Whole_weight\": 1.0705, \"Shucked_weight\": 0.371, \"Viscera_weight\": 0.2705, \"Shell_weight\": 0.36, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.375, \"Height\": 0.115, \"Whole_weight\": 0.5895, \"Shucked_weight\": 0.2635, \"Viscera_weight\": 0.12, \"Shell_weight\": 0.16699999999999998, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.395, \"Height\": 0.12, \"Whole_weight\": 0.537, \"Shucked_weight\": 0.2165, \"Viscera_weight\": 0.1085, \"Shell_weight\": 0.1785, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.31, \"Diameter\": 0.245, \"Height\": 0.095, \"Whole_weight\": 0.15, \"Shucked_weight\": 0.0525, \"Viscera_weight\": 0.034, \"Shell_weight\": 0.048, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.38, \"Height\": 0.145, \"Whole_weight\": 0.6509999999999999, \"Shucked_weight\": 0.2935, \"Viscera_weight\": 0.19, \"Shell_weight\": 0.17, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.305, \"Height\": 0.11, \"Whole_weight\": 0.28, \"Shucked_weight\": 0.094, \"Viscera_weight\": 0.0785, \"Shell_weight\": 0.0955, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.4, \"Diameter\": 0.315, \"Height\": 0.105, \"Whole_weight\": 0.287, \"Shucked_weight\": 0.1135, \"Viscera_weight\": 0.037000000000000005, \"Shell_weight\": 0.113, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.425, \"Diameter\": 0.315, \"Height\": 0.125, \"Whole_weight\": 0.3525, \"Shucked_weight\": 0.1135, \"Viscera_weight\": 0.0565, \"Shell_weight\": 0.13, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.31, \"Diameter\": 0.235, \"Height\": 0.06, \"Whole_weight\": 0.12, \"Shucked_weight\": 0.0415, \"Viscera_weight\": 0.033, \"Shell_weight\": 0.04, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.465, \"Diameter\": 0.35, \"Height\": 0.13, \"Whole_weight\": 0.494, \"Shucked_weight\": 0.1945, \"Viscera_weight\": 0.10300000000000001, \"Shell_weight\": 0.155, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.465, \"Diameter\": 0.36, \"Height\": 0.12, \"Whole_weight\": 0.4765, \"Shucked_weight\": 0.192, \"Viscera_weight\": 0.1125, \"Shell_weight\": 0.16, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.35, \"Diameter\": 0.255, \"Height\": 0.085, \"Whole_weight\": 0.2145, \"Shucked_weight\": 0.1, \"Viscera_weight\": 0.0465, \"Shell_weight\": 0.06, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.415, \"Height\": 0.16, \"Whole_weight\": 0.595, \"Shucked_weight\": 0.2105, \"Viscera_weight\": 0.142, \"Shell_weight\": 0.26, \"Rings\": 15, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.365, \"Height\": 0.13, \"Whole_weight\": 0.4805, \"Shucked_weight\": 0.1905, \"Viscera_weight\": 0.114, \"Shell_weight\": 0.1475, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.41, \"Diameter\": 0.315, \"Height\": 0.11, \"Whole_weight\": 0.321, \"Shucked_weight\": 0.1255, \"Viscera_weight\": 0.0655, \"Shell_weight\": 0.095, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.26, \"Diameter\": 0.2, \"Height\": 0.065, \"Whole_weight\": 0.096, \"Shucked_weight\": 0.044000000000000004, \"Viscera_weight\": 0.027000000000000003, \"Shell_weight\": 0.03, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.17, \"Whole_weight\": 0.9315, \"Shucked_weight\": 0.358, \"Viscera_weight\": 0.2145, \"Shell_weight\": 0.26, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.565, \"Diameter\": 0.435, \"Height\": 0.155, \"Whole_weight\": 0.782, \"Shucked_weight\": 0.2715, \"Viscera_weight\": 0.168, \"Shell_weight\": 0.285, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.26, \"Diameter\": 0.19, \"Height\": 0.075, \"Whole_weight\": 0.0945, \"Shucked_weight\": 0.0445, \"Viscera_weight\": 0.02, \"Shell_weight\": 0.03, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.385, \"Height\": 0.125, \"Whole_weight\": 0.6695, \"Shucked_weight\": 0.289, \"Viscera_weight\": 0.151, \"Shell_weight\": 0.18, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.34, \"Diameter\": 0.255, \"Height\": 0.095, \"Whole_weight\": 0.213, \"Shucked_weight\": 0.081, \"Viscera_weight\": 0.034, \"Shell_weight\": 0.07, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.38, \"Height\": 0.14, \"Whole_weight\": 0.525, \"Shucked_weight\": 0.1775, \"Viscera_weight\": 0.115, \"Shell_weight\": 0.185, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.5, \"Height\": 0.18, \"Whole_weight\": 1.3119999999999998, \"Shucked_weight\": 0.529, \"Viscera_weight\": 0.2485, \"Shell_weight\": 0.485, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.485, \"Height\": 0.165, \"Whole_weight\": 1.087, \"Shucked_weight\": 0.4255, \"Viscera_weight\": 0.23199999999999998, \"Shell_weight\": 0.38, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.515, \"Height\": 0.18, \"Whole_weight\": 1.5230000000000001, \"Shucked_weight\": 0.54, \"Viscera_weight\": 0.3365, \"Shell_weight\": 0.555, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.635, \"Diameter\": 0.5, \"Height\": 0.18, \"Whole_weight\": 1.319, \"Shucked_weight\": 0.5485, \"Viscera_weight\": 0.292, \"Shell_weight\": 0.49, \"Rings\": 16, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.465, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.579, \"Shucked_weight\": 0.20800000000000002, \"Viscera_weight\": 0.1095, \"Shell_weight\": 0.22, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.4, \"Height\": 0.16, \"Whole_weight\": 0.8175, \"Shucked_weight\": 0.2515, \"Viscera_weight\": 0.156, \"Shell_weight\": 0.3, \"Rings\": 23, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.24, \"Height\": 0.095, \"Whole_weight\": 0.17, \"Shucked_weight\": 0.062, \"Viscera_weight\": 0.039, \"Shell_weight\": 0.055, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.4, \"Height\": 0.17, \"Whole_weight\": 0.7959999999999999, \"Shucked_weight\": 0.258, \"Viscera_weight\": 0.1755, \"Shell_weight\": 0.28, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.345, \"Diameter\": 0.255, \"Height\": 0.1, \"Whole_weight\": 0.19699999999999998, \"Shucked_weight\": 0.071, \"Viscera_weight\": 0.051, \"Shell_weight\": 0.06, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.355, \"Height\": 0.125, \"Whole_weight\": 0.5255, \"Shucked_weight\": 0.2025, \"Viscera_weight\": 0.135, \"Shell_weight\": 0.145, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.415, \"Height\": 0.17, \"Whole_weight\": 0.879, \"Shucked_weight\": 0.33899999999999997, \"Viscera_weight\": 0.20800000000000002, \"Shell_weight\": 0.255, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.475, \"Diameter\": 0.355, \"Height\": 0.125, \"Whole_weight\": 0.4625, \"Shucked_weight\": 0.18600000000000003, \"Viscera_weight\": 0.107, \"Shell_weight\": 0.145, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.445, \"Diameter\": 0.335, \"Height\": 0.14, \"Whole_weight\": 0.4565, \"Shucked_weight\": 0.1785, \"Viscera_weight\": 0.114, \"Shell_weight\": 0.14, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.355, \"Height\": 0.14, \"Whole_weight\": 0.528, \"Shucked_weight\": 0.2125, \"Viscera_weight\": 0.149, \"Shell_weight\": 0.14, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.5835, \"Shucked_weight\": 0.2295, \"Viscera_weight\": 0.1265, \"Shell_weight\": 0.18, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.435, \"Height\": 0.17, \"Whole_weight\": 0.884, \"Shucked_weight\": 0.2875, \"Viscera_weight\": 0.1645, \"Shell_weight\": 0.28, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.205, \"Height\": 0.08, \"Whole_weight\": 0.096, \"Shucked_weight\": 0.036000000000000004, \"Viscera_weight\": 0.0185, \"Shell_weight\": 0.03, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.35, \"Diameter\": 0.265, \"Height\": 0.09, \"Whole_weight\": 0.1855, \"Shucked_weight\": 0.0745, \"Viscera_weight\": 0.0415, \"Shell_weight\": 0.06, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.37, \"Diameter\": 0.285, \"Height\": 0.105, \"Whole_weight\": 0.27, \"Shucked_weight\": 0.1125, \"Viscera_weight\": 0.0585, \"Shell_weight\": 0.0835, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.42, \"Diameter\": 0.33, \"Height\": 0.125, \"Whole_weight\": 0.46299999999999997, \"Shucked_weight\": 0.18600000000000003, \"Viscera_weight\": 0.11, \"Shell_weight\": 0.145, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.35, \"Diameter\": 0.26, \"Height\": 0.09, \"Whole_weight\": 0.198, \"Shucked_weight\": 0.0725, \"Viscera_weight\": 0.055999999999999994, \"Shell_weight\": 0.06, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.395, \"Diameter\": 0.305, \"Height\": 0.105, \"Whole_weight\": 0.282, \"Shucked_weight\": 0.0975, \"Viscera_weight\": 0.065, \"Shell_weight\": 0.096, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.2, \"Height\": 0.08, \"Whole_weight\": 0.0995, \"Shucked_weight\": 0.0395, \"Viscera_weight\": 0.0225, \"Shell_weight\": 0.032, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.2, \"Height\": 0.065, \"Whole_weight\": 0.092, \"Shucked_weight\": 0.0385, \"Viscera_weight\": 0.0235, \"Shell_weight\": 0.027000000000000003, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.235, \"Diameter\": 0.17, \"Height\": 0.065, \"Whole_weight\": 0.0625, \"Shucked_weight\": 0.023, \"Viscera_weight\": 0.013999999999999999, \"Shell_weight\": 0.022000000000000002, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.25, \"Diameter\": 0.18, \"Height\": 0.06, \"Whole_weight\": 0.073, \"Shucked_weight\": 0.027999999999999997, \"Viscera_weight\": 0.017, \"Shell_weight\": 0.0225, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.25, \"Diameter\": 0.185, \"Height\": 0.065, \"Whole_weight\": 0.071, \"Shucked_weight\": 0.027000000000000003, \"Viscera_weight\": 0.0185, \"Shell_weight\": 0.0225, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.2, \"Diameter\": 0.145, \"Height\": 0.05, \"Whole_weight\": 0.036000000000000004, \"Shucked_weight\": 0.0125, \"Viscera_weight\": 0.008, \"Shell_weight\": 0.011000000000000001, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.47, \"Height\": 0.17, \"Whole_weight\": 1.099, \"Shucked_weight\": 0.3975, \"Viscera_weight\": 0.2325, \"Shell_weight\": 0.358, \"Rings\": 20, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.445, \"Diameter\": 0.35, \"Height\": 0.14, \"Whole_weight\": 0.5905, \"Shucked_weight\": 0.2025, \"Viscera_weight\": 0.158, \"Shell_weight\": 0.19, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.385, \"Height\": 0.13, \"Whole_weight\": 0.768, \"Shucked_weight\": 0.2625, \"Viscera_weight\": 0.095, \"Shell_weight\": 0.27, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.44, \"Diameter\": 0.325, \"Height\": 0.08, \"Whole_weight\": 0.413, \"Shucked_weight\": 0.14400000000000002, \"Viscera_weight\": 0.1015, \"Shell_weight\": 0.13, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.405, \"Height\": 0.14, \"Whole_weight\": 0.8505, \"Shucked_weight\": 0.312, \"Viscera_weight\": 0.146, \"Shell_weight\": 0.315, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.405, \"Height\": 0.14, \"Whole_weight\": 0.6915, \"Shucked_weight\": 0.276, \"Viscera_weight\": 0.13699999999999998, \"Shell_weight\": 0.215, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.39, \"Height\": 0.13, \"Whole_weight\": 0.7090000000000001, \"Shucked_weight\": 0.275, \"Viscera_weight\": 0.168, \"Shell_weight\": 0.18, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.425, \"Diameter\": 0.325, \"Height\": 0.12, \"Whole_weight\": 0.3755, \"Shucked_weight\": 0.142, \"Viscera_weight\": 0.1065, \"Shell_weight\": 0.105, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.415, \"Height\": 0.14, \"Whole_weight\": 0.8185, \"Shucked_weight\": 0.3025, \"Viscera_weight\": 0.2155, \"Shell_weight\": 0.235, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.37, \"Diameter\": 0.275, \"Height\": 0.08, \"Whole_weight\": 0.22699999999999998, \"Shucked_weight\": 0.09300000000000001, \"Viscera_weight\": 0.0625, \"Shell_weight\": 0.07, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.415, \"Height\": 0.13, \"Whole_weight\": 0.8245, \"Shucked_weight\": 0.272, \"Viscera_weight\": 0.226, \"Shell_weight\": 0.24, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.17, \"Whole_weight\": 1.1825, \"Shucked_weight\": 0.474, \"Viscera_weight\": 0.2895, \"Shell_weight\": 0.24, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.175, \"Whole_weight\": 1.122, \"Shucked_weight\": 0.39299999999999996, \"Viscera_weight\": 0.2, \"Shell_weight\": 0.375, \"Rings\": 20, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.515, \"Height\": 0.175, \"Whole_weight\": 1.6115, \"Shucked_weight\": 0.6745, \"Viscera_weight\": 0.384, \"Shell_weight\": 0.385, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.47, \"Height\": 0.175, \"Whole_weight\": 1.2985, \"Shucked_weight\": 0.5135, \"Viscera_weight\": 0.34299999999999997, \"Shell_weight\": 0.32, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.49, \"Height\": 0.145, \"Whole_weight\": 1.3, \"Shucked_weight\": 0.517, \"Viscera_weight\": 0.3285, \"Shell_weight\": 0.31, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.455, \"Height\": 0.165, \"Whole_weight\": 1.161, \"Shucked_weight\": 0.38, \"Viscera_weight\": 0.2455, \"Shell_weight\": 0.28, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.485, \"Height\": 0.155, \"Whole_weight\": 1.489, \"Shucked_weight\": 0.5915, \"Viscera_weight\": 0.312, \"Shell_weight\": 0.38, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.42, \"Height\": 0.155, \"Whole_weight\": 1.008, \"Shucked_weight\": 0.377, \"Viscera_weight\": 0.193, \"Shell_weight\": 0.34, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.355, \"Height\": 0.18, \"Whole_weight\": 0.441, \"Shucked_weight\": 0.1525, \"Viscera_weight\": 0.1165, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.44, \"Height\": 0.155, \"Whole_weight\": 0.742, \"Shucked_weight\": 0.2025, \"Viscera_weight\": 0.2005, \"Shell_weight\": 0.2115, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.425, \"Height\": 0.145, \"Whole_weight\": 0.7, \"Shucked_weight\": 0.207, \"Viscera_weight\": 0.1905, \"Shell_weight\": 0.24, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.39, \"Diameter\": 0.285, \"Height\": 0.095, \"Whole_weight\": 0.271, \"Shucked_weight\": 0.11, \"Viscera_weight\": 0.06, \"Shell_weight\": 0.08, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.4, \"Height\": 0.165, \"Whole_weight\": 0.8565, \"Shucked_weight\": 0.2745, \"Viscera_weight\": 0.201, \"Shell_weight\": 0.21, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.54, \"Diameter\": 0.415, \"Height\": 0.175, \"Whole_weight\": 0.8975, \"Shucked_weight\": 0.275, \"Viscera_weight\": 0.24100000000000002, \"Shell_weight\": 0.275, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.36, \"Height\": 0.135, \"Whole_weight\": 0.6105, \"Shucked_weight\": 0.1955, \"Viscera_weight\": 0.107, \"Shell_weight\": 0.235, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.26, \"Height\": 0.09, \"Whole_weight\": 0.1925, \"Shucked_weight\": 0.077, \"Viscera_weight\": 0.038, \"Shell_weight\": 0.065, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.4, \"Height\": 0.145, \"Whole_weight\": 0.6635, \"Shucked_weight\": 0.21, \"Viscera_weight\": 0.1295, \"Shell_weight\": 0.2515, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.51, \"Height\": 0.185, \"Whole_weight\": 1.235, \"Shucked_weight\": 0.5115, \"Viscera_weight\": 0.349, \"Shell_weight\": 0.3065, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.385, \"Height\": 0.145, \"Whole_weight\": 0.7615, \"Shucked_weight\": 0.24600000000000002, \"Viscera_weight\": 0.195, \"Shell_weight\": 0.204, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.39, \"Height\": 0.135, \"Whole_weight\": 0.5920000000000001, \"Shucked_weight\": 0.242, \"Viscera_weight\": 0.096, \"Shell_weight\": 0.1835, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.44, \"Diameter\": 0.325, \"Height\": 0.115, \"Whole_weight\": 0.39, \"Shucked_weight\": 0.163, \"Viscera_weight\": 0.087, \"Shell_weight\": 0.113, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.395, \"Height\": 0.165, \"Whole_weight\": 0.7565, \"Shucked_weight\": 0.1905, \"Viscera_weight\": 0.17, \"Shell_weight\": 0.3205, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.38, \"Height\": 0.145, \"Whole_weight\": 0.57, \"Shucked_weight\": 0.16699999999999998, \"Viscera_weight\": 0.11800000000000001, \"Shell_weight\": 0.187, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.31, \"Height\": 0.1, \"Whole_weight\": 0.2865, \"Shucked_weight\": 0.115, \"Viscera_weight\": 0.0735, \"Shell_weight\": 0.085, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.4, \"Diameter\": 0.305, \"Height\": 0.13, \"Whole_weight\": 0.2935, \"Shucked_weight\": 0.096, \"Viscera_weight\": 0.0675, \"Shell_weight\": 0.105, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.36, \"Height\": 0.16, \"Whole_weight\": 0.5670000000000001, \"Shucked_weight\": 0.174, \"Viscera_weight\": 0.1245, \"Shell_weight\": 0.225, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.6245, \"Shucked_weight\": 0.215, \"Viscera_weight\": 0.2065, \"Shell_weight\": 0.17, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.4, \"Height\": 0.155, \"Whole_weight\": 0.8415, \"Shucked_weight\": 0.2715, \"Viscera_weight\": 0.1775, \"Shell_weight\": 0.285, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.4, \"Height\": 0.14, \"Whole_weight\": 0.7775, \"Shucked_weight\": 0.2015, \"Viscera_weight\": 0.18, \"Shell_weight\": 0.25, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.41, \"Height\": 0.145, \"Whole_weight\": 0.9890000000000001, \"Shucked_weight\": 0.2815, \"Viscera_weight\": 0.213, \"Shell_weight\": 0.355, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.48, \"Diameter\": 0.39, \"Height\": 0.125, \"Whole_weight\": 0.6905, \"Shucked_weight\": 0.21899999999999997, \"Viscera_weight\": 0.155, \"Shell_weight\": 0.2, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.33, \"Diameter\": 0.26, \"Height\": 0.08, \"Whole_weight\": 0.2, \"Shucked_weight\": 0.0625, \"Viscera_weight\": 0.05, \"Shell_weight\": 0.07, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.285, \"Diameter\": 0.21, \"Height\": 0.07, \"Whole_weight\": 0.109, \"Shucked_weight\": 0.044000000000000004, \"Viscera_weight\": 0.0265, \"Shell_weight\": 0.033, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.3, \"Diameter\": 0.23, \"Height\": 0.075, \"Whole_weight\": 0.127, \"Shucked_weight\": 0.052000000000000005, \"Viscera_weight\": 0.03, \"Shell_weight\": 0.0345, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.31, \"Diameter\": 0.24, \"Height\": 0.105, \"Whole_weight\": 0.2885, \"Shucked_weight\": 0.11800000000000001, \"Viscera_weight\": 0.065, \"Shell_weight\": 0.083, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.34, \"Diameter\": 0.255, \"Height\": 0.075, \"Whole_weight\": 0.18, \"Shucked_weight\": 0.0745, \"Viscera_weight\": 0.04, \"Shell_weight\": 0.0525, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.3, \"Height\": 0.075, \"Whole_weight\": 0.14400000000000002, \"Shucked_weight\": 0.059000000000000004, \"Viscera_weight\": 0.03, \"Shell_weight\": 0.044000000000000004, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.4665, \"Shucked_weight\": 0.2285, \"Viscera_weight\": 0.1065, \"Shell_weight\": 0.114, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.315, \"Height\": 0.105, \"Whole_weight\": 0.33, \"Shucked_weight\": 0.1405, \"Viscera_weight\": 0.0705, \"Shell_weight\": 0.095, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.315, \"Height\": 0.09, \"Whole_weight\": 0.3625, \"Shucked_weight\": 0.175, \"Viscera_weight\": 0.0835, \"Shell_weight\": 0.09300000000000001, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.32, \"Height\": 0.1, \"Whole_weight\": 0.34, \"Shucked_weight\": 0.1745, \"Viscera_weight\": 0.05, \"Shell_weight\": 0.0945, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.31, \"Height\": 0.105, \"Whole_weight\": 0.365, \"Shucked_weight\": 0.159, \"Viscera_weight\": 0.0825, \"Shell_weight\": 0.105, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.375, \"Height\": 0.11, \"Whole_weight\": 0.5, \"Shucked_weight\": 0.21, \"Viscera_weight\": 0.113, \"Shell_weight\": 0.1505, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.465, \"Diameter\": 0.35, \"Height\": 0.135, \"Whole_weight\": 0.6265, \"Shucked_weight\": 0.259, \"Viscera_weight\": 0.1445, \"Shell_weight\": 0.175, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.37, \"Height\": 0.11, \"Whole_weight\": 0.5555, \"Shucked_weight\": 0.25, \"Viscera_weight\": 0.115, \"Shell_weight\": 0.163, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.6015, \"Shucked_weight\": 0.2765, \"Viscera_weight\": 0.1455, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.365, \"Height\": 0.12, \"Whole_weight\": 0.53, \"Shucked_weight\": 0.2505, \"Viscera_weight\": 0.0975, \"Shell_weight\": 0.1625, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.37, \"Height\": 0.135, \"Whole_weight\": 0.6315, \"Shucked_weight\": 0.3445, \"Viscera_weight\": 0.1015, \"Shell_weight\": 0.161, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.7715, \"Shucked_weight\": 0.37, \"Viscera_weight\": 0.16, \"Shell_weight\": 0.21100000000000002, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.39, \"Height\": 0.185, \"Whole_weight\": 0.6125, \"Shucked_weight\": 0.267, \"Viscera_weight\": 0.142, \"Shell_weight\": 0.172, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.425, \"Height\": 0.19, \"Whole_weight\": 0.872, \"Shucked_weight\": 0.4625, \"Viscera_weight\": 0.1725, \"Shell_weight\": 0.19899999999999998, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.42, \"Height\": 0.12, \"Whole_weight\": 0.8115, \"Shucked_weight\": 0.392, \"Viscera_weight\": 0.1455, \"Shell_weight\": 0.2235, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 0.8795, \"Shucked_weight\": 0.387, \"Viscera_weight\": 0.15, \"Shell_weight\": 0.2625, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 0.983, \"Shucked_weight\": 0.4475, \"Viscera_weight\": 0.2355, \"Shell_weight\": 0.2485, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.18, \"Whole_weight\": 1.145, \"Shucked_weight\": 0.48, \"Viscera_weight\": 0.27699999999999997, \"Shell_weight\": 0.325, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.455, \"Height\": 0.16, \"Whole_weight\": 1.09, \"Shucked_weight\": 0.5, \"Viscera_weight\": 0.2215, \"Shell_weight\": 0.292, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.48, \"Height\": 0.16, \"Whole_weight\": 1.262, \"Shucked_weight\": 0.5685, \"Viscera_weight\": 0.2725, \"Shell_weight\": 0.335, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.49, \"Height\": 0.185, \"Whole_weight\": 1.185, \"Shucked_weight\": 0.48200000000000004, \"Viscera_weight\": 0.2015, \"Shell_weight\": 0.361, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.135, \"Whole_weight\": 1.4405, \"Shucked_weight\": 0.5885, \"Viscera_weight\": 0.191, \"Shell_weight\": 0.3175, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.5, \"Height\": 0.155, \"Whole_weight\": 1.3319999999999999, \"Shucked_weight\": 0.6235, \"Viscera_weight\": 0.2835, \"Shell_weight\": 0.35, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.485, \"Height\": 0.165, \"Whole_weight\": 1.1405, \"Shucked_weight\": 0.5870000000000001, \"Viscera_weight\": 0.2175, \"Shell_weight\": 0.28800000000000003, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.2009999999999998, \"Shucked_weight\": 0.5395, \"Viscera_weight\": 0.275, \"Shell_weight\": 0.309, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.155, \"Whole_weight\": 1.33, \"Shucked_weight\": 0.6675, \"Viscera_weight\": 0.259, \"Shell_weight\": 0.33, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.5, \"Height\": 0.185, \"Whole_weight\": 1.3619999999999999, \"Shucked_weight\": 0.5785, \"Viscera_weight\": 0.3125, \"Shell_weight\": 0.384, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.585, \"Height\": 0.195, \"Whole_weight\": 1.6469999999999998, \"Shucked_weight\": 0.7225, \"Viscera_weight\": 0.331, \"Shell_weight\": 0.47100000000000003, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.5, \"Height\": 0.18, \"Whole_weight\": 1.4995, \"Shucked_weight\": 0.593, \"Viscera_weight\": 0.314, \"Shell_weight\": 0.431, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.545, \"Height\": 0.165, \"Whole_weight\": 1.6225, \"Shucked_weight\": 0.6555, \"Viscera_weight\": 0.299, \"Shell_weight\": 0.513, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.66, \"Diameter\": 0.525, \"Height\": 0.215, \"Whole_weight\": 1.786, \"Shucked_weight\": 0.6725, \"Viscera_weight\": 0.3615, \"Shell_weight\": 0.4065, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.535, \"Height\": 0.2, \"Whole_weight\": 1.791, \"Shucked_weight\": 0.733, \"Viscera_weight\": 0.318, \"Shell_weight\": 0.54, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.555, \"Height\": 0.205, \"Whole_weight\": 1.925, \"Shucked_weight\": 0.713, \"Viscera_weight\": 0.358, \"Shell_weight\": 0.4535, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.55, \"Height\": 0.175, \"Whole_weight\": 1.689, \"Shucked_weight\": 0.6940000000000001, \"Viscera_weight\": 0.371, \"Shell_weight\": 0.474, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.69, \"Diameter\": 0.55, \"Height\": 0.18, \"Whole_weight\": 1.659, \"Shucked_weight\": 0.8715, \"Viscera_weight\": 0.2655, \"Shell_weight\": 0.4395, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.695, \"Diameter\": 0.53, \"Height\": 0.2, \"Whole_weight\": 2.0475, \"Shucked_weight\": 0.75, \"Viscera_weight\": 0.4195, \"Shell_weight\": 0.6095, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.525, \"Height\": 0.19, \"Whole_weight\": 1.6015, \"Shucked_weight\": 0.7070000000000001, \"Viscera_weight\": 0.365, \"Shell_weight\": 0.43, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.73, \"Diameter\": 0.57, \"Height\": 0.165, \"Whole_weight\": 2.0165, \"Shucked_weight\": 1.0685, \"Viscera_weight\": 0.418, \"Shell_weight\": 0.435, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.205, \"Diameter\": 0.15, \"Height\": 0.065, \"Whole_weight\": 0.04, \"Shucked_weight\": 0.02, \"Viscera_weight\": 0.011000000000000001, \"Shell_weight\": 0.013000000000000001, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.225, \"Diameter\": 0.17, \"Height\": 0.07, \"Whole_weight\": 0.0565, \"Shucked_weight\": 0.024, \"Viscera_weight\": 0.013000000000000001, \"Shell_weight\": 0.016, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.23, \"Diameter\": 0.18, \"Height\": 0.05, \"Whole_weight\": 0.064, \"Shucked_weight\": 0.0215, \"Viscera_weight\": 0.0135, \"Shell_weight\": 0.02, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.195, \"Height\": 0.07, \"Whole_weight\": 0.0875, \"Shucked_weight\": 0.0345, \"Viscera_weight\": 0.022000000000000002, \"Shell_weight\": 0.0255, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.21, \"Height\": 0.055, \"Whole_weight\": 0.106, \"Shucked_weight\": 0.0415, \"Viscera_weight\": 0.0265, \"Shell_weight\": 0.031, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.22, \"Height\": 0.08, \"Whole_weight\": 0.1315, \"Shucked_weight\": 0.066, \"Viscera_weight\": 0.024, \"Shell_weight\": 0.03, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.295, \"Diameter\": 0.22, \"Height\": 0.07, \"Whole_weight\": 0.126, \"Shucked_weight\": 0.0515, \"Viscera_weight\": 0.0275, \"Shell_weight\": 0.035, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.31, \"Diameter\": 0.225, \"Height\": 0.075, \"Whole_weight\": 0.155, \"Shucked_weight\": 0.065, \"Viscera_weight\": 0.037000000000000005, \"Shell_weight\": 0.0365, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.315, \"Diameter\": 0.235, \"Height\": 0.07, \"Whole_weight\": 0.149, \"Shucked_weight\": 0.057999999999999996, \"Viscera_weight\": 0.0325, \"Shell_weight\": 0.047, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.34, \"Diameter\": 0.265, \"Height\": 0.07, \"Whole_weight\": 0.185, \"Shucked_weight\": 0.0625, \"Viscera_weight\": 0.0395, \"Shell_weight\": 0.07, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.29, \"Height\": 0.08, \"Whole_weight\": 0.2545, \"Shucked_weight\": 0.10800000000000001, \"Viscera_weight\": 0.0565, \"Shell_weight\": 0.07, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.38, \"Diameter\": 0.285, \"Height\": 0.085, \"Whole_weight\": 0.237, \"Shucked_weight\": 0.115, \"Viscera_weight\": 0.0405, \"Shell_weight\": 0.07, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.295, \"Height\": 0.1, \"Whole_weight\": 0.27899999999999997, \"Shucked_weight\": 0.1155, \"Viscera_weight\": 0.059000000000000004, \"Shell_weight\": 0.08, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.31, \"Height\": 0.065, \"Whole_weight\": 0.3205, \"Shucked_weight\": 0.1575, \"Viscera_weight\": 0.066, \"Shell_weight\": 0.08800000000000001, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.3335, \"Shucked_weight\": 0.1445, \"Viscera_weight\": 0.0715, \"Shell_weight\": 0.095, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.335, \"Height\": 0.11, \"Whole_weight\": 0.3885, \"Shucked_weight\": 0.175, \"Viscera_weight\": 0.0835, \"Shell_weight\": 0.111, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.345, \"Height\": 0.115, \"Whole_weight\": 0.545, \"Shucked_weight\": 0.26899999999999996, \"Viscera_weight\": 0.111, \"Shell_weight\": 0.1305, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.4165, \"Shucked_weight\": 0.185, \"Viscera_weight\": 0.0865, \"Shell_weight\": 0.11, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.355, \"Height\": 0.12, \"Whole_weight\": 0.495, \"Shucked_weight\": 0.231, \"Viscera_weight\": 0.11, \"Shell_weight\": 0.125, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.35, \"Height\": 0.125, \"Whole_weight\": 0.4775, \"Shucked_weight\": 0.2235, \"Viscera_weight\": 0.08900000000000001, \"Shell_weight\": 0.11800000000000001, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.35, \"Height\": 0.12, \"Whole_weight\": 0.46799999999999997, \"Shucked_weight\": 0.2005, \"Viscera_weight\": 0.1065, \"Shell_weight\": 0.1325, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.455, \"Diameter\": 0.35, \"Height\": 0.12, \"Whole_weight\": 0.4555, \"Shucked_weight\": 0.1945, \"Viscera_weight\": 0.1045, \"Shell_weight\": 0.1375, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.46, \"Diameter\": 0.35, \"Height\": 0.115, \"Whole_weight\": 0.46, \"Shucked_weight\": 0.2025, \"Viscera_weight\": 0.1115, \"Shell_weight\": 0.1165, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.345, \"Height\": 0.12, \"Whole_weight\": 0.4155, \"Shucked_weight\": 0.198, \"Viscera_weight\": 0.0885, \"Shell_weight\": 0.107, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.345, \"Height\": 0.115, \"Whole_weight\": 0.4215, \"Shucked_weight\": 0.1895, \"Viscera_weight\": 0.102, \"Shell_weight\": 0.111, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.355, \"Height\": 0.11, \"Whole_weight\": 0.474, \"Shucked_weight\": 0.23, \"Viscera_weight\": 0.1005, \"Shell_weight\": 0.12, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.34, \"Height\": 0.105, \"Whole_weight\": 0.486, \"Shucked_weight\": 0.231, \"Viscera_weight\": 0.1035, \"Shell_weight\": 0.1225, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.385, \"Height\": 0.11, \"Whole_weight\": 0.5735, \"Shucked_weight\": 0.311, \"Viscera_weight\": 0.1025, \"Shell_weight\": 0.136, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.355, \"Height\": 0.105, \"Whole_weight\": 0.46799999999999997, \"Shucked_weight\": 0.201, \"Viscera_weight\": 0.1115, \"Shell_weight\": 0.12, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.37, \"Height\": 0.1, \"Whole_weight\": 0.5135, \"Shucked_weight\": 0.243, \"Viscera_weight\": 0.1015, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.375, \"Height\": 0.145, \"Whole_weight\": 0.6215, \"Shucked_weight\": 0.27399999999999997, \"Viscera_weight\": 0.166, \"Shell_weight\": 0.1485, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.38, \"Height\": 0.11, \"Whole_weight\": 0.494, \"Shucked_weight\": 0.218, \"Viscera_weight\": 0.09, \"Shell_weight\": 0.1325, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.385, \"Height\": 0.12, \"Whole_weight\": 0.6005, \"Shucked_weight\": 0.239, \"Viscera_weight\": 0.142, \"Shell_weight\": 0.185, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.395, \"Height\": 0.12, \"Whole_weight\": 0.6459999999999999, \"Shucked_weight\": 0.285, \"Viscera_weight\": 0.1365, \"Shell_weight\": 0.172, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.415, \"Height\": 0.135, \"Whole_weight\": 0.7945, \"Shucked_weight\": 0.39399999999999996, \"Viscera_weight\": 0.18899999999999997, \"Shell_weight\": 0.20199999999999999, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.425, \"Height\": 0.125, \"Whole_weight\": 0.812, \"Shucked_weight\": 0.4035, \"Viscera_weight\": 0.1705, \"Shell_weight\": 0.195, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.42, \"Height\": 0.17, \"Whole_weight\": 0.828, \"Shucked_weight\": 0.41, \"Viscera_weight\": 0.20800000000000002, \"Shell_weight\": 0.1505, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.41, \"Height\": 0.14, \"Whole_weight\": 0.6809999999999999, \"Shucked_weight\": 0.3095, \"Viscera_weight\": 0.1415, \"Shell_weight\": 0.1835, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.405, \"Height\": 0.15, \"Whole_weight\": 0.889, \"Shucked_weight\": 0.4055, \"Viscera_weight\": 0.2275, \"Shell_weight\": 0.215, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.7345, \"Shucked_weight\": 0.33, \"Viscera_weight\": 0.1595, \"Shell_weight\": 0.213, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.125, \"Whole_weight\": 0.9640000000000001, \"Shucked_weight\": 0.5475, \"Viscera_weight\": 0.159, \"Shell_weight\": 0.215, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.555, \"Diameter\": 0.425, \"Height\": 0.14, \"Whole_weight\": 0.963, \"Shucked_weight\": 0.44, \"Viscera_weight\": 0.22399999999999998, \"Shell_weight\": 0.24, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.445, \"Height\": 0.15, \"Whole_weight\": 0.995, \"Shucked_weight\": 0.504, \"Viscera_weight\": 0.185, \"Shell_weight\": 0.2505, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.8585, \"Shucked_weight\": 0.3905, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.2295, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.155, \"Whole_weight\": 0.948, \"Shucked_weight\": 0.429, \"Viscera_weight\": 0.20600000000000002, \"Shell_weight\": 0.259, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.445, \"Height\": 0.145, \"Whole_weight\": 0.888, \"Shucked_weight\": 0.41, \"Viscera_weight\": 0.1815, \"Shell_weight\": 0.2425, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 0.9045, \"Shucked_weight\": 0.405, \"Viscera_weight\": 0.2215, \"Shell_weight\": 0.2335, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.465, \"Height\": 0.14, \"Whole_weight\": 1.046, \"Shucked_weight\": 0.4695, \"Viscera_weight\": 0.263, \"Shell_weight\": 0.263, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 1.1775, \"Shucked_weight\": 0.542, \"Viscera_weight\": 0.26899999999999996, \"Shell_weight\": 0.31, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 1.0765, \"Shucked_weight\": 0.491, \"Viscera_weight\": 0.22, \"Shell_weight\": 0.287, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 1.0255, \"Shucked_weight\": 0.41200000000000003, \"Viscera_weight\": 0.2745, \"Shell_weight\": 0.289, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.46, \"Height\": 0.145, \"Whole_weight\": 0.9325, \"Shucked_weight\": 0.3985, \"Viscera_weight\": 0.2245, \"Shell_weight\": 0.248, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.46, \"Height\": 0.15, \"Whole_weight\": 1.235, \"Shucked_weight\": 0.6025, \"Viscera_weight\": 0.27399999999999997, \"Shell_weight\": 0.29, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.46, \"Height\": 0.15, \"Whole_weight\": 1.247, \"Shucked_weight\": 0.5335, \"Viscera_weight\": 0.2735, \"Shell_weight\": 0.29, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 1.1495, \"Shucked_weight\": 0.564, \"Viscera_weight\": 0.27399999999999997, \"Shell_weight\": 0.264, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.485, \"Height\": 0.16, \"Whole_weight\": 1.1575, \"Shucked_weight\": 0.5005, \"Viscera_weight\": 0.2495, \"Shell_weight\": 0.315, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.327, \"Shucked_weight\": 0.6, \"Viscera_weight\": 0.3015, \"Shell_weight\": 0.355, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 1.2, \"Shucked_weight\": 0.5085, \"Viscera_weight\": 0.32, \"Shell_weight\": 0.292, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.2705, \"Shucked_weight\": 0.5415, \"Viscera_weight\": 0.32299999999999995, \"Shell_weight\": 0.3225, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.485, \"Height\": 0.175, \"Whole_weight\": 1.2155, \"Shucked_weight\": 0.545, \"Viscera_weight\": 0.253, \"Shell_weight\": 0.345, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.3245, \"Shucked_weight\": 0.6865, \"Viscera_weight\": 0.233, \"Shell_weight\": 0.3275, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.48, \"Height\": 0.17, \"Whole_weight\": 1.3555, \"Shucked_weight\": 0.6709999999999999, \"Viscera_weight\": 0.268, \"Shell_weight\": 0.3385, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.165, \"Whole_weight\": 1.127, \"Shucked_weight\": 0.47700000000000004, \"Viscera_weight\": 0.2365, \"Shell_weight\": 0.3185, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.175, \"Whole_weight\": 1.1075, \"Shucked_weight\": 0.4485, \"Viscera_weight\": 0.2165, \"Shell_weight\": 0.3595, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.495, \"Height\": 0.2, \"Whole_weight\": 1.4255, \"Shucked_weight\": 0.659, \"Viscera_weight\": 0.336, \"Shell_weight\": 0.38, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.495, \"Height\": 0.145, \"Whole_weight\": 1.147, \"Shucked_weight\": 0.5455, \"Viscera_weight\": 0.266, \"Shell_weight\": 0.2885, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.286, \"Shucked_weight\": 0.604, \"Viscera_weight\": 0.271, \"Shell_weight\": 0.35, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.495, \"Height\": 0.18, \"Whole_weight\": 1.5959999999999999, \"Shucked_weight\": 0.617, \"Viscera_weight\": 0.317, \"Shell_weight\": 0.37, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.495, \"Height\": 0.195, \"Whole_weight\": 1.297, \"Shucked_weight\": 0.556, \"Viscera_weight\": 0.2985, \"Shell_weight\": 0.37, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.49, \"Height\": 0.16, \"Whole_weight\": 1.251, \"Shucked_weight\": 0.5355, \"Viscera_weight\": 0.3345, \"Shell_weight\": 0.3165, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.5105, \"Shucked_weight\": 0.6735, \"Viscera_weight\": 0.3755, \"Shell_weight\": 0.3775, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.5, \"Height\": 0.185, \"Whole_weight\": 1.4415, \"Shucked_weight\": 0.741, \"Viscera_weight\": 0.2955, \"Shell_weight\": 0.341, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.52, \"Height\": 0.19, \"Whole_weight\": 1.6385, \"Shucked_weight\": 0.8115, \"Viscera_weight\": 0.369, \"Shell_weight\": 0.391, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.69, \"Diameter\": 0.545, \"Height\": 0.205, \"Whole_weight\": 1.933, \"Shucked_weight\": 0.7855, \"Viscera_weight\": 0.429, \"Shell_weight\": 0.498, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.69, \"Diameter\": 0.54, \"Height\": 0.185, \"Whole_weight\": 1.71, \"Shucked_weight\": 0.7725, \"Viscera_weight\": 0.3855, \"Shell_weight\": 0.4325, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.695, \"Diameter\": 0.55, \"Height\": 0.155, \"Whole_weight\": 1.8495, \"Shucked_weight\": 0.767, \"Viscera_weight\": 0.442, \"Shell_weight\": 0.4175, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.695, \"Diameter\": 0.525, \"Height\": 0.175, \"Whole_weight\": 1.742, \"Shucked_weight\": 0.696, \"Viscera_weight\": 0.389, \"Shell_weight\": 0.505, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.575, \"Height\": 0.205, \"Whole_weight\": 1.7975, \"Shucked_weight\": 0.7295, \"Viscera_weight\": 0.3935, \"Shell_weight\": 0.5165, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.705, \"Diameter\": 0.56, \"Height\": 0.205, \"Whole_weight\": 2.381, \"Shucked_weight\": 0.9915, \"Viscera_weight\": 0.5005, \"Shell_weight\": 0.624, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.765, \"Diameter\": 0.585, \"Height\": 0.18, \"Whole_weight\": 2.398, \"Shucked_weight\": 1.128, \"Viscera_weight\": 0.512, \"Shell_weight\": 0.5335, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.77, \"Diameter\": 0.6, \"Height\": 0.215, \"Whole_weight\": 2.1945, \"Shucked_weight\": 1.0515, \"Viscera_weight\": 0.48200000000000004, \"Shell_weight\": 0.584, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.22, \"Diameter\": 0.16, \"Height\": 0.05, \"Whole_weight\": 0.049, \"Shucked_weight\": 0.0215, \"Viscera_weight\": 0.01, \"Shell_weight\": 0.015, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.205, \"Height\": 0.07, \"Whole_weight\": 0.1055, \"Shucked_weight\": 0.495, \"Viscera_weight\": 0.019, \"Shell_weight\": 0.0315, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.29, \"Diameter\": 0.21, \"Height\": 0.06, \"Whole_weight\": 0.1045, \"Shucked_weight\": 0.0415, \"Viscera_weight\": 0.022000000000000002, \"Shell_weight\": 0.035, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.33, \"Diameter\": 0.24, \"Height\": 0.075, \"Whole_weight\": 0.163, \"Shucked_weight\": 0.0745, \"Viscera_weight\": 0.033, \"Shell_weight\": 0.048, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.285, \"Height\": 0.095, \"Whole_weight\": 0.2275, \"Shucked_weight\": 0.0955, \"Viscera_weight\": 0.0475, \"Shell_weight\": 0.0715, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.29, \"Height\": 0.1, \"Whole_weight\": 0.21899999999999997, \"Shucked_weight\": 0.0925, \"Viscera_weight\": 0.038, \"Shell_weight\": 0.075, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.315, \"Height\": 0.1, \"Whole_weight\": 0.3645, \"Shucked_weight\": 0.1765, \"Viscera_weight\": 0.0795, \"Shell_weight\": 0.095, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.33, \"Height\": 0.115, \"Whole_weight\": 0.3265, \"Shucked_weight\": 0.1315, \"Viscera_weight\": 0.077, \"Shell_weight\": 0.10300000000000001, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.34, \"Height\": 0.1, \"Whole_weight\": 0.3515, \"Shucked_weight\": 0.1625, \"Viscera_weight\": 0.08199999999999999, \"Shell_weight\": 0.094, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.32, \"Height\": 0.1, \"Whole_weight\": 0.3465, \"Shucked_weight\": 0.1635, \"Viscera_weight\": 0.08, \"Shell_weight\": 0.09, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.34, \"Height\": 0.1, \"Whole_weight\": 0.40700000000000003, \"Shucked_weight\": 0.209, \"Viscera_weight\": 0.0735, \"Shell_weight\": 0.10300000000000001, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.335, \"Height\": 0.115, \"Whole_weight\": 0.4215, \"Shucked_weight\": 0.17300000000000001, \"Viscera_weight\": 0.0765, \"Shell_weight\": 0.113, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.345, \"Height\": 0.11, \"Whole_weight\": 0.3755, \"Shucked_weight\": 0.1525, \"Viscera_weight\": 0.057999999999999996, \"Shell_weight\": 0.125, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.37, \"Height\": 0.12, \"Whole_weight\": 0.5335, \"Shucked_weight\": 0.2645, \"Viscera_weight\": 0.10800000000000001, \"Shell_weight\": 0.1345, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.355, \"Height\": 0.105, \"Whole_weight\": 0.442, \"Shucked_weight\": 0.2085, \"Viscera_weight\": 0.0975, \"Shell_weight\": 0.1185, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.365, \"Height\": 0.1, \"Whole_weight\": 0.1315, \"Shucked_weight\": 0.2025, \"Viscera_weight\": 0.0875, \"Shell_weight\": 0.12300000000000001, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.375, \"Height\": 0.115, \"Whole_weight\": 0.5205, \"Shucked_weight\": 0.233, \"Viscera_weight\": 0.11900000000000001, \"Shell_weight\": 0.1455, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.375, \"Height\": 0.13, \"Whole_weight\": 0.5535, \"Shucked_weight\": 0.266, \"Viscera_weight\": 0.11199999999999999, \"Shell_weight\": 0.157, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.49, \"Diameter\": 0.375, \"Height\": 0.125, \"Whole_weight\": 0.5445, \"Shucked_weight\": 0.27899999999999997, \"Viscera_weight\": 0.115, \"Shell_weight\": 0.13, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.38, \"Height\": 0.11, \"Whole_weight\": 0.5539999999999999, \"Shucked_weight\": 0.2935, \"Viscera_weight\": 0.1005, \"Shell_weight\": 0.15, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.38, \"Height\": 0.12, \"Whole_weight\": 0.512, \"Shucked_weight\": 0.233, \"Viscera_weight\": 0.1205, \"Shell_weight\": 0.136, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.39, \"Height\": 0.125, \"Whole_weight\": 0.583, \"Shucked_weight\": 0.294, \"Viscera_weight\": 0.132, \"Shell_weight\": 0.1605, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.38, \"Height\": 0.12, \"Whole_weight\": 0.5765, \"Shucked_weight\": 0.273, \"Viscera_weight\": 0.135, \"Shell_weight\": 0.145, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.4, \"Height\": 0.135, \"Whole_weight\": 0.723, \"Shucked_weight\": 0.377, \"Viscera_weight\": 0.149, \"Shell_weight\": 0.17800000000000002, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.395, \"Height\": 0.155, \"Whole_weight\": 0.5395, \"Shucked_weight\": 0.2465, \"Viscera_weight\": 0.1085, \"Shell_weight\": 0.16699999999999998, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.385, \"Height\": 0.15, \"Whole_weight\": 0.625, \"Shucked_weight\": 0.3095, \"Viscera_weight\": 0.11900000000000001, \"Shell_weight\": 0.1725, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.5925, \"Shucked_weight\": 0.265, \"Viscera_weight\": 0.1175, \"Shell_weight\": 0.168, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.395, \"Height\": 0.135, \"Whole_weight\": 0.633, \"Shucked_weight\": 0.2985, \"Viscera_weight\": 0.1295, \"Shell_weight\": 0.175, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.43, \"Height\": 0.14, \"Whole_weight\": 0.8320000000000001, \"Shucked_weight\": 0.4355, \"Viscera_weight\": 0.17, \"Shell_weight\": 0.201, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.42, \"Height\": 0.145, \"Whole_weight\": 0.778, \"Shucked_weight\": 0.3745, \"Viscera_weight\": 0.1545, \"Shell_weight\": 0.205, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.42, \"Height\": 0.12, \"Whole_weight\": 0.7865, \"Shucked_weight\": 0.40299999999999997, \"Viscera_weight\": 0.185, \"Shell_weight\": 0.17, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.4, \"Height\": 0.14, \"Whole_weight\": 0.778, \"Shucked_weight\": 0.368, \"Viscera_weight\": 0.215, \"Shell_weight\": 0.18, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.42, \"Height\": 0.13, \"Whole_weight\": 0.636, \"Shucked_weight\": 0.294, \"Viscera_weight\": 0.14400000000000002, \"Shell_weight\": 0.1755, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.44, \"Height\": 0.135, \"Whole_weight\": 0.8435, \"Shucked_weight\": 0.434, \"Viscera_weight\": 0.1995, \"Shell_weight\": 0.185, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.555, \"Diameter\": 0.425, \"Height\": 0.13, \"Whole_weight\": 0.648, \"Shucked_weight\": 0.2835, \"Viscera_weight\": 0.133, \"Shell_weight\": 0.2105, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.43, \"Height\": 0.13, \"Whole_weight\": 0.784, \"Shucked_weight\": 0.3495, \"Viscera_weight\": 0.1885, \"Shell_weight\": 0.213, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.18, \"Whole_weight\": 0.9079999999999999, \"Shucked_weight\": 0.4015, \"Viscera_weight\": 0.217, \"Shell_weight\": 0.255, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.135, \"Whole_weight\": 1.02, \"Shucked_weight\": 0.546, \"Viscera_weight\": 0.204, \"Shell_weight\": 0.25, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.43, \"Height\": 0.16, \"Whole_weight\": 0.8109999999999999, \"Shucked_weight\": 0.3875, \"Viscera_weight\": 0.159, \"Shell_weight\": 0.2285, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 0.897, \"Shucked_weight\": 0.4235, \"Viscera_weight\": 0.1905, \"Shell_weight\": 0.248, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.455, \"Height\": 0.13, \"Whole_weight\": 0.852, \"Shucked_weight\": 0.41, \"Viscera_weight\": 0.1725, \"Shell_weight\": 0.225, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 0.938, \"Shucked_weight\": 0.467, \"Viscera_weight\": 0.203, \"Shell_weight\": 0.225, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.6955, \"Shucked_weight\": 0.3085, \"Viscera_weight\": 0.129, \"Shell_weight\": 0.2245, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 0.861, \"Shucked_weight\": 0.413, \"Viscera_weight\": 0.16399999999999998, \"Shell_weight\": 0.249, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.46, \"Height\": 0.14, \"Whole_weight\": 1.004, \"Shucked_weight\": 0.496, \"Viscera_weight\": 0.2165, \"Shell_weight\": 0.26, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.46, \"Height\": 0.16, \"Whole_weight\": 1.0115, \"Shucked_weight\": 0.445, \"Viscera_weight\": 0.2615, \"Shell_weight\": 0.2565, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 1.1005, \"Shucked_weight\": 0.5415, \"Viscera_weight\": 0.166, \"Shell_weight\": 0.265, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 1.1079999999999999, \"Shucked_weight\": 0.4915, \"Viscera_weight\": 0.2325, \"Shell_weight\": 0.3345, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.46, \"Height\": 0.14, \"Whole_weight\": 0.852, \"Shucked_weight\": 0.4215, \"Viscera_weight\": 0.2255, \"Shell_weight\": 0.22699999999999998, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.49, \"Height\": 0.21, \"Whole_weight\": 1.9875, \"Shucked_weight\": 1.005, \"Viscera_weight\": 0.419, \"Shell_weight\": 0.491, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 1.079, \"Shucked_weight\": 0.4505, \"Viscera_weight\": 0.2835, \"Shell_weight\": 0.293, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.17, \"Whole_weight\": 1.055, \"Shucked_weight\": 0.5429999999999999, \"Viscera_weight\": 0.24600000000000002, \"Shell_weight\": 0.2345, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 1.198, \"Shucked_weight\": 0.7070000000000001, \"Viscera_weight\": 0.2095, \"Shell_weight\": 0.2505, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 1.084, \"Shucked_weight\": 0.5885, \"Viscera_weight\": 0.209, \"Shell_weight\": 0.24600000000000002, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.103, \"Shucked_weight\": 0.4635, \"Viscera_weight\": 0.3095, \"Shell_weight\": 0.2725, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.49, \"Height\": 0.155, \"Whole_weight\": 1.1, \"Shucked_weight\": 0.505, \"Viscera_weight\": 0.2475, \"Shell_weight\": 0.31, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 1.1015, \"Shucked_weight\": 0.4965, \"Viscera_weight\": 0.243, \"Shell_weight\": 0.305, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.495, \"Height\": 0.185, \"Whole_weight\": 1.3835, \"Shucked_weight\": 0.7105, \"Viscera_weight\": 0.3005, \"Shell_weight\": 0.345, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.155, \"Whole_weight\": 1.115, \"Shucked_weight\": 0.484, \"Viscera_weight\": 0.27699999999999997, \"Shell_weight\": 0.3095, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.48, \"Height\": 0.145, \"Whole_weight\": 1.085, \"Shucked_weight\": 0.4645, \"Viscera_weight\": 0.2445, \"Shell_weight\": 0.327, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.505, \"Height\": 0.15, \"Whole_weight\": 1.3165, \"Shucked_weight\": 0.6325, \"Viscera_weight\": 0.2465, \"Shell_weight\": 0.37, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.3415, \"Shucked_weight\": 0.6575, \"Viscera_weight\": 0.262, \"Shell_weight\": 0.375, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 1.0270000000000001, \"Shucked_weight\": 0.537, \"Viscera_weight\": 0.188, \"Shell_weight\": 0.17600000000000002, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.515, \"Height\": 0.16, \"Whole_weight\": 1.1845, \"Shucked_weight\": 0.506, \"Viscera_weight\": 0.311, \"Shell_weight\": 0.335, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 1.192, \"Shucked_weight\": 0.6055, \"Viscera_weight\": 0.2595, \"Shell_weight\": 0.285, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.52, \"Height\": 0.18, \"Whole_weight\": 1.285, \"Shucked_weight\": 0.5775, \"Viscera_weight\": 0.35200000000000004, \"Shell_weight\": 0.317, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.515, \"Height\": 0.125, \"Whole_weight\": 1.1805, \"Shucked_weight\": 0.5235, \"Viscera_weight\": 0.28300000000000003, \"Shell_weight\": 0.3275, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.52, \"Height\": 0.175, \"Whole_weight\": 1.2655, \"Shucked_weight\": 0.615, \"Viscera_weight\": 0.2775, \"Shell_weight\": 0.336, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.535, \"Height\": 0.175, \"Whole_weight\": 1.2895, \"Shucked_weight\": 0.6095, \"Viscera_weight\": 0.2765, \"Shell_weight\": 0.344, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.51, \"Height\": 0.155, \"Whole_weight\": 1.4069999999999998, \"Shucked_weight\": 0.7215, \"Viscera_weight\": 0.298, \"Shell_weight\": 0.335, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.49, \"Height\": 0.155, \"Whole_weight\": 1.122, \"Shucked_weight\": 0.545, \"Viscera_weight\": 0.228, \"Shell_weight\": 0.3055, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.515, \"Height\": 0.165, \"Whole_weight\": 1.4465, \"Shucked_weight\": 0.6940000000000001, \"Viscera_weight\": 0.298, \"Shell_weight\": 0.3755, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.349, \"Shucked_weight\": 0.5985, \"Viscera_weight\": 0.3175, \"Shell_weight\": 0.36, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.5, \"Height\": 0.2, \"Whole_weight\": 1.2690000000000001, \"Shucked_weight\": 0.5760000000000001, \"Viscera_weight\": 0.2985, \"Shell_weight\": 0.35100000000000003, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.51, \"Height\": 0.18, \"Whole_weight\": 1.68, \"Shucked_weight\": 0.9259999999999999, \"Viscera_weight\": 0.2975, \"Shell_weight\": 0.3935, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.55, \"Height\": 0.19, \"Whole_weight\": 1.551, \"Shucked_weight\": 0.7105, \"Viscera_weight\": 0.3685, \"Shell_weight\": 0.41200000000000003, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.68, \"Diameter\": 0.52, \"Height\": 0.165, \"Whole_weight\": 1.4775, \"Shucked_weight\": 0.7240000000000001, \"Viscera_weight\": 0.27899999999999997, \"Shell_weight\": 0.406, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.68, \"Diameter\": 0.53, \"Height\": 0.18, \"Whole_weight\": 1.5290000000000001, \"Shucked_weight\": 0.7635, \"Viscera_weight\": 0.3115, \"Shell_weight\": 0.4025, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.525, \"Height\": 0.175, \"Whole_weight\": 1.7585, \"Shucked_weight\": 0.8745, \"Viscera_weight\": 0.3615, \"Shell_weight\": 0.47, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.55, \"Height\": 0.2, \"Whole_weight\": 1.5230000000000001, \"Shucked_weight\": 0.693, \"Viscera_weight\": 0.306, \"Shell_weight\": 0.4405, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.725, \"Diameter\": 0.53, \"Height\": 0.19, \"Whole_weight\": 1.7315, \"Shucked_weight\": 0.83, \"Viscera_weight\": 0.39799999999999996, \"Shell_weight\": 0.405, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.725, \"Diameter\": 0.55, \"Height\": 0.2, \"Whole_weight\": 1.51, \"Shucked_weight\": 0.8735, \"Viscera_weight\": 0.4265, \"Shell_weight\": 0.5085, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.735, \"Diameter\": 0.57, \"Height\": 0.175, \"Whole_weight\": 1.88, \"Shucked_weight\": 0.9095, \"Viscera_weight\": 0.387, \"Shell_weight\": 0.488, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.74, \"Diameter\": 0.575, \"Height\": 0.22, \"Whole_weight\": 2.012, \"Shucked_weight\": 0.8915, \"Viscera_weight\": 0.5265, \"Shell_weight\": 0.47100000000000003, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.75, \"Diameter\": 0.555, \"Height\": 0.215, \"Whole_weight\": 2.201, \"Shucked_weight\": 1.0615, \"Viscera_weight\": 0.5235, \"Shell_weight\": 0.5285, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.19, \"Diameter\": 0.14, \"Height\": 0.03, \"Whole_weight\": 0.0315, \"Shucked_weight\": 0.0125, \"Viscera_weight\": 0.005, \"Shell_weight\": 0.0105, \"Rings\": 3, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.21, \"Diameter\": 0.15, \"Height\": 0.045, \"Whole_weight\": 0.04, \"Shucked_weight\": 0.0135, \"Viscera_weight\": 0.008, \"Shell_weight\": 0.0105, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.25, \"Diameter\": 0.175, \"Height\": 0.06, \"Whole_weight\": 0.0635, \"Shucked_weight\": 0.0275, \"Viscera_weight\": 0.008, \"Shell_weight\": 0.02, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.29, \"Diameter\": 0.215, \"Height\": 0.065, \"Whole_weight\": 0.0985, \"Shucked_weight\": 0.0425, \"Viscera_weight\": 0.021, \"Shell_weight\": 0.031, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.25, \"Height\": 0.08, \"Whole_weight\": 0.16699999999999998, \"Shucked_weight\": 0.0675, \"Viscera_weight\": 0.0325, \"Shell_weight\": 0.0575, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.34, \"Diameter\": 0.245, \"Height\": 0.085, \"Whole_weight\": 0.2015, \"Shucked_weight\": 0.1005, \"Viscera_weight\": 0.038, \"Shell_weight\": 0.053, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.345, \"Diameter\": 0.255, \"Height\": 0.095, \"Whole_weight\": 0.183, \"Shucked_weight\": 0.075, \"Viscera_weight\": 0.0385, \"Shell_weight\": 0.06, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.255, \"Height\": 0.08, \"Whole_weight\": 0.187, \"Shucked_weight\": 0.078, \"Viscera_weight\": 0.0505, \"Shell_weight\": 0.057999999999999996, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.26, \"Height\": 0.08, \"Whole_weight\": 0.1795, \"Shucked_weight\": 0.07400000000000001, \"Viscera_weight\": 0.0315, \"Shell_weight\": 0.06, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.275, \"Height\": 0.09, \"Whole_weight\": 0.2065, \"Shucked_weight\": 0.096, \"Viscera_weight\": 0.0395, \"Shell_weight\": 0.057999999999999996, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.29, \"Height\": 0.14, \"Whole_weight\": 0.3, \"Shucked_weight\": 0.14, \"Viscera_weight\": 0.0625, \"Shell_weight\": 0.0825, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.275, \"Height\": 0.095, \"Whole_weight\": 0.2295, \"Shucked_weight\": 0.095, \"Viscera_weight\": 0.0545, \"Shell_weight\": 0.066, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.3, \"Height\": 0.125, \"Whole_weight\": 0.34299999999999997, \"Shucked_weight\": 0.1705, \"Viscera_weight\": 0.0735, \"Shell_weight\": 0.081, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.385, \"Diameter\": 0.285, \"Height\": 0.085, \"Whole_weight\": 0.244, \"Shucked_weight\": 0.1215, \"Viscera_weight\": 0.0445, \"Shell_weight\": 0.068, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.32, \"Height\": 0.1, \"Whole_weight\": 0.3075, \"Shucked_weight\": 0.149, \"Viscera_weight\": 0.0535, \"Shell_weight\": 0.09, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.305, \"Height\": 0.1, \"Whole_weight\": 0.3415, \"Shucked_weight\": 0.17600000000000002, \"Viscera_weight\": 0.0625, \"Shell_weight\": 0.0865, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.305, \"Height\": 0.1, \"Whole_weight\": 0.271, \"Shucked_weight\": 0.0965, \"Viscera_weight\": 0.061, \"Shell_weight\": 0.091, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.31, \"Height\": 0.11, \"Whole_weight\": 0.91, \"Shucked_weight\": 0.41600000000000004, \"Viscera_weight\": 0.2075, \"Shell_weight\": 0.0995, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.305, \"Height\": 0.1, \"Whole_weight\": 0.268, \"Shucked_weight\": 0.1145, \"Viscera_weight\": 0.053, \"Shell_weight\": 0.085, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.405, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.2885, \"Shucked_weight\": 0.138, \"Viscera_weight\": 0.0635, \"Shell_weight\": 0.0765, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.315, \"Height\": 0.1, \"Whole_weight\": 0.3, \"Shucked_weight\": 0.124, \"Viscera_weight\": 0.0575, \"Shell_weight\": 0.1, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.325, \"Height\": 0.11, \"Whole_weight\": 0.326, \"Shucked_weight\": 0.1325, \"Viscera_weight\": 0.075, \"Shell_weight\": 0.10099999999999999, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.335, \"Height\": 0.1, \"Whole_weight\": 0.358, \"Shucked_weight\": 0.16899999999999998, \"Viscera_weight\": 0.067, \"Shell_weight\": 0.105, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.325, \"Height\": 0.115, \"Whole_weight\": 0.314, \"Shucked_weight\": 0.1295, \"Viscera_weight\": 0.0635, \"Shell_weight\": 0.1, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.315, \"Height\": 0.11, \"Whole_weight\": 0.4025, \"Shucked_weight\": 0.1855, \"Viscera_weight\": 0.083, \"Shell_weight\": 0.1015, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.34, \"Height\": 0.11, \"Whole_weight\": 0.3645, \"Shucked_weight\": 0.159, \"Viscera_weight\": 0.0855, \"Shell_weight\": 0.105, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.36, \"Height\": 0.11, \"Whole_weight\": 0.4235, \"Shucked_weight\": 0.182, \"Viscera_weight\": 0.0765, \"Shell_weight\": 0.14, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.325, \"Height\": 0.115, \"Whole_weight\": 0.4305, \"Shucked_weight\": 0.2235, \"Viscera_weight\": 0.0785, \"Shell_weight\": 0.1155, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.335, \"Height\": 0.095, \"Whole_weight\": 0.3505, \"Shucked_weight\": 0.1615, \"Viscera_weight\": 0.0625, \"Shell_weight\": 0.1185, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.34, \"Height\": 0.115, \"Whole_weight\": 0.486, \"Shucked_weight\": 0.261, \"Viscera_weight\": 0.0655, \"Shell_weight\": 0.1315, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.35, \"Height\": 0.1, \"Whole_weight\": 0.47100000000000003, \"Shucked_weight\": 0.252, \"Viscera_weight\": 0.077, \"Shell_weight\": 0.12300000000000001, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.345, \"Height\": 0.105, \"Whole_weight\": 0.415, \"Shucked_weight\": 0.187, \"Viscera_weight\": 0.087, \"Shell_weight\": 0.11, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.355, \"Height\": 0.115, \"Whole_weight\": 0.5195, \"Shucked_weight\": 0.27899999999999997, \"Viscera_weight\": 0.08800000000000001, \"Shell_weight\": 0.1325, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.5895, \"Shucked_weight\": 0.2535, \"Viscera_weight\": 0.128, \"Shell_weight\": 0.172, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.38, \"Height\": 0.125, \"Whole_weight\": 0.5215, \"Shucked_weight\": 0.2215, \"Viscera_weight\": 0.11800000000000001, \"Shell_weight\": 0.16, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.365, \"Height\": 0.14, \"Whole_weight\": 0.4475, \"Shucked_weight\": 0.1895, \"Viscera_weight\": 0.0925, \"Shell_weight\": 0.2305, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.49, \"Diameter\": 0.365, \"Height\": 0.125, \"Whole_weight\": 0.5585, \"Shucked_weight\": 0.252, \"Viscera_weight\": 0.126, \"Shell_weight\": 0.1615, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.385, \"Height\": 0.125, \"Whole_weight\": 0.596, \"Shucked_weight\": 0.245, \"Viscera_weight\": 0.09699999999999999, \"Shell_weight\": 0.21, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.5385, \"Shucked_weight\": 0.2645, \"Viscera_weight\": 0.095, \"Shell_weight\": 0.165, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.385, \"Height\": 0.145, \"Whole_weight\": 0.7665, \"Shucked_weight\": 0.3985, \"Viscera_weight\": 0.14, \"Shell_weight\": 0.1805, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.515, \"Diameter\": 0.395, \"Height\": 0.135, \"Whole_weight\": 0.516, \"Shucked_weight\": 0.2015, \"Viscera_weight\": 0.132, \"Shell_weight\": 0.162, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.41, \"Height\": 0.14, \"Whole_weight\": 0.7355, \"Shucked_weight\": 0.3065, \"Viscera_weight\": 0.13699999999999998, \"Shell_weight\": 0.2, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.39, \"Height\": 0.11, \"Whole_weight\": 0.531, \"Shucked_weight\": 0.2415, \"Viscera_weight\": 0.098, \"Shell_weight\": 0.1615, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.385, \"Height\": 0.13, \"Whole_weight\": 0.607, \"Shucked_weight\": 0.2355, \"Viscera_weight\": 0.125, \"Shell_weight\": 0.195, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.415, \"Height\": 0.15, \"Whole_weight\": 0.7055, \"Shucked_weight\": 0.32899999999999996, \"Viscera_weight\": 0.147, \"Shell_weight\": 0.19899999999999998, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.6445, \"Shucked_weight\": 0.345, \"Viscera_weight\": 0.1285, \"Shell_weight\": 0.2, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.6315, \"Shucked_weight\": 0.3045, \"Viscera_weight\": 0.114, \"Shell_weight\": 0.19, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.43, \"Height\": 0.155, \"Whole_weight\": 0.7845, \"Shucked_weight\": 0.3285, \"Viscera_weight\": 0.16899999999999998, \"Shell_weight\": 0.245, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 0.9475, \"Shucked_weight\": 0.366, \"Viscera_weight\": 0.239, \"Shell_weight\": 0.275, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.43, \"Height\": 0.145, \"Whole_weight\": 0.7120000000000001, \"Shucked_weight\": 0.3025, \"Viscera_weight\": 0.152, \"Shell_weight\": 0.225, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.145, \"Whole_weight\": 0.89, \"Shucked_weight\": 0.4325, \"Viscera_weight\": 0.171, \"Shell_weight\": 0.23600000000000002, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.42, \"Height\": 0.155, \"Whole_weight\": 0.912, \"Shucked_weight\": 0.495, \"Viscera_weight\": 0.1805, \"Shell_weight\": 0.205, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.135, \"Whole_weight\": 0.6559999999999999, \"Shucked_weight\": 0.257, \"Viscera_weight\": 0.17, \"Shell_weight\": 0.203, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 0.9359999999999999, \"Shucked_weight\": 0.48100000000000004, \"Viscera_weight\": 0.174, \"Shell_weight\": 0.2435, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.555, \"Diameter\": 0.435, \"Height\": 0.145, \"Whole_weight\": 0.6975, \"Shucked_weight\": 0.262, \"Viscera_weight\": 0.1575, \"Shell_weight\": 0.24, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.555, \"Diameter\": 0.445, \"Height\": 0.175, \"Whole_weight\": 1.1465, \"Shucked_weight\": 0.551, \"Viscera_weight\": 0.244, \"Shell_weight\": 0.2785, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.44, \"Height\": 0.14, \"Whole_weight\": 0.825, \"Shucked_weight\": 0.402, \"Viscera_weight\": 0.139, \"Shell_weight\": 0.245, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.435, \"Height\": 0.135, \"Whole_weight\": 0.72, \"Shucked_weight\": 0.32899999999999996, \"Viscera_weight\": 0.10300000000000001, \"Shell_weight\": 0.251, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.565, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.8215, \"Shucked_weight\": 0.332, \"Viscera_weight\": 0.1685, \"Shell_weight\": 0.29, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.445, \"Height\": 0.155, \"Whole_weight\": 1.0170000000000001, \"Shucked_weight\": 0.5265, \"Viscera_weight\": 0.2025, \"Shell_weight\": 0.265, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.435, \"Height\": 0.155, \"Whole_weight\": 0.8975, \"Shucked_weight\": 0.4115, \"Viscera_weight\": 0.2325, \"Shell_weight\": 0.23, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.44, \"Height\": 0.175, \"Whole_weight\": 1.2255, \"Shucked_weight\": 0.5405, \"Viscera_weight\": 0.2705, \"Shell_weight\": 0.3265, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.465, \"Height\": 0.145, \"Whole_weight\": 0.9865, \"Shucked_weight\": 0.47, \"Viscera_weight\": 0.2155, \"Shell_weight\": 0.25, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.425, \"Height\": 0.15, \"Whole_weight\": 0.8440000000000001, \"Shucked_weight\": 0.3645, \"Viscera_weight\": 0.185, \"Shell_weight\": 0.2705, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.585, \"Diameter\": 0.46, \"Height\": 0.145, \"Whole_weight\": 0.8465, \"Shucked_weight\": 0.33899999999999997, \"Viscera_weight\": 0.16699999999999998, \"Shell_weight\": 0.295, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.465, \"Height\": 0.165, \"Whole_weight\": 0.885, \"Shucked_weight\": 0.4025, \"Viscera_weight\": 0.1625, \"Shell_weight\": 0.27399999999999997, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.585, \"Diameter\": 0.42, \"Height\": 0.145, \"Whole_weight\": 0.6735, \"Shucked_weight\": 0.2895, \"Viscera_weight\": 0.1345, \"Shell_weight\": 0.22, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.455, \"Height\": 0.13, \"Whole_weight\": 0.8755, \"Shucked_weight\": 0.41100000000000003, \"Viscera_weight\": 0.2065, \"Shell_weight\": 0.225, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.47, \"Height\": 0.145, \"Whole_weight\": 0.9235, \"Shucked_weight\": 0.4545, \"Viscera_weight\": 0.17300000000000001, \"Shell_weight\": 0.254, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.475, \"Height\": 0.14, \"Whole_weight\": 0.977, \"Shucked_weight\": 0.4625, \"Viscera_weight\": 0.2025, \"Shell_weight\": 0.275, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.475, \"Height\": 0.14, \"Whole_weight\": 1.0305, \"Shucked_weight\": 0.4925, \"Viscera_weight\": 0.217, \"Shell_weight\": 0.278, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.48, \"Height\": 0.09, \"Whole_weight\": 1.05, \"Shucked_weight\": 0.457, \"Viscera_weight\": 0.2685, \"Shell_weight\": 0.28, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.495, \"Height\": 0.185, \"Whole_weight\": 1.1145, \"Shucked_weight\": 0.5055, \"Viscera_weight\": 0.2635, \"Shell_weight\": 0.36700000000000005, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 0.877, \"Shucked_weight\": 0.4325, \"Viscera_weight\": 0.155, \"Shell_weight\": 0.24, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.51, \"Height\": 0.185, \"Whole_weight\": 1.285, \"Shucked_weight\": 0.6095, \"Viscera_weight\": 0.2745, \"Shell_weight\": 0.315, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.48, \"Height\": 0.185, \"Whole_weight\": 1.3065, \"Shucked_weight\": 0.6895, \"Viscera_weight\": 0.2915, \"Shell_weight\": 0.29, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.45, \"Height\": 0.13, \"Whole_weight\": 0.8725, \"Shucked_weight\": 0.389, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.272, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.46, \"Height\": 0.15, \"Whole_weight\": 1.0265, \"Shucked_weight\": 0.4935, \"Viscera_weight\": 0.201, \"Shell_weight\": 0.2745, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.465, \"Height\": 0.14, \"Whole_weight\": 1.1605, \"Shucked_weight\": 0.6005, \"Viscera_weight\": 0.2195, \"Shell_weight\": 0.307, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.0125, \"Shucked_weight\": 0.5325, \"Viscera_weight\": 0.4365, \"Shell_weight\": 0.324, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.5, \"Height\": 0.14, \"Whole_weight\": 1.0959999999999999, \"Shucked_weight\": 0.5445, \"Viscera_weight\": 0.2165, \"Shell_weight\": 0.295, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.165, \"Whole_weight\": 1.205, \"Shucked_weight\": 0.5175, \"Viscera_weight\": 0.3105, \"Shell_weight\": 0.3465, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.505, \"Height\": 0.175, \"Whole_weight\": 1.2209999999999999, \"Shucked_weight\": 0.555, \"Viscera_weight\": 0.252, \"Shell_weight\": 0.34, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 1.0005, \"Shucked_weight\": 0.452, \"Viscera_weight\": 0.252, \"Shell_weight\": 0.265, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 1.1355, \"Shucked_weight\": 0.539, \"Viscera_weight\": 0.2325, \"Shell_weight\": 0.3115, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.525, \"Height\": 0.195, \"Whole_weight\": 1.3135, \"Shucked_weight\": 0.4935, \"Viscera_weight\": 0.2565, \"Shell_weight\": 0.465, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.505, \"Height\": 0.155, \"Whole_weight\": 1.1955, \"Shucked_weight\": 0.5565, \"Viscera_weight\": 0.21100000000000002, \"Shell_weight\": 0.34600000000000003, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.485, \"Height\": 0.15, \"Whole_weight\": 1.0979999999999999, \"Shucked_weight\": 0.5195, \"Viscera_weight\": 0.222, \"Shell_weight\": 0.3175, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.495, \"Height\": 0.17, \"Whole_weight\": 1.139, \"Shucked_weight\": 0.5395, \"Viscera_weight\": 0.282, \"Shell_weight\": 0.285, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.495, \"Height\": 0.17, \"Whole_weight\": 1.2265, \"Shucked_weight\": 0.49, \"Viscera_weight\": 0.377, \"Shell_weight\": 0.2875, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.515, \"Height\": 0.08, \"Whole_weight\": 1.042, \"Shucked_weight\": 0.515, \"Viscera_weight\": 0.1755, \"Shell_weight\": 0.175, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.52, \"Height\": 0.155, \"Whole_weight\": 1.368, \"Shucked_weight\": 0.6185, \"Viscera_weight\": 0.28800000000000003, \"Shell_weight\": 0.365, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.446, \"Shucked_weight\": 0.6485, \"Viscera_weight\": 0.2705, \"Shell_weight\": 0.45, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.505, \"Height\": 0.19, \"Whole_weight\": 1.4045, \"Shucked_weight\": 0.6255, \"Viscera_weight\": 0.3375, \"Shell_weight\": 0.3745, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.525, \"Height\": 0.2, \"Whole_weight\": 1.463, \"Shucked_weight\": 0.6525, \"Viscera_weight\": 0.2995, \"Shell_weight\": 0.42200000000000004, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.525, \"Height\": 0.17, \"Whole_weight\": 1.7109999999999999, \"Shucked_weight\": 0.8365, \"Viscera_weight\": 0.35200000000000004, \"Shell_weight\": 0.475, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.54, \"Height\": 0.205, \"Whole_weight\": 1.74, \"Shucked_weight\": 0.7885, \"Viscera_weight\": 0.373, \"Shell_weight\": 0.4865, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.705, \"Diameter\": 0.54, \"Height\": 0.205, \"Whole_weight\": 1.757, \"Shucked_weight\": 0.8265, \"Viscera_weight\": 0.41700000000000004, \"Shell_weight\": 0.461, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.71, \"Diameter\": 0.565, \"Height\": 0.2, \"Whole_weight\": 1.601, \"Shucked_weight\": 0.706, \"Viscera_weight\": 0.321, \"Shell_weight\": 0.45, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.72, \"Diameter\": 0.55, \"Height\": 0.205, \"Whole_weight\": 2.165, \"Shucked_weight\": 1.1055, \"Viscera_weight\": 0.525, \"Shell_weight\": 0.40399999999999997, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.725, \"Diameter\": 0.57, \"Height\": 0.19, \"Whole_weight\": 2.3305, \"Shucked_weight\": 1.253, \"Viscera_weight\": 0.541, \"Shell_weight\": 0.52, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.24, \"Diameter\": 0.17, \"Height\": 0.05, \"Whole_weight\": 0.0545, \"Shucked_weight\": 0.0205, \"Viscera_weight\": 0.016, \"Shell_weight\": 0.0155, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.255, \"Diameter\": 0.195, \"Height\": 0.055, \"Whole_weight\": 0.0725, \"Shucked_weight\": 0.0285, \"Viscera_weight\": 0.017, \"Shell_weight\": 0.021, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.2, \"Height\": 0.055, \"Whole_weight\": 0.0925, \"Shucked_weight\": 0.038, \"Viscera_weight\": 0.021, \"Shell_weight\": 0.026000000000000002, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.235, \"Height\": 0.09, \"Whole_weight\": 0.183, \"Shucked_weight\": 0.098, \"Viscera_weight\": 0.0335, \"Shell_weight\": 0.042, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.24, \"Height\": 0.075, \"Whole_weight\": 0.1525, \"Shucked_weight\": 0.07200000000000001, \"Viscera_weight\": 0.0645, \"Shell_weight\": 0.043, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.33, \"Diameter\": 0.225, \"Height\": 0.075, \"Whole_weight\": 0.187, \"Shucked_weight\": 0.0945, \"Viscera_weight\": 0.0395, \"Shell_weight\": 0.0425, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.27, \"Height\": 0.09, \"Whole_weight\": 0.23199999999999998, \"Shucked_weight\": 0.12, \"Viscera_weight\": 0.0435, \"Shell_weight\": 0.055999999999999994, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.265, \"Height\": 0.095, \"Whole_weight\": 0.196, \"Shucked_weight\": 0.085, \"Viscera_weight\": 0.042, \"Shell_weight\": 0.0585, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.285, \"Height\": 0.09, \"Whole_weight\": 0.2545, \"Shucked_weight\": 0.11900000000000001, \"Viscera_weight\": 0.0595, \"Shell_weight\": 0.0675, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.29, \"Height\": 0.09, \"Whole_weight\": 0.2625, \"Shucked_weight\": 0.11699999999999999, \"Viscera_weight\": 0.054000000000000006, \"Shell_weight\": 0.077, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.335, \"Height\": 0.105, \"Whole_weight\": 0.36200000000000004, \"Shucked_weight\": 0.1575, \"Viscera_weight\": 0.0795, \"Shell_weight\": 0.1095, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.35, \"Height\": 0.105, \"Whole_weight\": 0.4445, \"Shucked_weight\": 0.213, \"Viscera_weight\": 0.107, \"Shell_weight\": 0.1115, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.365, \"Height\": 0.115, \"Whole_weight\": 0.511, \"Shucked_weight\": 0.2365, \"Viscera_weight\": 0.11800000000000001, \"Shell_weight\": 0.12300000000000001, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.589, \"Shucked_weight\": 0.3075, \"Viscera_weight\": 0.1215, \"Shell_weight\": 0.1405, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.365, \"Height\": 0.13, \"Whole_weight\": 0.5945, \"Shucked_weight\": 0.309, \"Viscera_weight\": 0.1085, \"Shell_weight\": 0.1535, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.529, \"Shucked_weight\": 0.2235, \"Viscera_weight\": 0.12300000000000001, \"Shell_weight\": 0.16, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.4, \"Height\": 0.105, \"Whole_weight\": 0.872, \"Shucked_weight\": 0.4515, \"Viscera_weight\": 0.1615, \"Shell_weight\": 0.1985, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.395, \"Height\": 0.145, \"Whole_weight\": 0.77, \"Shucked_weight\": 0.424, \"Viscera_weight\": 0.142, \"Shell_weight\": 0.1895, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.43, \"Height\": 0.135, \"Whole_weight\": 0.8435, \"Shucked_weight\": 0.4325, \"Viscera_weight\": 0.18, \"Shell_weight\": 0.1815, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.405, \"Height\": 0.14, \"Whole_weight\": 0.818, \"Shucked_weight\": 0.402, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.18899999999999997, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.54, \"Diameter\": 0.42, \"Height\": 0.14, \"Whole_weight\": 0.8035, \"Shucked_weight\": 0.38, \"Viscera_weight\": 0.1805, \"Shell_weight\": 0.21, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.54, \"Diameter\": 0.415, \"Height\": 0.15, \"Whole_weight\": 0.8115, \"Shucked_weight\": 0.3875, \"Viscera_weight\": 0.1875, \"Shell_weight\": 0.2035, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.425, \"Height\": 0.13, \"Whole_weight\": 0.782, \"Shucked_weight\": 0.3695, \"Viscera_weight\": 0.1745, \"Shell_weight\": 0.1965, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.42, \"Height\": 0.14, \"Whole_weight\": 0.8745, \"Shucked_weight\": 0.41600000000000004, \"Viscera_weight\": 0.165, \"Shell_weight\": 0.25, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.445, \"Height\": 0.16, \"Whole_weight\": 0.9840000000000001, \"Shucked_weight\": 0.49, \"Viscera_weight\": 0.201, \"Shell_weight\": 0.27, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.445, \"Height\": 0.135, \"Whole_weight\": 0.95, \"Shucked_weight\": 0.484, \"Viscera_weight\": 0.182, \"Shell_weight\": 0.2325, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 1.1735, \"Shucked_weight\": 0.6245, \"Viscera_weight\": 0.233, \"Shell_weight\": 0.2595, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 0.976, \"Shucked_weight\": 0.465, \"Viscera_weight\": 0.2055, \"Shell_weight\": 0.2765, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.485, \"Height\": 0.155, \"Whole_weight\": 1.0785, \"Shucked_weight\": 0.4535, \"Viscera_weight\": 0.2435, \"Shell_weight\": 0.31, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.435, \"Height\": 0.16, \"Whole_weight\": 1.057, \"Shucked_weight\": 0.4255, \"Viscera_weight\": 0.22399999999999998, \"Shell_weight\": 0.31, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.11, \"Shucked_weight\": 0.5105, \"Viscera_weight\": 0.256, \"Shell_weight\": 0.285, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 1.1420000000000001, \"Shucked_weight\": 0.539, \"Viscera_weight\": 0.225, \"Shell_weight\": 0.307, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.19, \"Whole_weight\": 1.1255, \"Shucked_weight\": 0.59, \"Viscera_weight\": 0.247, \"Shell_weight\": 0.26, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.48, \"Height\": 0.17, \"Whole_weight\": 1.1045, \"Shucked_weight\": 0.535, \"Viscera_weight\": 0.25, \"Shell_weight\": 0.287, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.3405, \"Shucked_weight\": 0.6559999999999999, \"Viscera_weight\": 0.28300000000000003, \"Shell_weight\": 0.337, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.5, \"Height\": 0.13, \"Whole_weight\": 1.082, \"Shucked_weight\": 0.5785, \"Viscera_weight\": 0.2045, \"Shell_weight\": 0.25, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.485, \"Height\": 0.16, \"Whole_weight\": 1.254, \"Shucked_weight\": 0.591, \"Viscera_weight\": 0.259, \"Shell_weight\": 0.3485, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.49, \"Height\": 0.165, \"Whole_weight\": 1.2005, \"Shucked_weight\": 0.575, \"Viscera_weight\": 0.273, \"Shell_weight\": 0.294, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.485, \"Height\": 0.16, \"Whole_weight\": 1.2429999999999999, \"Shucked_weight\": 0.623, \"Viscera_weight\": 0.275, \"Shell_weight\": 0.3, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.51, \"Height\": 0.185, \"Whole_weight\": 1.286, \"Shucked_weight\": 0.526, \"Viscera_weight\": 0.295, \"Shell_weight\": 0.4105, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.49, \"Height\": 0.16, \"Whole_weight\": 1.1665, \"Shucked_weight\": 0.4935, \"Viscera_weight\": 0.3155, \"Shell_weight\": 0.299, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.49, \"Height\": 0.16, \"Whole_weight\": 1.1440000000000001, \"Shucked_weight\": 0.5015, \"Viscera_weight\": 0.289, \"Shell_weight\": 0.319, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.525, \"Height\": 0.19, \"Whole_weight\": 1.385, \"Shucked_weight\": 0.8875, \"Viscera_weight\": 0.3095, \"Shell_weight\": 0.405, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.515, \"Height\": 0.155, \"Whole_weight\": 1.3090000000000002, \"Shucked_weight\": 0.524, \"Viscera_weight\": 0.34600000000000003, \"Shell_weight\": 0.385, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.515, \"Height\": 0.17, \"Whole_weight\": 1.527, \"Shucked_weight\": 0.8485, \"Viscera_weight\": 0.2635, \"Shell_weight\": 0.331, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.515, \"Height\": 0.19, \"Whole_weight\": 1.6385, \"Shucked_weight\": 0.831, \"Viscera_weight\": 0.3575, \"Shell_weight\": 0.371, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.695, \"Diameter\": 0.54, \"Height\": 0.195, \"Whole_weight\": 1.6909999999999998, \"Shucked_weight\": 0.768, \"Viscera_weight\": 0.363, \"Shell_weight\": 0.4755, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.565, \"Height\": 0.18, \"Whole_weight\": 1.719, \"Shucked_weight\": 0.8465, \"Viscera_weight\": 0.40700000000000003, \"Shell_weight\": 0.3875, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.55, \"Height\": 0.18, \"Whole_weight\": 1.52, \"Shucked_weight\": 0.637, \"Viscera_weight\": 0.325, \"Shell_weight\": 0.435, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.565, \"Height\": 0.17, \"Whole_weight\": 1.6130000000000002, \"Shucked_weight\": 0.723, \"Viscera_weight\": 0.3255, \"Shell_weight\": 0.4945, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.735, \"Diameter\": 0.57, \"Height\": 0.21, \"Whole_weight\": 2.2355, \"Shucked_weight\": 1.1705, \"Viscera_weight\": 0.46299999999999997, \"Shell_weight\": 0.5315, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.74, \"Diameter\": 0.595, \"Height\": 0.19, \"Whole_weight\": 2.3235, \"Shucked_weight\": 1.1495, \"Viscera_weight\": 0.5115, \"Shell_weight\": 0.505, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.31, \"Diameter\": 0.23, \"Height\": 0.07, \"Whole_weight\": 0.1245, \"Shucked_weight\": 0.0505, \"Viscera_weight\": 0.0265, \"Shell_weight\": 0.038, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.315, \"Diameter\": 0.235, \"Height\": 0.075, \"Whole_weight\": 0.1285, \"Shucked_weight\": 0.051, \"Viscera_weight\": 0.027999999999999997, \"Shell_weight\": 0.0405, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.205, \"Height\": 0.08, \"Whole_weight\": 0.18100000000000002, \"Shucked_weight\": 0.08800000000000001, \"Viscera_weight\": 0.034, \"Shell_weight\": 0.0495, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.25, \"Height\": 0.075, \"Whole_weight\": 0.1585, \"Shucked_weight\": 0.075, \"Viscera_weight\": 0.0305, \"Shell_weight\": 0.0455, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.26, \"Height\": 0.09, \"Whole_weight\": 0.1965, \"Shucked_weight\": 0.0875, \"Viscera_weight\": 0.040999999999999995, \"Shell_weight\": 0.055999999999999994, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.28, \"Height\": 0.085, \"Whole_weight\": 0.198, \"Shucked_weight\": 0.0805, \"Viscera_weight\": 0.0455, \"Shell_weight\": 0.057999999999999996, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.27, \"Height\": 0.09, \"Whole_weight\": 0.1855, \"Shucked_weight\": 0.07, \"Viscera_weight\": 0.0425, \"Shell_weight\": 0.065, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.28, \"Height\": 0.085, \"Whole_weight\": 0.2145, \"Shucked_weight\": 0.0855, \"Viscera_weight\": 0.0485, \"Shell_weight\": 0.07200000000000001, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.315, \"Height\": 0.09, \"Whole_weight\": 0.3245, \"Shucked_weight\": 0.151, \"Viscera_weight\": 0.073, \"Shell_weight\": 0.08800000000000001, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.305, \"Height\": 0.095, \"Whole_weight\": 0.2625, \"Shucked_weight\": 0.1, \"Viscera_weight\": 0.0515, \"Shell_weight\": 0.09, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.34, \"Height\": 0.1, \"Whole_weight\": 0.371, \"Shucked_weight\": 0.15, \"Viscera_weight\": 0.0865, \"Shell_weight\": 0.115, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.335, \"Height\": 0.095, \"Whole_weight\": 0.298, \"Shucked_weight\": 0.109, \"Viscera_weight\": 0.057999999999999996, \"Shell_weight\": 0.115, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.31, \"Height\": 0.09, \"Whole_weight\": 0.336, \"Shucked_weight\": 0.1555, \"Viscera_weight\": 0.09, \"Shell_weight\": 0.0855, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.36, \"Height\": 0.14, \"Whole_weight\": 0.447, \"Shucked_weight\": 0.161, \"Viscera_weight\": 0.087, \"Shell_weight\": 0.16, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.465, \"Diameter\": 0.35, \"Height\": 0.11, \"Whole_weight\": 0.4085, \"Shucked_weight\": 0.165, \"Viscera_weight\": 0.102, \"Shell_weight\": 0.131, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.385, \"Height\": 0.13, \"Whole_weight\": 0.5870000000000001, \"Shucked_weight\": 0.264, \"Viscera_weight\": 0.11699999999999999, \"Shell_weight\": 0.174, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.375, \"Height\": 0.11, \"Whole_weight\": 0.494, \"Shucked_weight\": 0.21100000000000002, \"Viscera_weight\": 0.109, \"Shell_weight\": 0.1545, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.375, \"Height\": 0.12, \"Whole_weight\": 0.614, \"Shucked_weight\": 0.2855, \"Viscera_weight\": 0.1365, \"Shell_weight\": 0.161, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.39, \"Height\": 0.13, \"Whole_weight\": 0.5075, \"Shucked_weight\": 0.2115, \"Viscera_weight\": 0.10400000000000001, \"Shell_weight\": 0.1755, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.37, \"Height\": 0.12, \"Whole_weight\": 0.5445, \"Shucked_weight\": 0.249, \"Viscera_weight\": 0.1065, \"Shell_weight\": 0.152, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.425, \"Height\": 0.125, \"Whole_weight\": 0.6115, \"Shucked_weight\": 0.245, \"Viscera_weight\": 0.1375, \"Shell_weight\": 0.2, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.505, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.5605, \"Shucked_weight\": 0.2255, \"Viscera_weight\": 0.1435, \"Shell_weight\": 0.17, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.365, \"Height\": 0.115, \"Whole_weight\": 0.521, \"Shucked_weight\": 0.25, \"Viscera_weight\": 0.096, \"Shell_weight\": 0.15, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.4, \"Height\": 0.145, \"Whole_weight\": 0.5775, \"Shucked_weight\": 0.231, \"Viscera_weight\": 0.14300000000000002, \"Shell_weight\": 0.177, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.5935, \"Shucked_weight\": 0.239, \"Viscera_weight\": 0.13, \"Shell_weight\": 0.204, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.4, \"Height\": 0.11, \"Whole_weight\": 0.597, \"Shucked_weight\": 0.2935, \"Viscera_weight\": 0.1155, \"Shell_weight\": 0.16, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 0.9505, \"Shucked_weight\": 0.456, \"Viscera_weight\": 0.19899999999999998, \"Shell_weight\": 0.255, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.38, \"Height\": 0.125, \"Whole_weight\": 0.616, \"Shucked_weight\": 0.292, \"Viscera_weight\": 0.113, \"Shell_weight\": 0.185, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.405, \"Height\": 0.15, \"Whole_weight\": 0.8315, \"Shucked_weight\": 0.35200000000000004, \"Viscera_weight\": 0.187, \"Shell_weight\": 0.2525, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.445, \"Height\": 0.125, \"Whole_weight\": 0.8725, \"Shucked_weight\": 0.41700000000000004, \"Viscera_weight\": 0.19899999999999998, \"Shell_weight\": 0.24, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.425, \"Height\": 0.13, \"Whole_weight\": 0.8155, \"Shucked_weight\": 0.3675, \"Viscera_weight\": 0.1365, \"Shell_weight\": 0.24600000000000002, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.415, \"Height\": 0.11, \"Whole_weight\": 0.619, \"Shucked_weight\": 0.2755, \"Viscera_weight\": 0.15, \"Shell_weight\": 0.1765, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.545, \"Diameter\": 0.43, \"Height\": 0.13, \"Whole_weight\": 0.7595, \"Shucked_weight\": 0.358, \"Viscera_weight\": 0.153, \"Shell_weight\": 0.2055, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.545, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.742, \"Shucked_weight\": 0.3525, \"Viscera_weight\": 0.158, \"Shell_weight\": 0.20800000000000002, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.435, \"Height\": 0.165, \"Whole_weight\": 0.804, \"Shucked_weight\": 0.34, \"Viscera_weight\": 0.19399999999999998, \"Shell_weight\": 0.244, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.13, \"Whole_weight\": 0.664, \"Shucked_weight\": 0.2695, \"Viscera_weight\": 0.163, \"Shell_weight\": 0.21, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.745, \"Shucked_weight\": 0.34700000000000003, \"Viscera_weight\": 0.174, \"Shell_weight\": 0.2265, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.43, \"Height\": 0.13, \"Whole_weight\": 0.728, \"Shucked_weight\": 0.3355, \"Viscera_weight\": 0.1435, \"Shell_weight\": 0.2175, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.56, \"Diameter\": 0.435, \"Height\": 0.13, \"Whole_weight\": 0.777, \"Shucked_weight\": 0.354, \"Viscera_weight\": 0.17300000000000001, \"Shell_weight\": 0.222, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.425, \"Height\": 0.15, \"Whole_weight\": 0.8765, \"Shucked_weight\": 0.455, \"Viscera_weight\": 0.18, \"Shell_weight\": 0.228, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.455, \"Height\": 0.16, \"Whole_weight\": 0.9895, \"Shucked_weight\": 0.495, \"Viscera_weight\": 0.195, \"Shell_weight\": 0.24600000000000002, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.165, \"Whole_weight\": 0.9655, \"Shucked_weight\": 0.498, \"Viscera_weight\": 0.19, \"Shell_weight\": 0.23, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 0.9065, \"Shucked_weight\": 0.371, \"Viscera_weight\": 0.1965, \"Shell_weight\": 0.29, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.15, \"Whole_weight\": 1.0490000000000002, \"Shucked_weight\": 0.5205, \"Viscera_weight\": 0.1935, \"Shell_weight\": 0.305, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.17, \"Whole_weight\": 0.9705, \"Shucked_weight\": 0.4615, \"Viscera_weight\": 0.23199999999999998, \"Shell_weight\": 0.248, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 0.92, \"Shucked_weight\": 0.39299999999999996, \"Viscera_weight\": 0.212, \"Shell_weight\": 0.2895, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.445, \"Height\": 0.15, \"Whole_weight\": 0.9525, \"Shucked_weight\": 0.4315, \"Viscera_weight\": 0.1945, \"Shell_weight\": 0.287, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.44, \"Height\": 0.125, \"Whole_weight\": 0.7855, \"Shucked_weight\": 0.363, \"Viscera_weight\": 0.1955, \"Shell_weight\": 0.195, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.585, \"Diameter\": 0.45, \"Height\": 0.135, \"Whole_weight\": 0.855, \"Shucked_weight\": 0.3795, \"Viscera_weight\": 0.187, \"Shell_weight\": 0.26, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.5, \"Height\": 0.15, \"Whole_weight\": 1.1420000000000001, \"Shucked_weight\": 0.485, \"Viscera_weight\": 0.265, \"Shell_weight\": 0.345, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.59, \"Diameter\": 0.46, \"Height\": 0.125, \"Whole_weight\": 0.755, \"Shucked_weight\": 0.33399999999999996, \"Viscera_weight\": 0.15, \"Shell_weight\": 0.23800000000000002, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.59, \"Diameter\": 0.475, \"Height\": 0.145, \"Whole_weight\": 0.9745, \"Shucked_weight\": 0.4675, \"Viscera_weight\": 0.207, \"Shell_weight\": 0.259, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 1.2015, \"Shucked_weight\": 0.49200000000000005, \"Viscera_weight\": 0.3865, \"Shell_weight\": 0.265, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.46, \"Height\": 0.17, \"Whole_weight\": 1.1295, \"Shucked_weight\": 0.57, \"Viscera_weight\": 0.2555, \"Shell_weight\": 0.265, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.6, \"Diameter\": 0.445, \"Height\": 0.135, \"Whole_weight\": 0.9205, \"Shucked_weight\": 0.445, \"Viscera_weight\": 0.2035, \"Shell_weight\": 0.253, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.48, \"Height\": 0.17, \"Whole_weight\": 1.056, \"Shucked_weight\": 0.4575, \"Viscera_weight\": 0.2435, \"Shell_weight\": 0.3135, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.45, \"Height\": 0.195, \"Whole_weight\": 1.34, \"Shucked_weight\": 0.617, \"Viscera_weight\": 0.3255, \"Shell_weight\": 0.3605, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 0.9625, \"Shucked_weight\": 0.4375, \"Viscera_weight\": 0.2225, \"Shell_weight\": 0.2775, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.465, \"Height\": 0.165, \"Whole_weight\": 1.0475, \"Shucked_weight\": 0.465, \"Viscera_weight\": 0.2345, \"Shell_weight\": 0.315, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.495, \"Height\": 0.17, \"Whole_weight\": 1.0915, \"Shucked_weight\": 0.4365, \"Viscera_weight\": 0.2715, \"Shell_weight\": 0.335, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.49, \"Height\": 0.18, \"Whole_weight\": 1.167, \"Shucked_weight\": 0.457, \"Viscera_weight\": 0.29, \"Shell_weight\": 0.3745, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.605, \"Diameter\": 0.48, \"Height\": 0.155, \"Whole_weight\": 0.9995, \"Shucked_weight\": 0.425, \"Viscera_weight\": 0.1985, \"Shell_weight\": 0.3, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.61, \"Diameter\": 0.425, \"Height\": 0.155, \"Whole_weight\": 1.0485, \"Shucked_weight\": 0.507, \"Viscera_weight\": 0.1955, \"Shell_weight\": 0.27399999999999997, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.47, \"Height\": 0.195, \"Whole_weight\": 1.2735, \"Shucked_weight\": 0.469, \"Viscera_weight\": 0.3315, \"Shell_weight\": 0.39799999999999996, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.48, \"Height\": 0.14, \"Whole_weight\": 1.0625, \"Shucked_weight\": 0.516, \"Viscera_weight\": 0.225, \"Shell_weight\": 0.2915, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.61, \"Diameter\": 0.49, \"Height\": 0.16, \"Whole_weight\": 1.1545, \"Shucked_weight\": 0.5865, \"Viscera_weight\": 0.2385, \"Shell_weight\": 0.2915, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.194, \"Shucked_weight\": 0.5589999999999999, \"Viscera_weight\": 0.259, \"Shell_weight\": 0.3165, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.515, \"Height\": 0.135, \"Whole_weight\": 1.1215, \"Shucked_weight\": 0.545, \"Viscera_weight\": 0.2305, \"Shell_weight\": 0.29, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 0.9335, \"Shucked_weight\": 0.382, \"Viscera_weight\": 0.247, \"Shell_weight\": 0.2615, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.495, \"Height\": 0.165, \"Whole_weight\": 1.198, \"Shucked_weight\": 0.5415, \"Viscera_weight\": 0.2865, \"Shell_weight\": 0.3185, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 0.9545, \"Shucked_weight\": 0.455, \"Viscera_weight\": 0.1865, \"Shell_weight\": 0.27699999999999997, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.475, \"Height\": 0.195, \"Whole_weight\": 1.3585, \"Shucked_weight\": 0.5935, \"Viscera_weight\": 0.3365, \"Shell_weight\": 0.3745, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.495, \"Height\": 0.175, \"Whole_weight\": 1.2075, \"Shucked_weight\": 0.531, \"Viscera_weight\": 0.281, \"Shell_weight\": 0.3525, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.515, \"Height\": 0.165, \"Whole_weight\": 1.217, \"Shucked_weight\": 0.667, \"Viscera_weight\": 0.2065, \"Shell_weight\": 0.3115, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.5, \"Height\": 0.16, \"Whole_weight\": 1.217, \"Shucked_weight\": 0.5725, \"Viscera_weight\": 0.207, \"Shell_weight\": 0.355, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.145, \"Whole_weight\": 0.92, \"Shucked_weight\": 0.43700000000000006, \"Viscera_weight\": 0.1735, \"Shell_weight\": 0.28, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.12, \"Whole_weight\": 0.8765, \"Shucked_weight\": 0.456, \"Viscera_weight\": 0.18, \"Shell_weight\": 0.233, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.2615, \"Shucked_weight\": 0.5505, \"Viscera_weight\": 0.27699999999999997, \"Shell_weight\": 0.3885, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.53, \"Height\": 0.18, \"Whole_weight\": 1.2795, \"Shucked_weight\": 0.618, \"Viscera_weight\": 0.256, \"Shell_weight\": 0.315, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.485, \"Height\": 0.185, \"Whole_weight\": 1.167, \"Shucked_weight\": 0.5479999999999999, \"Viscera_weight\": 0.2485, \"Shell_weight\": 0.34, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.51, \"Height\": 0.17, \"Whole_weight\": 1.1885, \"Shucked_weight\": 0.4915, \"Viscera_weight\": 0.3065, \"Shell_weight\": 0.348, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.485, \"Height\": 0.19, \"Whole_weight\": 1.3765, \"Shucked_weight\": 0.634, \"Viscera_weight\": 0.2885, \"Shell_weight\": 0.406, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.52, \"Height\": 0.175, \"Whole_weight\": 1.2919999999999998, \"Shucked_weight\": 0.6, \"Viscera_weight\": 0.26899999999999996, \"Shell_weight\": 0.36700000000000005, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.485, \"Height\": 0.18, \"Whole_weight\": 1.1795, \"Shucked_weight\": 0.4785, \"Viscera_weight\": 0.2775, \"Shell_weight\": 0.355, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.5, \"Height\": 0.19, \"Whole_weight\": 1.29, \"Shucked_weight\": 0.593, \"Viscera_weight\": 0.3045, \"Shell_weight\": 0.35200000000000004, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.515, \"Height\": 0.16, \"Whole_weight\": 1.2075, \"Shucked_weight\": 0.5385, \"Viscera_weight\": 0.282, \"Shell_weight\": 0.345, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.505, \"Height\": 0.18, \"Whole_weight\": 1.297, \"Shucked_weight\": 0.59, \"Viscera_weight\": 0.3125, \"Shell_weight\": 0.363, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.575, \"Height\": 0.175, \"Whole_weight\": 1.4585, \"Shucked_weight\": 0.625, \"Viscera_weight\": 0.266, \"Shell_weight\": 0.4395, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.485, \"Height\": 0.15, \"Whole_weight\": 1.151, \"Shucked_weight\": 0.5935, \"Viscera_weight\": 0.2315, \"Shell_weight\": 0.293, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.52, \"Height\": 0.17, \"Whole_weight\": 1.197, \"Shucked_weight\": 0.526, \"Viscera_weight\": 0.2925, \"Shell_weight\": 0.317, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.495, \"Height\": 0.19, \"Whole_weight\": 1.5390000000000001, \"Shucked_weight\": 0.6115, \"Viscera_weight\": 0.408, \"Shell_weight\": 0.445, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.52, \"Height\": 0.195, \"Whole_weight\": 1.676, \"Shucked_weight\": 0.693, \"Viscera_weight\": 0.44, \"Shell_weight\": 0.47, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.565, \"Height\": 0.2, \"Whole_weight\": 1.6645, \"Shucked_weight\": 0.753, \"Viscera_weight\": 0.36700000000000005, \"Shell_weight\": 0.43, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.5, \"Height\": 0.205, \"Whole_weight\": 1.528, \"Shucked_weight\": 0.6215, \"Viscera_weight\": 0.3725, \"Shell_weight\": 0.4535, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.515, \"Height\": 0.2, \"Whole_weight\": 1.494, \"Shucked_weight\": 0.7255, \"Viscera_weight\": 0.309, \"Shell_weight\": 0.405, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.525, \"Height\": 0.16, \"Whole_weight\": 1.2770000000000001, \"Shucked_weight\": 0.4975, \"Viscera_weight\": 0.319, \"Shell_weight\": 0.39399999999999996, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.525, \"Height\": 0.18, \"Whole_weight\": 1.5965, \"Shucked_weight\": 0.7765, \"Viscera_weight\": 0.397, \"Shell_weight\": 0.3605, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.3805, \"Shucked_weight\": 0.675, \"Viscera_weight\": 0.2985, \"Shell_weight\": 0.325, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.67, \"Diameter\": 0.485, \"Height\": 0.175, \"Whole_weight\": 1.2565, \"Shucked_weight\": 0.5355, \"Viscera_weight\": 0.322, \"Shell_weight\": 0.386, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.525, \"Height\": 0.19, \"Whole_weight\": 1.527, \"Shucked_weight\": 0.5755, \"Viscera_weight\": 0.353, \"Shell_weight\": 0.44, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.525, \"Height\": 0.17, \"Whole_weight\": 1.4005, \"Shucked_weight\": 0.715, \"Viscera_weight\": 0.3025, \"Shell_weight\": 0.387, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.525, \"Height\": 0.195, \"Whole_weight\": 1.4405, \"Shucked_weight\": 0.6595, \"Viscera_weight\": 0.2675, \"Shell_weight\": 0.425, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.54, \"Height\": 0.175, \"Whole_weight\": 1.482, \"Shucked_weight\": 0.7390000000000001, \"Viscera_weight\": 0.2925, \"Shell_weight\": 0.365, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.68, \"Diameter\": 0.515, \"Height\": 0.16, \"Whole_weight\": 1.2345, \"Shucked_weight\": 0.618, \"Viscera_weight\": 0.2625, \"Shell_weight\": 0.325, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.505, \"Height\": 0.17, \"Whole_weight\": 1.3435, \"Shucked_weight\": 0.657, \"Viscera_weight\": 0.297, \"Shell_weight\": 0.355, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.685, \"Diameter\": 0.505, \"Height\": 0.19, \"Whole_weight\": 1.5330000000000001, \"Shucked_weight\": 0.667, \"Viscera_weight\": 0.4055, \"Shell_weight\": 0.41, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.69, \"Diameter\": 0.515, \"Height\": 0.18, \"Whole_weight\": 1.8445, \"Shucked_weight\": 0.9815, \"Viscera_weight\": 0.4655, \"Shell_weight\": 0.341, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.715, \"Diameter\": 0.55, \"Height\": 0.175, \"Whole_weight\": 1.825, \"Shucked_weight\": 0.938, \"Viscera_weight\": 0.3805, \"Shell_weight\": 0.44, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.72, \"Diameter\": 0.58, \"Height\": 0.19, \"Whole_weight\": 2.0885, \"Shucked_weight\": 0.9955, \"Viscera_weight\": 0.478, \"Shell_weight\": 0.5305, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.735, \"Diameter\": 0.59, \"Height\": 0.205, \"Whole_weight\": 2.0869999999999997, \"Shucked_weight\": 0.909, \"Viscera_weight\": 0.474, \"Shell_weight\": 0.625, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.745, \"Diameter\": 0.575, \"Height\": 0.2, \"Whole_weight\": 1.8840000000000001, \"Shucked_weight\": 0.9540000000000001, \"Viscera_weight\": 0.336, \"Shell_weight\": 0.495, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.215, \"Height\": 0.095, \"Whole_weight\": 0.305, \"Shucked_weight\": 0.14, \"Viscera_weight\": 0.067, \"Shell_weight\": 0.0885, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.345, \"Height\": 0.115, \"Whole_weight\": 0.4295, \"Shucked_weight\": 0.212, \"Viscera_weight\": 0.10800000000000001, \"Shell_weight\": 0.109, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.33, \"Height\": 0.1, \"Whole_weight\": 0.449, \"Shucked_weight\": 0.254, \"Viscera_weight\": 0.0825, \"Shell_weight\": 0.09699999999999999, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.485, \"Diameter\": 0.365, \"Height\": 0.155, \"Whole_weight\": 1.0290000000000001, \"Shucked_weight\": 0.4235, \"Viscera_weight\": 0.2285, \"Shell_weight\": 0.313, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.355, \"Height\": 0.155, \"Whole_weight\": 0.981, \"Shucked_weight\": 0.465, \"Viscera_weight\": 0.2015, \"Shell_weight\": 0.2505, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.37, \"Height\": 0.115, \"Whole_weight\": 0.5745, \"Shucked_weight\": 0.306, \"Viscera_weight\": 0.11199999999999999, \"Shell_weight\": 0.141, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.38, \"Height\": 0.13, \"Whole_weight\": 0.693, \"Shucked_weight\": 0.391, \"Viscera_weight\": 0.1195, \"Shell_weight\": 0.1515, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.51, \"Diameter\": 0.37, \"Height\": 0.21, \"Whole_weight\": 1.183, \"Shucked_weight\": 0.508, \"Viscera_weight\": 0.292, \"Shell_weight\": 0.34299999999999997, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.41, \"Height\": 0.135, \"Whole_weight\": 0.7905, \"Shucked_weight\": 0.4065, \"Viscera_weight\": 0.198, \"Shell_weight\": 0.177, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.4, \"Height\": 0.15, \"Whole_weight\": 1.224, \"Shucked_weight\": 0.618, \"Viscera_weight\": 0.275, \"Shell_weight\": 0.2875, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.4, \"Height\": 0.135, \"Whole_weight\": 0.775, \"Shucked_weight\": 0.368, \"Viscera_weight\": 0.20800000000000002, \"Shell_weight\": 0.2055, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.405, \"Height\": 0.175, \"Whole_weight\": 1.2705, \"Shucked_weight\": 0.5479999999999999, \"Viscera_weight\": 0.3265, \"Shell_weight\": 0.337, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.405, \"Height\": 0.19, \"Whole_weight\": 1.406, \"Shucked_weight\": 0.6115, \"Viscera_weight\": 0.342, \"Shell_weight\": 0.389, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.425, \"Height\": 0.15, \"Whole_weight\": 0.873, \"Shucked_weight\": 0.4625, \"Viscera_weight\": 0.1845, \"Shell_weight\": 0.1965, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.425, \"Height\": 0.135, \"Whole_weight\": 0.9415, \"Shucked_weight\": 0.509, \"Viscera_weight\": 0.2015, \"Shell_weight\": 0.1975, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.44, \"Height\": 0.14, \"Whole_weight\": 1.0070000000000001, \"Shucked_weight\": 0.4775, \"Viscera_weight\": 0.2105, \"Shell_weight\": 0.2925, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.485, \"Height\": 0.15, \"Whole_weight\": 1.0835, \"Shucked_weight\": 0.5305, \"Viscera_weight\": 0.231, \"Shell_weight\": 0.276, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.595, \"Diameter\": 0.43, \"Height\": 0.165, \"Whole_weight\": 0.9845, \"Shucked_weight\": 0.4525, \"Viscera_weight\": 0.207, \"Shell_weight\": 0.2725, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.43, \"Height\": 0.21, \"Whole_weight\": 1.5245, \"Shucked_weight\": 0.653, \"Viscera_weight\": 0.396, \"Shell_weight\": 0.41, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.024, \"Shucked_weight\": 0.409, \"Viscera_weight\": 0.261, \"Shell_weight\": 0.322, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.485, \"Height\": 0.17, \"Whole_weight\": 1.281, \"Shucked_weight\": 0.597, \"Viscera_weight\": 0.3035, \"Shell_weight\": 0.33, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.5, \"Height\": 0.17, \"Whole_weight\": 1.148, \"Shucked_weight\": 0.5475, \"Viscera_weight\": 0.22, \"Shell_weight\": 0.3315, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.11, \"Whole_weight\": 1.136, \"Shucked_weight\": 0.5265, \"Viscera_weight\": 0.1915, \"Shell_weight\": 0.2925, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.51, \"Height\": 0.17, \"Whole_weight\": 1.2235, \"Shucked_weight\": 0.532, \"Viscera_weight\": 0.271, \"Shell_weight\": 0.354, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.525, \"Height\": 0.18, \"Whole_weight\": 1.3695, \"Shucked_weight\": 0.634, \"Viscera_weight\": 0.318, \"Shell_weight\": 0.363, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.485, \"Height\": 0.16, \"Whole_weight\": 1.006, \"Shucked_weight\": 0.456, \"Viscera_weight\": 0.2245, \"Shell_weight\": 0.2835, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.495, \"Height\": 0.165, \"Whole_weight\": 1.307, \"Shucked_weight\": 0.6779999999999999, \"Viscera_weight\": 0.292, \"Shell_weight\": 0.266, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.505, \"Height\": 0.185, \"Whole_weight\": 1.463, \"Shucked_weight\": 0.5920000000000001, \"Viscera_weight\": 0.3905, \"Shell_weight\": 0.41600000000000004, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.505, \"Height\": 0.175, \"Whole_weight\": 1.2905, \"Shucked_weight\": 0.6205, \"Viscera_weight\": 0.2965, \"Shell_weight\": 0.326, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.515, \"Height\": 0.17, \"Whole_weight\": 1.4265, \"Shucked_weight\": 0.6605, \"Viscera_weight\": 0.3395, \"Shell_weight\": 0.37, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.68, \"Diameter\": 0.54, \"Height\": 0.21, \"Whole_weight\": 1.7885, \"Shucked_weight\": 0.8345, \"Viscera_weight\": 0.408, \"Shell_weight\": 0.43700000000000006, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.7, \"Diameter\": 0.545, \"Height\": 0.185, \"Whole_weight\": 1.6135, \"Shucked_weight\": 0.75, \"Viscera_weight\": 0.4035, \"Shell_weight\": 0.3685, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.73, \"Diameter\": 0.585, \"Height\": 0.225, \"Whole_weight\": 2.2305, \"Shucked_weight\": 1.2395, \"Viscera_weight\": 0.42200000000000004, \"Shell_weight\": 0.563, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.75, \"Diameter\": 0.615, \"Height\": 0.205, \"Whole_weight\": 2.2635, \"Shucked_weight\": 0.821, \"Viscera_weight\": 0.423, \"Shell_weight\": 0.726, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.255, \"Diameter\": 0.185, \"Height\": 0.065, \"Whole_weight\": 0.07400000000000001, \"Shucked_weight\": 0.0305, \"Viscera_weight\": 0.0165, \"Shell_weight\": 0.02, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.26, \"Height\": 0.08, \"Whole_weight\": 0.2075, \"Shucked_weight\": 0.09, \"Viscera_weight\": 0.0415, \"Shell_weight\": 0.07, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.285, \"Height\": 0.09, \"Whole_weight\": 0.237, \"Shucked_weight\": 0.106, \"Viscera_weight\": 0.0395, \"Shell_weight\": 0.08, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.3, \"Height\": 0.1, \"Whole_weight\": 0.2665, \"Shucked_weight\": 0.1105, \"Viscera_weight\": 0.059000000000000004, \"Shell_weight\": 0.084, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.28, \"Height\": 0.09, \"Whole_weight\": 0.215, \"Shucked_weight\": 0.0845, \"Viscera_weight\": 0.034, \"Shell_weight\": 0.079, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.253, \"Shucked_weight\": 0.1155, \"Viscera_weight\": 0.05, \"Shell_weight\": 0.075, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.32, \"Height\": 0.11, \"Whole_weight\": 0.309, \"Shucked_weight\": 0.115, \"Viscera_weight\": 0.0645, \"Shell_weight\": 0.0945, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.335, \"Height\": 0.105, \"Whole_weight\": 0.3535, \"Shucked_weight\": 0.156, \"Viscera_weight\": 0.05, \"Shell_weight\": 0.1135, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.325, \"Height\": 0.105, \"Whole_weight\": 0.335, \"Shucked_weight\": 0.136, \"Viscera_weight\": 0.065, \"Shell_weight\": 0.115, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.32, \"Height\": 0.105, \"Whole_weight\": 0.3875, \"Shucked_weight\": 0.1755, \"Viscera_weight\": 0.07400000000000001, \"Shell_weight\": 0.12, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.33, \"Height\": 0.115, \"Whole_weight\": 0.365, \"Shucked_weight\": 0.14, \"Viscera_weight\": 0.0825, \"Shell_weight\": 0.1245, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.34, \"Height\": 0.125, \"Whole_weight\": 0.4045, \"Shucked_weight\": 0.171, \"Viscera_weight\": 0.07, \"Shell_weight\": 0.1345, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.355, \"Height\": 0.105, \"Whole_weight\": 0.37200000000000005, \"Shucked_weight\": 0.138, \"Viscera_weight\": 0.0765, \"Shell_weight\": 0.135, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.37, \"Height\": 0.11, \"Whole_weight\": 0.3965, \"Shucked_weight\": 0.1485, \"Viscera_weight\": 0.0855, \"Shell_weight\": 0.1455, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.375, \"Height\": 0.125, \"Whole_weight\": 0.5225, \"Shucked_weight\": 0.2265, \"Viscera_weight\": 0.10400000000000001, \"Shell_weight\": 0.162, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.375, \"Height\": 0.11, \"Whole_weight\": 0.456, \"Shucked_weight\": 0.182, \"Viscera_weight\": 0.099, \"Shell_weight\": 0.16, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.33, \"Height\": 0.1, \"Whole_weight\": 0.44, \"Shucked_weight\": 0.177, \"Viscera_weight\": 0.095, \"Shell_weight\": 0.15, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.375, \"Height\": 0.115, \"Whole_weight\": 0.507, \"Shucked_weight\": 0.24100000000000002, \"Viscera_weight\": 0.10300000000000001, \"Shell_weight\": 0.15, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.5285, \"Shucked_weight\": 0.226, \"Viscera_weight\": 0.12300000000000001, \"Shell_weight\": 0.209, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.385, \"Height\": 0.125, \"Whole_weight\": 0.5720000000000001, \"Shucked_weight\": 0.237, \"Viscera_weight\": 0.1435, \"Shell_weight\": 0.165, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.41, \"Height\": 0.14, \"Whole_weight\": 0.6625, \"Shucked_weight\": 0.2775, \"Viscera_weight\": 0.1555, \"Shell_weight\": 0.196, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.395, \"Height\": 0.115, \"Whole_weight\": 0.6445, \"Shucked_weight\": 0.3155, \"Viscera_weight\": 0.1245, \"Shell_weight\": 0.18600000000000003, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.11, \"Whole_weight\": 0.6275, \"Shucked_weight\": 0.3015, \"Viscera_weight\": 0.126, \"Shell_weight\": 0.18, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.42, \"Height\": 0.145, \"Whole_weight\": 0.6885, \"Shucked_weight\": 0.273, \"Viscera_weight\": 0.1515, \"Shell_weight\": 0.237, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.41, \"Height\": 0.12, \"Whole_weight\": 0.6835, \"Shucked_weight\": 0.3125, \"Viscera_weight\": 0.1655, \"Shell_weight\": 0.159, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.42, \"Height\": 0.19, \"Whole_weight\": 0.6855, \"Shucked_weight\": 0.293, \"Viscera_weight\": 0.163, \"Shell_weight\": 0.38, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.405, \"Height\": 0.15, \"Whole_weight\": 0.6755, \"Shucked_weight\": 0.3015, \"Viscera_weight\": 0.1465, \"Shell_weight\": 0.21, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.445, \"Height\": 0.145, \"Whole_weight\": 0.7829999999999999, \"Shucked_weight\": 0.3045, \"Viscera_weight\": 0.157, \"Shell_weight\": 0.265, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 0.894, \"Shucked_weight\": 0.3885, \"Viscera_weight\": 0.2095, \"Shell_weight\": 0.264, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.135, \"Whole_weight\": 0.768, \"Shucked_weight\": 0.3305, \"Viscera_weight\": 0.1385, \"Shell_weight\": 0.2475, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 0.95, \"Shucked_weight\": 0.4005, \"Viscera_weight\": 0.2235, \"Shell_weight\": 0.2845, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.47, \"Height\": 0.14, \"Whole_weight\": 0.871, \"Shucked_weight\": 0.385, \"Viscera_weight\": 0.21100000000000002, \"Shell_weight\": 0.2315, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 0.9785, \"Shucked_weight\": 0.4505, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.276, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.43, \"Height\": 0.13, \"Whole_weight\": 0.7425, \"Shucked_weight\": 0.2895, \"Viscera_weight\": 0.2005, \"Shell_weight\": 0.22, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.445, \"Height\": 0.14, \"Whole_weight\": 0.737, \"Shucked_weight\": 0.325, \"Viscera_weight\": 0.1405, \"Shell_weight\": 0.237, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.445, \"Height\": 0.16, \"Whole_weight\": 0.9175, \"Shucked_weight\": 0.45, \"Viscera_weight\": 0.1935, \"Shell_weight\": 0.24, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.435, \"Height\": 0.155, \"Whole_weight\": 0.8785, \"Shucked_weight\": 0.425, \"Viscera_weight\": 0.1685, \"Shell_weight\": 0.2425, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.45, \"Height\": 0.175, \"Whole_weight\": 1.1275, \"Shucked_weight\": 0.4925, \"Viscera_weight\": 0.262, \"Shell_weight\": 0.335, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.435, \"Height\": 0.165, \"Whole_weight\": 0.9765, \"Shucked_weight\": 0.4525, \"Viscera_weight\": 0.2395, \"Shell_weight\": 0.235, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.59, \"Diameter\": 0.47, \"Height\": 0.145, \"Whole_weight\": 0.9740000000000001, \"Shucked_weight\": 0.45299999999999996, \"Viscera_weight\": 0.23600000000000002, \"Shell_weight\": 0.289, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.405, \"Height\": 0.15, \"Whole_weight\": 0.853, \"Shucked_weight\": 0.326, \"Viscera_weight\": 0.2615, \"Shell_weight\": 0.245, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.47, \"Height\": 0.175, \"Whole_weight\": 0.991, \"Shucked_weight\": 0.382, \"Viscera_weight\": 0.2395, \"Shell_weight\": 0.5, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.48, \"Height\": 0.14, \"Whole_weight\": 0.9125, \"Shucked_weight\": 0.4095, \"Viscera_weight\": 0.1825, \"Shell_weight\": 0.289, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.46, \"Height\": 0.16, \"Whole_weight\": 0.9209999999999999, \"Shucked_weight\": 0.4005, \"Viscera_weight\": 0.2025, \"Shell_weight\": 0.2875, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.45, \"Height\": 0.14, \"Whole_weight\": 0.8690000000000001, \"Shucked_weight\": 0.3425, \"Viscera_weight\": 0.195, \"Shell_weight\": 0.29100000000000004, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 0.8665, \"Shucked_weight\": 0.3695, \"Viscera_weight\": 0.1955, \"Shell_weight\": 0.255, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.495, \"Height\": 0.16, \"Whole_weight\": 1.089, \"Shucked_weight\": 0.469, \"Viscera_weight\": 0.198, \"Shell_weight\": 0.384, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.485, \"Height\": 0.215, \"Whole_weight\": 0.9615, \"Shucked_weight\": 0.42200000000000004, \"Viscera_weight\": 0.17600000000000002, \"Shell_weight\": 0.29, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.49, \"Height\": 0.17, \"Whole_weight\": 1.145, \"Shucked_weight\": 0.4915, \"Viscera_weight\": 0.20800000000000002, \"Shell_weight\": 0.34299999999999997, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.62, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 0.907, \"Shucked_weight\": 0.371, \"Viscera_weight\": 0.16699999999999998, \"Shell_weight\": 0.3075, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.515, \"Height\": 0.155, \"Whole_weight\": 1.1635, \"Shucked_weight\": 0.4875, \"Viscera_weight\": 0.259, \"Shell_weight\": 0.355, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.515, \"Height\": 0.175, \"Whole_weight\": 1.1955, \"Shucked_weight\": 0.49200000000000005, \"Viscera_weight\": 0.247, \"Shell_weight\": 0.37, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.495, \"Height\": 0.18, \"Whole_weight\": 1.31, \"Shucked_weight\": 0.495, \"Viscera_weight\": 0.295, \"Shell_weight\": 0.4695, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.251, \"Shucked_weight\": 0.5770000000000001, \"Viscera_weight\": 0.22699999999999998, \"Shell_weight\": 0.3825, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.49, \"Height\": 0.155, \"Whole_weight\": 1.145, \"Shucked_weight\": 0.4775, \"Viscera_weight\": 0.3035, \"Shell_weight\": 0.3155, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.5, \"Height\": 0.18, \"Whole_weight\": 1.1540000000000001, \"Shucked_weight\": 0.4405, \"Viscera_weight\": 0.2315, \"Shell_weight\": 0.387, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.485, \"Height\": 0.145, \"Whole_weight\": 1.1335, \"Shucked_weight\": 0.5525, \"Viscera_weight\": 0.2505, \"Shell_weight\": 0.3015, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.5, \"Height\": 0.15, \"Whole_weight\": 1.2015, \"Shucked_weight\": 0.5589999999999999, \"Viscera_weight\": 0.231, \"Shell_weight\": 0.3355, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.505, \"Height\": 0.17, \"Whole_weight\": 1.5595, \"Shucked_weight\": 0.695, \"Viscera_weight\": 0.3515, \"Shell_weight\": 0.395, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.3165, \"Shucked_weight\": 0.6345, \"Viscera_weight\": 0.2605, \"Shell_weight\": 0.364, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.54, \"Height\": 0.165, \"Whole_weight\": 1.403, \"Shucked_weight\": 0.6955, \"Viscera_weight\": 0.2385, \"Shell_weight\": 0.42, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.49, \"Height\": 0.16, \"Whole_weight\": 1.204, \"Shucked_weight\": 0.5455, \"Viscera_weight\": 0.2615, \"Shell_weight\": 0.3225, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.455, \"Height\": 0.17, \"Whole_weight\": 1.2895, \"Shucked_weight\": 0.5870000000000001, \"Viscera_weight\": 0.3165, \"Shell_weight\": 0.3415, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.53, \"Height\": 0.18, \"Whole_weight\": 1.5175, \"Shucked_weight\": 0.7765, \"Viscera_weight\": 0.302, \"Shell_weight\": 0.401, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.525, \"Height\": 0.155, \"Whole_weight\": 1.3575, \"Shucked_weight\": 0.5325, \"Viscera_weight\": 0.3045, \"Shell_weight\": 0.4485, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.675, \"Diameter\": 0.52, \"Height\": 0.145, \"Whole_weight\": 1.3645, \"Shucked_weight\": 0.557, \"Viscera_weight\": 0.3405, \"Shell_weight\": 0.385, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.52, \"Height\": 0.185, \"Whole_weight\": 1.494, \"Shucked_weight\": 0.615, \"Viscera_weight\": 0.3935, \"Shell_weight\": 0.406, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.68, \"Diameter\": 0.56, \"Height\": 0.195, \"Whole_weight\": 1.6640000000000001, \"Shucked_weight\": 0.58, \"Viscera_weight\": 0.3855, \"Shell_weight\": 0.545, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.685, \"Diameter\": 0.51, \"Height\": 0.165, \"Whole_weight\": 1.545, \"Shucked_weight\": 0.6859999999999999, \"Viscera_weight\": 0.3775, \"Shell_weight\": 0.4055, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.695, \"Diameter\": 0.535, \"Height\": 0.2, \"Whole_weight\": 1.5855, \"Shucked_weight\": 0.667, \"Viscera_weight\": 0.33399999999999996, \"Shell_weight\": 0.47100000000000003, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.555, \"Height\": 0.22, \"Whole_weight\": 1.666, \"Shucked_weight\": 0.647, \"Viscera_weight\": 0.4285, \"Shell_weight\": 0.455, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.71, \"Diameter\": 0.56, \"Height\": 0.175, \"Whole_weight\": 1.724, \"Shucked_weight\": 0.5660000000000001, \"Viscera_weight\": 0.4575, \"Shell_weight\": 0.4625, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.73, \"Diameter\": 0.55, \"Height\": 0.205, \"Whole_weight\": 1.9080000000000001, \"Shucked_weight\": 0.5415, \"Viscera_weight\": 0.3565, \"Shell_weight\": 0.5965, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.755, \"Diameter\": 0.575, \"Height\": 0.2, \"Whole_weight\": 2.073, \"Shucked_weight\": 1.0135, \"Viscera_weight\": 0.4655, \"Shell_weight\": 0.48, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.225, \"Diameter\": 0.17, \"Height\": 0.05, \"Whole_weight\": 0.0515, \"Shucked_weight\": 0.019, \"Viscera_weight\": 0.012, \"Shell_weight\": 0.017, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.23, \"Diameter\": 0.17, \"Height\": 0.05, \"Whole_weight\": 0.057, \"Shucked_weight\": 0.026000000000000002, \"Viscera_weight\": 0.013000000000000001, \"Shell_weight\": 0.016, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.255, \"Diameter\": 0.185, \"Height\": 0.06, \"Whole_weight\": 0.0925, \"Shucked_weight\": 0.039, \"Viscera_weight\": 0.021, \"Shell_weight\": 0.025, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.27, \"Height\": 0.075, \"Whole_weight\": 0.204, \"Shucked_weight\": 0.3045, \"Viscera_weight\": 0.046, \"Shell_weight\": 0.0595, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.31, \"Height\": 0.095, \"Whole_weight\": 0.3075, \"Shucked_weight\": 0.139, \"Viscera_weight\": 0.0745, \"Shell_weight\": 0.09300000000000001, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.32, \"Height\": 0.085, \"Whole_weight\": 0.262, \"Shucked_weight\": 0.1235, \"Viscera_weight\": 0.067, \"Shell_weight\": 0.0725, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.455, \"Diameter\": 0.35, \"Height\": 0.11, \"Whole_weight\": 0.45799999999999996, \"Shucked_weight\": 0.2, \"Viscera_weight\": 0.111, \"Shell_weight\": 0.1305, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.355, \"Height\": 0.14, \"Whole_weight\": 0.491, \"Shucked_weight\": 0.207, \"Viscera_weight\": 0.115, \"Shell_weight\": 0.174, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.38, \"Height\": 0.12, \"Whole_weight\": 0.474, \"Shucked_weight\": 0.19699999999999998, \"Viscera_weight\": 0.1065, \"Shell_weight\": 0.1545, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.395, \"Height\": 0.125, \"Whole_weight\": 0.5805, \"Shucked_weight\": 0.244, \"Viscera_weight\": 0.1335, \"Shell_weight\": 0.188, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.728, \"Shucked_weight\": 0.302, \"Viscera_weight\": 0.1575, \"Shell_weight\": 0.235, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.622, \"Shucked_weight\": 0.2655, \"Viscera_weight\": 0.147, \"Shell_weight\": 0.184, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.415, \"Height\": 0.12, \"Whole_weight\": 0.706, \"Shucked_weight\": 0.3355, \"Viscera_weight\": 0.1635, \"Shell_weight\": 0.1345, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.395, \"Height\": 0.115, \"Whole_weight\": 0.5685, \"Shucked_weight\": 0.249, \"Viscera_weight\": 0.1375, \"Shell_weight\": 0.161, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.435, \"Height\": 0.145, \"Whole_weight\": 0.9385, \"Shucked_weight\": 0.3685, \"Viscera_weight\": 0.1245, \"Shell_weight\": 0.345, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.655, \"Shucked_weight\": 0.2635, \"Viscera_weight\": 0.122, \"Shell_weight\": 0.221, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 0.9465, \"Shucked_weight\": 0.4355, \"Viscera_weight\": 0.2605, \"Shell_weight\": 0.2505, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.43, \"Height\": 0.125, \"Whole_weight\": 0.9115, \"Shucked_weight\": 0.446, \"Viscera_weight\": 0.2075, \"Shell_weight\": 0.121, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.455, \"Height\": 0.145, \"Whole_weight\": 0.9420000000000001, \"Shucked_weight\": 0.43, \"Viscera_weight\": 0.182, \"Shell_weight\": 0.27699999999999997, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.465, \"Height\": 0.18, \"Whole_weight\": 1.193, \"Shucked_weight\": 0.5145, \"Viscera_weight\": 0.315, \"Shell_weight\": 0.3055, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.18, \"Whole_weight\": 1.4609999999999999, \"Shucked_weight\": 0.5985, \"Viscera_weight\": 0.2425, \"Shell_weight\": 0.439, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.525, \"Height\": 0.2, \"Whole_weight\": 1.489, \"Shucked_weight\": 0.6065, \"Viscera_weight\": 0.3795, \"Shell_weight\": 0.42100000000000004, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.29, \"Diameter\": 0.215, \"Height\": 0.06, \"Whole_weight\": 0.1115, \"Shucked_weight\": 0.053, \"Viscera_weight\": 0.0185, \"Shell_weight\": 0.032, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.3, \"Diameter\": 0.22, \"Height\": 0.065, \"Whole_weight\": 0.1235, \"Shucked_weight\": 0.059000000000000004, \"Viscera_weight\": 0.026000000000000002, \"Shell_weight\": 0.0315, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.275, \"Height\": 0.1, \"Whole_weight\": 0.2815, \"Shucked_weight\": 0.1505, \"Viscera_weight\": 0.0505, \"Shell_weight\": 0.068, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.285, \"Height\": 0.08, \"Whole_weight\": 0.226, \"Shucked_weight\": 0.0975, \"Viscera_weight\": 0.04, \"Shell_weight\": 0.0725, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.38, \"Diameter\": 0.29, \"Height\": 0.085, \"Whole_weight\": 0.2285, \"Shucked_weight\": 0.08800000000000001, \"Viscera_weight\": 0.0465, \"Shell_weight\": 0.075, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.3, \"Height\": 0.12, \"Whole_weight\": 0.2995, \"Shucked_weight\": 0.1265, \"Viscera_weight\": 0.068, \"Shell_weight\": 0.0895, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.325, \"Height\": 0.105, \"Whole_weight\": 0.361, \"Shucked_weight\": 0.1605, \"Viscera_weight\": 0.0665, \"Shell_weight\": 0.10300000000000001, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.32, \"Height\": 0.115, \"Whole_weight\": 0.3045, \"Shucked_weight\": 0.1215, \"Viscera_weight\": 0.0735, \"Shell_weight\": 0.094, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.325, \"Height\": 0.105, \"Whole_weight\": 0.3975, \"Shucked_weight\": 0.1815, \"Viscera_weight\": 0.081, \"Shell_weight\": 0.1175, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.34, \"Height\": 0.1, \"Whole_weight\": 0.379, \"Shucked_weight\": 0.1725, \"Viscera_weight\": 0.0815, \"Shell_weight\": 0.10099999999999999, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.34, \"Height\": 0.12, \"Whole_weight\": 0.4995, \"Shucked_weight\": 0.2965, \"Viscera_weight\": 0.0945, \"Shell_weight\": 0.1185, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.405, \"Height\": 0.135, \"Whole_weight\": 0.7775, \"Shucked_weight\": 0.436, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.1455, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.36, \"Height\": 0.1, \"Whole_weight\": 0.4705, \"Shucked_weight\": 0.1635, \"Viscera_weight\": 0.08900000000000001, \"Shell_weight\": 0.1385, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.415, \"Height\": 0.145, \"Whole_weight\": 0.7509999999999999, \"Shucked_weight\": 0.3295, \"Viscera_weight\": 0.1835, \"Shell_weight\": 0.203, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.135, \"Whole_weight\": 0.7140000000000001, \"Shucked_weight\": 0.318, \"Viscera_weight\": 0.138, \"Shell_weight\": 0.20800000000000002, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.4, \"Height\": 0.13, \"Whole_weight\": 0.6995, \"Shucked_weight\": 0.3115, \"Viscera_weight\": 0.131, \"Shell_weight\": 0.223, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.14, \"Whole_weight\": 0.9520000000000001, \"Shucked_weight\": 0.4895, \"Viscera_weight\": 0.1945, \"Shell_weight\": 0.2185, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.42, \"Height\": 0.15, \"Whole_weight\": 0.8755, \"Shucked_weight\": 0.44, \"Viscera_weight\": 0.1965, \"Shell_weight\": 0.2315, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.135, \"Whole_weight\": 0.9215, \"Shucked_weight\": 0.354, \"Viscera_weight\": 0.209, \"Shell_weight\": 0.2365, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.135, \"Whole_weight\": 0.8285, \"Shucked_weight\": 0.36200000000000004, \"Viscera_weight\": 0.1655, \"Shell_weight\": 0.23600000000000002, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.46, \"Height\": 0.15, \"Whole_weight\": 1.206, \"Shucked_weight\": 0.581, \"Viscera_weight\": 0.21600000000000003, \"Shell_weight\": 0.32299999999999995, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.495, \"Height\": 0.155, \"Whole_weight\": 1.2865, \"Shucked_weight\": 0.435, \"Viscera_weight\": 0.293, \"Shell_weight\": 0.3245, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.485, \"Height\": 0.155, \"Whole_weight\": 1.1945, \"Shucked_weight\": 0.5105, \"Viscera_weight\": 0.271, \"Shell_weight\": 0.35200000000000004, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.495, \"Height\": 0.19, \"Whole_weight\": 1.1655, \"Shucked_weight\": 0.536, \"Viscera_weight\": 0.2115, \"Shell_weight\": 0.1625, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.49, \"Height\": 0.17, \"Whole_weight\": 1.2155, \"Shucked_weight\": 0.4625, \"Viscera_weight\": 0.2045, \"Shell_weight\": 0.3105, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.515, \"Height\": 0.165, \"Whole_weight\": 1.1735, \"Shucked_weight\": 0.526, \"Viscera_weight\": 0.285, \"Shell_weight\": 0.316, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.675, \"Diameter\": 0.505, \"Height\": 0.16, \"Whole_weight\": 1.5319999999999998, \"Shucked_weight\": 0.74, \"Viscera_weight\": 0.35700000000000004, \"Shell_weight\": 0.3815, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.685, \"Diameter\": 0.53, \"Height\": 0.17, \"Whole_weight\": 1.5105, \"Shucked_weight\": 0.7385, \"Viscera_weight\": 0.3525, \"Shell_weight\": 0.3725, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.485, \"Diameter\": 0.39, \"Height\": 0.1, \"Whole_weight\": 0.5565, \"Shucked_weight\": 0.2215, \"Viscera_weight\": 0.1155, \"Shell_weight\": 0.185, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.36, \"Height\": 0.125, \"Whole_weight\": 0.547, \"Shucked_weight\": 0.2165, \"Viscera_weight\": 0.1105, \"Shell_weight\": 0.19, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.35, \"Height\": 0.125, \"Whole_weight\": 0.5165, \"Shucked_weight\": 0.1885, \"Viscera_weight\": 0.1145, \"Shell_weight\": 0.185, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.42, \"Height\": 0.125, \"Whole_weight\": 0.764, \"Shucked_weight\": 0.312, \"Viscera_weight\": 0.1505, \"Shell_weight\": 0.265, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.36, \"Height\": 0.105, \"Whole_weight\": 0.488, \"Shucked_weight\": 0.188, \"Viscera_weight\": 0.0845, \"Shell_weight\": 0.19, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.4, \"Height\": 0.14, \"Whole_weight\": 0.6905, \"Shucked_weight\": 0.259, \"Viscera_weight\": 0.151, \"Shell_weight\": 0.23, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.26, \"Height\": 0.09, \"Whole_weight\": 0.1835, \"Shucked_weight\": 0.078, \"Viscera_weight\": 0.024, \"Shell_weight\": 0.065, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.16, \"Whole_weight\": 0.97, \"Shucked_weight\": 0.2885, \"Viscera_weight\": 0.139, \"Shell_weight\": 0.48, \"Rings\": 20, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.18, \"Diameter\": 0.135, \"Height\": 0.08, \"Whole_weight\": 0.033, \"Shucked_weight\": 0.0145, \"Viscera_weight\": 0.006999999999999999, \"Shell_weight\": 0.01, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.215, \"Diameter\": 0.165, \"Height\": 0.055, \"Whole_weight\": 0.059000000000000004, \"Shucked_weight\": 0.0265, \"Viscera_weight\": 0.0125, \"Shell_weight\": 0.0185, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.2, \"Diameter\": 0.15, \"Height\": 0.04, \"Whole_weight\": 0.046, \"Shucked_weight\": 0.021, \"Viscera_weight\": 0.006999999999999999, \"Shell_weight\": 0.0065, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.48, \"Height\": 0.2, \"Whole_weight\": 1.3235, \"Shucked_weight\": 0.6075, \"Viscera_weight\": 0.3055, \"Shell_weight\": 0.355, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.42, \"Height\": 0.17, \"Whole_weight\": 0.8465, \"Shucked_weight\": 0.336, \"Viscera_weight\": 0.2405, \"Shell_weight\": 0.245, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.585, \"Diameter\": 0.45, \"Height\": 0.15, \"Whole_weight\": 1.047, \"Shucked_weight\": 0.4315, \"Viscera_weight\": 0.276, \"Shell_weight\": 0.315, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.18, \"Whole_weight\": 1.2785, \"Shucked_weight\": 0.5345, \"Viscera_weight\": 0.2995, \"Shell_weight\": 0.345, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.71, \"Diameter\": 0.53, \"Height\": 0.195, \"Whole_weight\": 1.8745, \"Shucked_weight\": 0.6755, \"Viscera_weight\": 0.4065, \"Shell_weight\": 0.6855, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.54, \"Height\": 0.215, \"Whole_weight\": 1.9780000000000002, \"Shucked_weight\": 0.6675, \"Viscera_weight\": 0.3125, \"Shell_weight\": 0.71, \"Rings\": 24, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.367, \"Shucked_weight\": 0.5835, \"Viscera_weight\": 0.3515, \"Shell_weight\": 0.396, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.742, \"Shucked_weight\": 0.595, \"Viscera_weight\": 0.3025, \"Shell_weight\": 0.725, \"Rings\": 21, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.375, \"Height\": 0.105, \"Whole_weight\": 0.513, \"Shucked_weight\": 0.23199999999999998, \"Viscera_weight\": 0.142, \"Shell_weight\": 0.13, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.425, \"Diameter\": 0.335, \"Height\": 0.1, \"Whole_weight\": 0.4085, \"Shucked_weight\": 0.1755, \"Viscera_weight\": 0.092, \"Shell_weight\": 0.135, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.41, \"Height\": 0.13, \"Whole_weight\": 0.56, \"Shucked_weight\": 0.2375, \"Viscera_weight\": 0.1065, \"Shell_weight\": 0.175, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.395, \"Height\": 0.125, \"Whole_weight\": 0.635, \"Shucked_weight\": 0.29, \"Viscera_weight\": 0.1555, \"Shell_weight\": 0.175, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.44, \"Height\": 0.165, \"Whole_weight\": 0.875, \"Shucked_weight\": 0.27899999999999997, \"Viscera_weight\": 0.18, \"Shell_weight\": 0.3, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.43, \"Diameter\": 0.35, \"Height\": 0.09, \"Whole_weight\": 0.397, \"Shucked_weight\": 0.1575, \"Viscera_weight\": 0.08900000000000001, \"Shell_weight\": 0.12, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.435, \"Height\": 0.11, \"Whole_weight\": 0.8059999999999999, \"Shucked_weight\": 0.3415, \"Viscera_weight\": 0.203, \"Shell_weight\": 0.215, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.34, \"Diameter\": 0.255, \"Height\": 0.085, \"Whole_weight\": 0.204, \"Shucked_weight\": 0.09699999999999999, \"Viscera_weight\": 0.021, \"Shell_weight\": 0.05, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.275, \"Diameter\": 0.2, \"Height\": 0.065, \"Whole_weight\": 0.1165, \"Shucked_weight\": 0.0565, \"Viscera_weight\": 0.013000000000000001, \"Shell_weight\": 0.035, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.335, \"Diameter\": 0.22, \"Height\": 0.07, \"Whole_weight\": 0.17, \"Shucked_weight\": 0.076, \"Viscera_weight\": 0.0365, \"Shell_weight\": 0.05, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.49, \"Height\": 0.14, \"Whole_weight\": 1.194, \"Shucked_weight\": 0.4445, \"Viscera_weight\": 0.23800000000000002, \"Shell_weight\": 0.375, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.44, \"Height\": 0.125, \"Whole_weight\": 0.765, \"Shucked_weight\": 0.33, \"Viscera_weight\": 0.2125, \"Shell_weight\": 0.245, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.475, \"Height\": 0.19, \"Whole_weight\": 1.151, \"Shucked_weight\": 0.4365, \"Viscera_weight\": 0.281, \"Shell_weight\": 0.3805, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.41, \"Height\": 0.115, \"Whole_weight\": 0.6765, \"Shucked_weight\": 0.29, \"Viscera_weight\": 0.158, \"Shell_weight\": 0.22, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.54, \"Height\": 0.175, \"Whole_weight\": 1.571, \"Shucked_weight\": 0.627, \"Viscera_weight\": 0.271, \"Shell_weight\": 0.475, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.49, \"Height\": 0.155, \"Whole_weight\": 1.153, \"Shucked_weight\": 0.503, \"Viscera_weight\": 0.2505, \"Shell_weight\": 0.295, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.47, \"Height\": 0.115, \"Whole_weight\": 1.114, \"Shucked_weight\": 0.3925, \"Viscera_weight\": 0.29100000000000004, \"Shell_weight\": 0.31, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.45, \"Height\": 0.155, \"Whole_weight\": 0.9125, \"Shucked_weight\": 0.3595, \"Viscera_weight\": 0.271, \"Shell_weight\": 0.35, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.465, \"Height\": 0.155, \"Whole_weight\": 0.872, \"Shucked_weight\": 0.3245, \"Viscera_weight\": 0.239, \"Shell_weight\": 0.285, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.405, \"Height\": 0.16, \"Whole_weight\": 0.792, \"Shucked_weight\": 0.316, \"Viscera_weight\": 0.1455, \"Shell_weight\": 0.28, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.405, \"Height\": 0.18, \"Whole_weight\": 0.606, \"Shucked_weight\": 0.239, \"Viscera_weight\": 0.1235, \"Shell_weight\": 0.18, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.35, \"Diameter\": 0.265, \"Height\": 0.09, \"Whole_weight\": 0.2265, \"Shucked_weight\": 0.0995, \"Viscera_weight\": 0.0575, \"Shell_weight\": 0.065, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.355, \"Height\": 0.12, \"Whole_weight\": 0.3955, \"Shucked_weight\": 0.147, \"Viscera_weight\": 0.0765, \"Shell_weight\": 0.145, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.405, \"Height\": 0.12, \"Whole_weight\": 0.61, \"Shucked_weight\": 0.22899999999999998, \"Viscera_weight\": 0.131, \"Shell_weight\": 0.235, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.38, \"Height\": 0.13, \"Whole_weight\": 0.539, \"Shucked_weight\": 0.22899999999999998, \"Viscera_weight\": 0.1355, \"Shell_weight\": 0.165, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.41, \"Height\": 0.135, \"Whole_weight\": 0.657, \"Shucked_weight\": 0.29100000000000004, \"Viscera_weight\": 0.133, \"Shell_weight\": 0.195, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.38, \"Diameter\": 0.3, \"Height\": 0.1, \"Whole_weight\": 0.2505, \"Shucked_weight\": 0.106, \"Viscera_weight\": 0.0535, \"Shell_weight\": 0.0775, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.27, \"Diameter\": 0.195, \"Height\": 0.07, \"Whole_weight\": 0.102, \"Shucked_weight\": 0.045, \"Viscera_weight\": 0.0135, \"Shell_weight\": 0.034, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.37, \"Diameter\": 0.295, \"Height\": 0.1, \"Whole_weight\": 0.2685, \"Shucked_weight\": 0.1165, \"Viscera_weight\": 0.055999999999999994, \"Shell_weight\": 0.0835, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.385, \"Height\": 0.135, \"Whole_weight\": 0.551, \"Shucked_weight\": 0.2245, \"Viscera_weight\": 0.0715, \"Shell_weight\": 0.20600000000000002, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.307, \"Shucked_weight\": 0.4335, \"Viscera_weight\": 0.262, \"Shell_weight\": 0.52, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.115, \"Whole_weight\": 0.9185, \"Shucked_weight\": 0.40399999999999997, \"Viscera_weight\": 0.1785, \"Shell_weight\": 0.29, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.545, \"Height\": 0.175, \"Whole_weight\": 1.7069999999999999, \"Shucked_weight\": 0.6995, \"Viscera_weight\": 0.387, \"Shell_weight\": 0.575, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.415, \"Height\": 0.15, \"Whole_weight\": 0.8805, \"Shucked_weight\": 0.3645, \"Viscera_weight\": 0.23399999999999999, \"Shell_weight\": 0.235, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.47, \"Diameter\": 0.36, \"Height\": 0.11, \"Whole_weight\": 0.4965, \"Shucked_weight\": 0.237, \"Viscera_weight\": 0.127, \"Shell_weight\": 0.13, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.51, \"Diameter\": 0.385, \"Height\": 0.135, \"Whole_weight\": 0.632, \"Shucked_weight\": 0.282, \"Viscera_weight\": 0.145, \"Shell_weight\": 0.17, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.72, \"Diameter\": 0.575, \"Height\": 0.23, \"Whole_weight\": 2.2695, \"Shucked_weight\": 0.8835, \"Viscera_weight\": 0.3985, \"Shell_weight\": 0.665, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.405, \"Height\": 0.15, \"Whole_weight\": 0.9235, \"Shucked_weight\": 0.41200000000000003, \"Viscera_weight\": 0.2135, \"Shell_weight\": 0.24, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.2, \"Diameter\": 0.145, \"Height\": 0.025, \"Whole_weight\": 0.0345, \"Shucked_weight\": 0.011000000000000001, \"Viscera_weight\": 0.0075, \"Shell_weight\": 0.01, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.515, \"Height\": 0.18, \"Whole_weight\": 1.3315, \"Shucked_weight\": 0.5665, \"Viscera_weight\": 0.34700000000000003, \"Shell_weight\": 0.405, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.405, \"Height\": 0.115, \"Whole_weight\": 0.72, \"Shucked_weight\": 0.3105, \"Viscera_weight\": 0.1915, \"Shell_weight\": 0.2, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.435, \"Height\": 0.185, \"Whole_weight\": 1.032, \"Shucked_weight\": 0.354, \"Viscera_weight\": 0.2045, \"Shell_weight\": 0.31, \"Rings\": 20, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.47, \"Height\": 0.16, \"Whole_weight\": 1.0170000000000001, \"Shucked_weight\": 0.426, \"Viscera_weight\": 0.2255, \"Shell_weight\": 0.32, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.405, \"Height\": 0.175, \"Whole_weight\": 0.98, \"Shucked_weight\": 0.2585, \"Viscera_weight\": 0.207, \"Shell_weight\": 0.38, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.245, \"Height\": 0.075, \"Whole_weight\": 0.1495, \"Shucked_weight\": 0.0605, \"Viscera_weight\": 0.033, \"Shell_weight\": 0.045, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.31, \"Diameter\": 0.235, \"Height\": 0.075, \"Whole_weight\": 0.1515, \"Shucked_weight\": 0.055999999999999994, \"Viscera_weight\": 0.0315, \"Shell_weight\": 0.05, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.45, \"Diameter\": 0.335, \"Height\": 0.14, \"Whole_weight\": 0.478, \"Shucked_weight\": 0.1865, \"Viscera_weight\": 0.115, \"Shell_weight\": 0.16, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.38, \"Height\": 0.155, \"Whole_weight\": 0.578, \"Shucked_weight\": 0.2395, \"Viscera_weight\": 0.1255, \"Shell_weight\": 0.18, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.405, \"Height\": 0.16, \"Whole_weight\": 0.6835, \"Shucked_weight\": 0.271, \"Viscera_weight\": 0.145, \"Shell_weight\": 0.215, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.385, \"Diameter\": 0.3, \"Height\": 0.1, \"Whole_weight\": 0.2725, \"Shucked_weight\": 0.1115, \"Viscera_weight\": 0.057, \"Shell_weight\": 0.08, \"Rings\": 6, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.485, \"Height\": 0.22, \"Whole_weight\": 1.511, \"Shucked_weight\": 0.5095, \"Viscera_weight\": 0.284, \"Shell_weight\": 0.51, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.635, \"Diameter\": 0.505, \"Height\": 0.185, \"Whole_weight\": 1.3035, \"Shucked_weight\": 0.501, \"Viscera_weight\": 0.295, \"Shell_weight\": 0.41, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.53, \"Height\": 0.185, \"Whole_weight\": 1.3955, \"Shucked_weight\": 0.456, \"Viscera_weight\": 0.3205, \"Shell_weight\": 0.49, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.335, \"Diameter\": 0.265, \"Height\": 0.095, \"Whole_weight\": 0.1975, \"Shucked_weight\": 0.0795, \"Viscera_weight\": 0.0375, \"Shell_weight\": 0.07, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.295, \"Diameter\": 0.215, \"Height\": 0.075, \"Whole_weight\": 0.11599999999999999, \"Shucked_weight\": 0.037000000000000005, \"Viscera_weight\": 0.0295, \"Shell_weight\": 0.04, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.38, \"Height\": 0.125, \"Whole_weight\": 0.523, \"Shucked_weight\": 0.2105, \"Viscera_weight\": 0.1045, \"Shell_weight\": 0.175, \"Rings\": 15, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.25, \"Height\": 0.08, \"Whole_weight\": 0.1565, \"Shucked_weight\": 0.057, \"Viscera_weight\": 0.034, \"Shell_weight\": 0.06, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.34, \"Height\": 0.125, \"Whole_weight\": 0.384, \"Shucked_weight\": 0.1375, \"Viscera_weight\": 0.061, \"Shell_weight\": 0.146, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.45, \"Height\": 0.14, \"Whole_weight\": 1.0055, \"Shucked_weight\": 0.3785, \"Viscera_weight\": 0.244, \"Shell_weight\": 0.265, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.1345, \"Shucked_weight\": 0.4535, \"Viscera_weight\": 0.27, \"Shell_weight\": 0.335, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.46, \"Height\": 0.17, \"Whole_weight\": 1.0835, \"Shucked_weight\": 0.3745, \"Viscera_weight\": 0.326, \"Shell_weight\": 0.325, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.555, \"Diameter\": 0.42, \"Height\": 0.14, \"Whole_weight\": 0.868, \"Shucked_weight\": 0.33, \"Viscera_weight\": 0.243, \"Shell_weight\": 0.21, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.495, \"Height\": 0.16, \"Whole_weight\": 1.0915, \"Shucked_weight\": 0.452, \"Viscera_weight\": 0.275, \"Shell_weight\": 0.315, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.485, \"Height\": 0.175, \"Whole_weight\": 1.271, \"Shucked_weight\": 0.531, \"Viscera_weight\": 0.3075, \"Shell_weight\": 0.37, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.51, \"Height\": 0.19, \"Whole_weight\": 1.4985, \"Shucked_weight\": 0.4125, \"Viscera_weight\": 0.3075, \"Shell_weight\": 0.545, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.425, \"Diameter\": 0.34, \"Height\": 0.12, \"Whole_weight\": 0.38799999999999996, \"Shucked_weight\": 0.149, \"Viscera_weight\": 0.087, \"Shell_weight\": 0.125, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.505, \"Height\": 0.19, \"Whole_weight\": 1.2355, \"Shucked_weight\": 0.4435, \"Viscera_weight\": 0.3105, \"Shell_weight\": 0.365, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.675, \"Diameter\": 0.525, \"Height\": 0.175, \"Whole_weight\": 1.402, \"Shucked_weight\": 0.483, \"Viscera_weight\": 0.3205, \"Shell_weight\": 0.465, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.4, \"Height\": 0.145, \"Whole_weight\": 0.6025, \"Shucked_weight\": 0.21600000000000003, \"Viscera_weight\": 0.138, \"Shell_weight\": 0.21, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.385, \"Diameter\": 0.305, \"Height\": 0.09, \"Whole_weight\": 0.2775, \"Shucked_weight\": 0.109, \"Viscera_weight\": 0.0515, \"Shell_weight\": 0.1, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.435, \"Height\": 0.195, \"Whole_weight\": 0.973, \"Shucked_weight\": 0.2985, \"Viscera_weight\": 0.2135, \"Shell_weight\": 0.355, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.415, \"Height\": 0.175, \"Whole_weight\": 0.753, \"Shucked_weight\": 0.258, \"Viscera_weight\": 0.171, \"Shell_weight\": 0.255, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.525, \"Height\": 0.2, \"Whole_weight\": 1.3765, \"Shucked_weight\": 0.44, \"Viscera_weight\": 0.3075, \"Shell_weight\": 0.47, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.35, \"Height\": 0.12, \"Whole_weight\": 0.375, \"Shucked_weight\": 0.1425, \"Viscera_weight\": 0.0965, \"Shell_weight\": 0.115, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.42, \"Diameter\": 0.32, \"Height\": 0.13, \"Whole_weight\": 0.4135, \"Shucked_weight\": 0.1645, \"Viscera_weight\": 0.106, \"Shell_weight\": 0.11900000000000001, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.45, \"Diameter\": 0.35, \"Height\": 0.135, \"Whole_weight\": 0.56, \"Shucked_weight\": 0.231, \"Viscera_weight\": 0.13699999999999998, \"Shell_weight\": 0.145, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.325, \"Height\": 0.125, \"Whole_weight\": 0.3915, \"Shucked_weight\": 0.1575, \"Viscera_weight\": 0.1025, \"Shell_weight\": 0.115, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.505, \"Height\": 0.19, \"Whole_weight\": 1.2765, \"Shucked_weight\": 0.4835, \"Viscera_weight\": 0.32799999999999996, \"Shell_weight\": 0.4, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.455, \"Height\": 0.15, \"Whole_weight\": 0.96, \"Shucked_weight\": 0.387, \"Viscera_weight\": 0.2385, \"Shell_weight\": 0.275, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.41, \"Diameter\": 0.325, \"Height\": 0.12, \"Whole_weight\": 0.3745, \"Shucked_weight\": 0.158, \"Viscera_weight\": 0.081, \"Shell_weight\": 0.125, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.485, \"Diameter\": 0.41, \"Height\": 0.15, \"Whole_weight\": 0.696, \"Shucked_weight\": 0.2405, \"Viscera_weight\": 0.1625, \"Shell_weight\": 0.265, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.48, \"Height\": 0.19, \"Whole_weight\": 1.2955, \"Shucked_weight\": 0.5215, \"Viscera_weight\": 0.3225, \"Shell_weight\": 0.365, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.485, \"Height\": 0.205, \"Whole_weight\": 1.2315, \"Shucked_weight\": 0.4525, \"Viscera_weight\": 0.23800000000000002, \"Shell_weight\": 0.42, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.665, \"Diameter\": 0.535, \"Height\": 0.155, \"Whole_weight\": 1.383, \"Shucked_weight\": 0.596, \"Viscera_weight\": 0.2565, \"Shell_weight\": 0.485, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.345, \"Diameter\": 0.285, \"Height\": 0.1, \"Whole_weight\": 0.2225, \"Shucked_weight\": 0.0865, \"Viscera_weight\": 0.057999999999999996, \"Shell_weight\": 0.075, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.51, \"Height\": 0.155, \"Whole_weight\": 1.156, \"Shucked_weight\": 0.428, \"Viscera_weight\": 0.289, \"Shell_weight\": 0.315, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.695, \"Diameter\": 0.53, \"Height\": 0.15, \"Whole_weight\": 1.4769999999999999, \"Shucked_weight\": 0.6375, \"Viscera_weight\": 0.3025, \"Shell_weight\": 0.43, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.69, \"Diameter\": 0.54, \"Height\": 0.185, \"Whole_weight\": 1.5715, \"Shucked_weight\": 0.6935, \"Viscera_weight\": 0.318, \"Shell_weight\": 0.47, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.435, \"Height\": 0.135, \"Whole_weight\": 0.858, \"Shucked_weight\": 0.377, \"Viscera_weight\": 0.1585, \"Shell_weight\": 0.29, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.525, \"Height\": 0.19, \"Whole_weight\": 1.4995, \"Shucked_weight\": 0.6265, \"Viscera_weight\": 0.4005, \"Shell_weight\": 0.395, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.48, \"Height\": 0.19, \"Whole_weight\": 1.4669999999999999, \"Shucked_weight\": 0.5825, \"Viscera_weight\": 0.303, \"Shell_weight\": 0.42, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.51, \"Height\": 0.16, \"Whole_weight\": 1.092, \"Shucked_weight\": 0.396, \"Viscera_weight\": 0.2825, \"Shell_weight\": 0.37, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.69, \"Diameter\": 0.555, \"Height\": 0.205, \"Whole_weight\": 1.8165, \"Shucked_weight\": 0.7785, \"Viscera_weight\": 0.4395, \"Shell_weight\": 0.515, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.695, \"Diameter\": 0.55, \"Height\": 0.16, \"Whole_weight\": 1.6365, \"Shucked_weight\": 0.6940000000000001, \"Viscera_weight\": 0.3005, \"Shell_weight\": 0.44, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.435, \"Height\": 0.16, \"Whole_weight\": 0.9059999999999999, \"Shucked_weight\": 0.342, \"Viscera_weight\": 0.21899999999999997, \"Shell_weight\": 0.295, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.495, \"Height\": 0.19, \"Whole_weight\": 1.213, \"Shucked_weight\": 0.46399999999999997, \"Viscera_weight\": 0.306, \"Shell_weight\": 0.365, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.595, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.06, \"Shucked_weight\": 0.402, \"Viscera_weight\": 0.28, \"Shell_weight\": 0.275, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.3, \"Diameter\": 0.24, \"Height\": 0.09, \"Whole_weight\": 0.161, \"Shucked_weight\": 0.0725, \"Viscera_weight\": 0.039, \"Shell_weight\": 0.05, \"Rings\": 6, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.435, \"Diameter\": 0.35, \"Height\": 0.125, \"Whole_weight\": 0.45899999999999996, \"Shucked_weight\": 0.19699999999999998, \"Viscera_weight\": 0.1145, \"Shell_weight\": 0.145, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.375, \"Height\": 0.125, \"Whole_weight\": 0.5329999999999999, \"Shucked_weight\": 0.233, \"Viscera_weight\": 0.106, \"Shell_weight\": 0.185, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.38, \"Height\": 0.13, \"Whole_weight\": 0.6175, \"Shucked_weight\": 0.3, \"Viscera_weight\": 0.142, \"Shell_weight\": 0.175, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.35, \"Height\": 0.105, \"Whole_weight\": 0.366, \"Shucked_weight\": 0.1705, \"Viscera_weight\": 0.0855, \"Shell_weight\": 0.11, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.435, \"Diameter\": 0.35, \"Height\": 0.105, \"Whole_weight\": 0.4195, \"Shucked_weight\": 0.19399999999999998, \"Viscera_weight\": 0.1005, \"Shell_weight\": 0.13, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.3, \"Diameter\": 0.23, \"Height\": 0.075, \"Whole_weight\": 0.15, \"Shucked_weight\": 0.0605, \"Viscera_weight\": 0.042, \"Shell_weight\": 0.045, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.48, \"Height\": 0.15, \"Whole_weight\": 0.8745, \"Shucked_weight\": 0.375, \"Viscera_weight\": 0.193, \"Shell_weight\": 0.29, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.385, \"Height\": 0.11, \"Whole_weight\": 0.655, \"Shucked_weight\": 0.3185, \"Viscera_weight\": 0.15, \"Shell_weight\": 0.185, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.455, \"Diameter\": 0.375, \"Height\": 0.125, \"Whole_weight\": 0.484, \"Shucked_weight\": 0.2155, \"Viscera_weight\": 0.102, \"Shell_weight\": 0.165, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.4435, \"Shucked_weight\": 0.6145, \"Viscera_weight\": 0.3035, \"Shell_weight\": 0.39, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.435, \"Height\": 0.125, \"Whole_weight\": 0.8775, \"Shucked_weight\": 0.3345, \"Viscera_weight\": 0.2145, \"Shell_weight\": 0.29, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.52, \"Height\": 0.19, \"Whole_weight\": 1.3105, \"Shucked_weight\": 0.58, \"Viscera_weight\": 0.28800000000000003, \"Shell_weight\": 0.37, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.485, \"Height\": 0.145, \"Whole_weight\": 1.2515, \"Shucked_weight\": 0.5035, \"Viscera_weight\": 0.2925, \"Shell_weight\": 0.33, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.45, \"Height\": 0.115, \"Whole_weight\": 0.9085, \"Shucked_weight\": 0.39799999999999996, \"Viscera_weight\": 0.19699999999999998, \"Shell_weight\": 0.29, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.5, \"Height\": 0.14, \"Whole_weight\": 1.1705, \"Shucked_weight\": 0.5405, \"Viscera_weight\": 0.3175, \"Shell_weight\": 0.285, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.528, \"Shucked_weight\": 0.2, \"Viscera_weight\": 0.1395, \"Shell_weight\": 0.16, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.495, \"Diameter\": 0.385, \"Height\": 0.135, \"Whole_weight\": 0.6625, \"Shucked_weight\": 0.3005, \"Viscera_weight\": 0.1635, \"Shell_weight\": 0.185, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.4, \"Diameter\": 0.335, \"Height\": 0.115, \"Whole_weight\": 0.4335, \"Shucked_weight\": 0.2105, \"Viscera_weight\": 0.1205, \"Shell_weight\": 0.12, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.41, \"Diameter\": 0.31, \"Height\": 0.125, \"Whole_weight\": 0.3595, \"Shucked_weight\": 0.1415, \"Viscera_weight\": 0.0885, \"Shell_weight\": 0.115, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.465, \"Height\": 0.145, \"Whole_weight\": 1.107, \"Shucked_weight\": 0.402, \"Viscera_weight\": 0.2415, \"Shell_weight\": 0.31, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.475, \"Height\": 0.13, \"Whole_weight\": 0.8595, \"Shucked_weight\": 0.3195, \"Viscera_weight\": 0.1775, \"Shell_weight\": 0.24, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.425, \"Height\": 0.155, \"Whole_weight\": 0.7735, \"Shucked_weight\": 0.297, \"Viscera_weight\": 0.12300000000000001, \"Shell_weight\": 0.255, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.465, \"Diameter\": 0.36, \"Height\": 0.125, \"Whole_weight\": 0.4365, \"Shucked_weight\": 0.16899999999999998, \"Viscera_weight\": 0.1075, \"Shell_weight\": 0.145, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.375, \"Height\": 0.14, \"Whole_weight\": 0.501, \"Shucked_weight\": 0.192, \"Viscera_weight\": 0.1175, \"Shell_weight\": 0.175, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.5, \"Diameter\": 0.405, \"Height\": 0.14, \"Whole_weight\": 0.6735, \"Shucked_weight\": 0.265, \"Viscera_weight\": 0.124, \"Shell_weight\": 0.25, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.46, \"Diameter\": 0.355, \"Height\": 0.11, \"Whole_weight\": 0.415, \"Shucked_weight\": 0.215, \"Viscera_weight\": 0.08199999999999999, \"Shell_weight\": 0.13, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.485, \"Diameter\": 0.385, \"Height\": 0.125, \"Whole_weight\": 0.4775, \"Shucked_weight\": 0.2, \"Viscera_weight\": 0.0785, \"Shell_weight\": 0.17, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.465, \"Diameter\": 0.39, \"Height\": 0.14, \"Whole_weight\": 0.5555, \"Shucked_weight\": 0.213, \"Viscera_weight\": 0.1075, \"Shell_weight\": 0.215, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.525, \"Diameter\": 0.415, \"Height\": 0.16, \"Whole_weight\": 0.6445, \"Shucked_weight\": 0.26, \"Viscera_weight\": 0.1575, \"Shell_weight\": 0.22, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.53, \"Height\": 0.19, \"Whole_weight\": 1.4280000000000002, \"Shucked_weight\": 0.493, \"Viscera_weight\": 0.318, \"Shell_weight\": 0.565, \"Rings\": 18, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.69, \"Diameter\": 0.54, \"Height\": 0.185, \"Whole_weight\": 1.6195, \"Shucked_weight\": 0.5329999999999999, \"Viscera_weight\": 0.353, \"Shell_weight\": 0.555, \"Rings\": 24, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.45, \"Height\": 0.17, \"Whole_weight\": 0.81, \"Shucked_weight\": 0.317, \"Viscera_weight\": 0.157, \"Shell_weight\": 0.22, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.475, \"Height\": 0.165, \"Whole_weight\": 1.0385, \"Shucked_weight\": 0.414, \"Viscera_weight\": 0.26, \"Shell_weight\": 0.305, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 0.9715, \"Shucked_weight\": 0.371, \"Viscera_weight\": 0.235, \"Shell_weight\": 0.28, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.44, \"Height\": 0.155, \"Whole_weight\": 0.868, \"Shucked_weight\": 0.348, \"Viscera_weight\": 0.217, \"Shell_weight\": 0.26, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.57, \"Height\": 0.185, \"Whole_weight\": 1.5219999999999998, \"Shucked_weight\": 0.6965, \"Viscera_weight\": 0.3025, \"Shell_weight\": 0.405, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.1255, \"Shucked_weight\": 0.4985, \"Viscera_weight\": 0.22699999999999998, \"Shell_weight\": 0.315, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.46, \"Height\": 0.13, \"Whole_weight\": 0.7085, \"Shucked_weight\": 0.305, \"Viscera_weight\": 0.1455, \"Shell_weight\": 0.205, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.145, \"Whole_weight\": 1.0185, \"Shucked_weight\": 0.4695, \"Viscera_weight\": 0.225, \"Shell_weight\": 0.27, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.42, \"Height\": 0.16, \"Whole_weight\": 0.72, \"Shucked_weight\": 0.275, \"Viscera_weight\": 0.16399999999999998, \"Shell_weight\": 0.225, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.51, \"Diameter\": 0.395, \"Height\": 0.12, \"Whole_weight\": 0.6175, \"Shucked_weight\": 0.262, \"Viscera_weight\": 0.122, \"Shell_weight\": 0.193, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.405, \"Height\": 0.13, \"Whole_weight\": 0.738, \"Shucked_weight\": 0.2845, \"Viscera_weight\": 0.17, \"Shell_weight\": 0.193, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.495, \"Diameter\": 0.375, \"Height\": 0.15, \"Whole_weight\": 0.597, \"Shucked_weight\": 0.2615, \"Viscera_weight\": 0.135, \"Shell_weight\": 0.17800000000000002, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.455, \"Height\": 0.185, \"Whole_weight\": 1.156, \"Shucked_weight\": 0.5525, \"Viscera_weight\": 0.243, \"Shell_weight\": 0.295, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.5, \"Height\": 0.16, \"Whole_weight\": 1.22, \"Shucked_weight\": 0.4905, \"Viscera_weight\": 0.3, \"Shell_weight\": 0.345, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.45, \"Height\": 0.12, \"Whole_weight\": 0.7485, \"Shucked_weight\": 0.3345, \"Viscera_weight\": 0.1315, \"Shell_weight\": 0.22, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.485, \"Height\": 0.165, \"Whole_weight\": 1.0735, \"Shucked_weight\": 0.43700000000000006, \"Viscera_weight\": 0.205, \"Shell_weight\": 0.33, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.5, \"Height\": 0.19, \"Whole_weight\": 1.229, \"Shucked_weight\": 0.524, \"Viscera_weight\": 0.278, \"Shell_weight\": 0.395, \"Rings\": 17, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.146, \"Shucked_weight\": 0.47700000000000004, \"Viscera_weight\": 0.23, \"Shell_weight\": 0.39, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.485, \"Height\": 0.175, \"Whole_weight\": 1.145, \"Shucked_weight\": 0.4325, \"Viscera_weight\": 0.27, \"Shell_weight\": 0.405, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.5, \"Height\": 0.205, \"Whole_weight\": 1.1055, \"Shucked_weight\": 0.4445, \"Viscera_weight\": 0.22699999999999998, \"Shell_weight\": 0.39, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.525, \"Height\": 0.19, \"Whole_weight\": 1.67, \"Shucked_weight\": 0.6525, \"Viscera_weight\": 0.4875, \"Shell_weight\": 0.49, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.71, \"Diameter\": 0.575, \"Height\": 0.175, \"Whole_weight\": 1.555, \"Shucked_weight\": 0.6465, \"Viscera_weight\": 0.3705, \"Shell_weight\": 0.52, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.45, \"Height\": 0.185, \"Whole_weight\": 0.9285, \"Shucked_weight\": 0.302, \"Viscera_weight\": 0.1805, \"Shell_weight\": 0.265, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.435, \"Height\": 0.14, \"Whole_weight\": 0.8085, \"Shucked_weight\": 0.3235, \"Viscera_weight\": 0.183, \"Shell_weight\": 0.22, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.6, \"Diameter\": 0.445, \"Height\": 0.175, \"Whole_weight\": 1.057, \"Shucked_weight\": 0.38299999999999995, \"Viscera_weight\": 0.21600000000000003, \"Shell_weight\": 0.355, \"Rings\": 16, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.41, \"Diameter\": 0.3, \"Height\": 0.115, \"Whole_weight\": 0.2595, \"Shucked_weight\": 0.09699999999999999, \"Viscera_weight\": 0.0515, \"Shell_weight\": 0.08, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.45, \"Diameter\": 0.325, \"Height\": 0.135, \"Whole_weight\": 0.43799999999999994, \"Shucked_weight\": 0.1805, \"Viscera_weight\": 0.1165, \"Shell_weight\": 0.11, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.275, \"Diameter\": 0.2, \"Height\": 0.08, \"Whole_weight\": 0.099, \"Shucked_weight\": 0.037000000000000005, \"Viscera_weight\": 0.024, \"Shell_weight\": 0.03, \"Rings\": 5, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.355, \"Height\": 0.12, \"Whole_weight\": 0.5085, \"Shucked_weight\": 0.21, \"Viscera_weight\": 0.122, \"Shell_weight\": 0.135, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.485, \"Height\": 0.165, \"Whole_weight\": 1.166, \"Shucked_weight\": 0.483, \"Viscera_weight\": 0.23800000000000002, \"Shell_weight\": 0.355, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.48, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.507, \"Shucked_weight\": 0.1915, \"Viscera_weight\": 0.1365, \"Shell_weight\": 0.155, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.41, \"Height\": 0.15, \"Whole_weight\": 0.6345, \"Shucked_weight\": 0.243, \"Viscera_weight\": 0.1335, \"Shell_weight\": 0.215, \"Rings\": 17, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.4, \"Diameter\": 0.31, \"Height\": 0.11, \"Whole_weight\": 0.314, \"Shucked_weight\": 0.138, \"Viscera_weight\": 0.057, \"Shell_weight\": 0.1, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.355, \"Height\": 0.115, \"Whole_weight\": 0.4385, \"Shucked_weight\": 0.184, \"Viscera_weight\": 0.10800000000000001, \"Shell_weight\": 0.1125, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.35, \"Diameter\": 0.26, \"Height\": 0.09, \"Whole_weight\": 0.195, \"Shucked_weight\": 0.0745, \"Viscera_weight\": 0.040999999999999995, \"Shell_weight\": 0.0655, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.44, \"Diameter\": 0.35, \"Height\": 0.14, \"Whole_weight\": 0.451, \"Shucked_weight\": 0.171, \"Viscera_weight\": 0.0705, \"Shell_weight\": 0.184, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.265, \"Diameter\": 0.2, \"Height\": 0.065, \"Whole_weight\": 0.084, \"Shucked_weight\": 0.034, \"Viscera_weight\": 0.0105, \"Shell_weight\": 0.03, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.165, \"Diameter\": 0.125, \"Height\": 0.04, \"Whole_weight\": 0.0245, \"Shucked_weight\": 0.0095, \"Viscera_weight\": 0.0045, \"Shell_weight\": 0.008, \"Rings\": 4, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.705, \"Diameter\": 0.555, \"Height\": 0.2, \"Whole_weight\": 1.4685, \"Shucked_weight\": 0.4715, \"Viscera_weight\": 0.3235, \"Shell_weight\": 0.52, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.535, \"Diameter\": 0.425, \"Height\": 0.155, \"Whole_weight\": 0.7765, \"Shucked_weight\": 0.302, \"Viscera_weight\": 0.1565, \"Shell_weight\": 0.25, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.49, \"Diameter\": 0.385, \"Height\": 0.14, \"Whole_weight\": 0.5425, \"Shucked_weight\": 0.198, \"Viscera_weight\": 0.127, \"Shell_weight\": 0.175, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.48, \"Diameter\": 0.37, \"Height\": 0.13, \"Whole_weight\": 0.5885, \"Shucked_weight\": 0.2475, \"Viscera_weight\": 0.1505, \"Shell_weight\": 0.1595, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.395, \"Diameter\": 0.3, \"Height\": 0.105, \"Whole_weight\": 0.3375, \"Shucked_weight\": 0.1435, \"Viscera_weight\": 0.0755, \"Shell_weight\": 0.098, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.28, \"Height\": 0.1, \"Whole_weight\": 0.2565, \"Shucked_weight\": 0.1165, \"Viscera_weight\": 0.0585, \"Shell_weight\": 0.0725, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.345, \"Diameter\": 0.265, \"Height\": 0.09, \"Whole_weight\": 0.163, \"Shucked_weight\": 0.0615, \"Viscera_weight\": 0.037000000000000005, \"Shell_weight\": 0.0485, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.415, \"Height\": 0.135, \"Whole_weight\": 0.8095, \"Shucked_weight\": 0.2985, \"Viscera_weight\": 0.2015, \"Shell_weight\": 0.28, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.635, \"Diameter\": 0.48, \"Height\": 0.2, \"Whole_weight\": 1.3655, \"Shucked_weight\": 0.6255, \"Viscera_weight\": 0.2595, \"Shell_weight\": 0.425, \"Rings\": 16, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.475, \"Height\": 0.17, \"Whole_weight\": 0.9670000000000001, \"Shucked_weight\": 0.3775, \"Viscera_weight\": 0.284, \"Shell_weight\": 0.275, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.435, \"Height\": 0.15, \"Whole_weight\": 0.6855, \"Shucked_weight\": 0.2905, \"Viscera_weight\": 0.145, \"Shell_weight\": 0.225, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.385, \"Diameter\": 0.305, \"Height\": 0.125, \"Whole_weight\": 0.314, \"Shucked_weight\": 0.146, \"Viscera_weight\": 0.0555, \"Shell_weight\": 0.08, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.51, \"Diameter\": 0.34, \"Height\": 0.18, \"Whole_weight\": 0.7005, \"Shucked_weight\": 0.312, \"Viscera_weight\": 0.165, \"Shell_weight\": 0.2, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.34, \"Height\": 0.125, \"Whole_weight\": 0.4895, \"Shucked_weight\": 0.1735, \"Viscera_weight\": 0.0875, \"Shell_weight\": 0.2, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.36, \"Height\": 0.125, \"Whole_weight\": 0.45, \"Shucked_weight\": 0.191, \"Viscera_weight\": 0.0865, \"Shell_weight\": 0.145, \"Rings\": 12, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.3, \"Height\": 0.105, \"Whole_weight\": 0.259, \"Shucked_weight\": 0.0955, \"Viscera_weight\": 0.038, \"Shell_weight\": 0.085, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.425, \"Diameter\": 0.325, \"Height\": 0.135, \"Whole_weight\": 0.382, \"Shucked_weight\": 0.1465, \"Viscera_weight\": 0.079, \"Shell_weight\": 0.14, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.45, \"Diameter\": 0.35, \"Height\": 0.125, \"Whole_weight\": 0.4435, \"Shucked_weight\": 0.185, \"Viscera_weight\": 0.09, \"Shell_weight\": 0.145, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.66, \"Diameter\": 0.525, \"Height\": 0.18, \"Whole_weight\": 1.6935, \"Shucked_weight\": 0.6025, \"Viscera_weight\": 0.4005, \"Shell_weight\": 0.42, \"Rings\": 15, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.685, \"Diameter\": 0.525, \"Height\": 0.175, \"Whole_weight\": 1.71, \"Shucked_weight\": 0.5415, \"Viscera_weight\": 0.309, \"Shell_weight\": 0.58, \"Rings\": 16, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.475, \"Height\": 0.185, \"Whole_weight\": 0.8575, \"Shucked_weight\": 0.3465, \"Viscera_weight\": 0.1785, \"Shell_weight\": 0.275, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.435, \"Height\": 0.145, \"Whole_weight\": 0.97, \"Shucked_weight\": 0.4285, \"Viscera_weight\": 0.22, \"Shell_weight\": 0.264, \"Rings\": 17, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.39, \"Height\": 0.135, \"Whole_weight\": 0.59, \"Shucked_weight\": 0.215, \"Viscera_weight\": 0.125, \"Shell_weight\": 0.1845, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.43, \"Diameter\": 0.33, \"Height\": 0.095, \"Whole_weight\": 0.34, \"Shucked_weight\": 0.1315, \"Viscera_weight\": 0.085, \"Shell_weight\": 0.11199999999999999, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.455, \"Diameter\": 0.365, \"Height\": 0.11, \"Whole_weight\": 0.385, \"Shucked_weight\": 0.166, \"Viscera_weight\": 0.046, \"Shell_weight\": 0.1345, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.38, \"Height\": 0.145, \"Whole_weight\": 0.515, \"Shucked_weight\": 0.175, \"Viscera_weight\": 0.098, \"Shell_weight\": 0.212, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.48, \"Diameter\": 0.38, \"Height\": 0.145, \"Whole_weight\": 0.59, \"Shucked_weight\": 0.23199999999999998, \"Viscera_weight\": 0.141, \"Shell_weight\": 0.23, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.4, \"Height\": 0.16, \"Whole_weight\": 0.51, \"Shucked_weight\": 0.1615, \"Viscera_weight\": 0.073, \"Shell_weight\": 0.198, \"Rings\": 14, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.415, \"Diameter\": 0.32, \"Height\": 0.1, \"Whole_weight\": 0.3005, \"Shucked_weight\": 0.1215, \"Viscera_weight\": 0.0575, \"Shell_weight\": 0.10400000000000001, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.49, \"Diameter\": 0.385, \"Height\": 0.115, \"Whole_weight\": 0.6829999999999999, \"Shucked_weight\": 0.3265, \"Viscera_weight\": 0.1615, \"Shell_weight\": 0.165, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.375, \"Height\": 0.105, \"Whole_weight\": 0.46799999999999997, \"Shucked_weight\": 0.1665, \"Viscera_weight\": 0.10800000000000001, \"Shell_weight\": 0.17, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.345, \"Height\": 0.13, \"Whole_weight\": 0.4075, \"Shucked_weight\": 0.1365, \"Viscera_weight\": 0.0645, \"Shell_weight\": 0.18, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.51, \"Diameter\": 0.38, \"Height\": 0.13, \"Whole_weight\": 0.584, \"Shucked_weight\": 0.22399999999999998, \"Viscera_weight\": 0.1355, \"Shell_weight\": 0.185, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.52, \"Diameter\": 0.405, \"Height\": 0.145, \"Whole_weight\": 0.8290000000000001, \"Shucked_weight\": 0.3535, \"Viscera_weight\": 0.1685, \"Shell_weight\": 0.205, \"Rings\": 15, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.365, \"Height\": 0.14, \"Whole_weight\": 0.4545, \"Shucked_weight\": 0.171, \"Viscera_weight\": 0.11800000000000001, \"Shell_weight\": 0.158, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.455, \"Diameter\": 0.36, \"Height\": 0.11, \"Whole_weight\": 0.4385, \"Shucked_weight\": 0.20600000000000002, \"Viscera_weight\": 0.098, \"Shell_weight\": 0.125, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.34, \"Height\": 0.11, \"Whole_weight\": 0.40700000000000003, \"Shucked_weight\": 0.1685, \"Viscera_weight\": 0.073, \"Shell_weight\": 0.13, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.3, \"Height\": 0.1, \"Whole_weight\": 0.3085, \"Shucked_weight\": 0.1385, \"Viscera_weight\": 0.0735, \"Shell_weight\": 0.085, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.285, \"Height\": 0.1, \"Whole_weight\": 0.239, \"Shucked_weight\": 0.105, \"Viscera_weight\": 0.0555, \"Shell_weight\": 0.07, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.285, \"Diameter\": 0.215, \"Height\": 0.075, \"Whole_weight\": 0.106, \"Shucked_weight\": 0.0415, \"Viscera_weight\": 0.023, \"Shell_weight\": 0.035, \"Rings\": 5, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.58, \"Diameter\": 0.445, \"Height\": 0.17, \"Whole_weight\": 1.178, \"Shucked_weight\": 0.3935, \"Viscera_weight\": 0.2165, \"Shell_weight\": 0.315, \"Rings\": 20, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.44, \"Height\": 0.175, \"Whole_weight\": 1.073, \"Shucked_weight\": 0.4005, \"Viscera_weight\": 0.2345, \"Shell_weight\": 0.335, \"Rings\": 19, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.41, \"Diameter\": 0.315, \"Height\": 0.095, \"Whole_weight\": 0.306, \"Shucked_weight\": 0.121, \"Viscera_weight\": 0.0735, \"Shell_weight\": 0.09, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.41, \"Diameter\": 0.3, \"Height\": 0.1, \"Whole_weight\": 0.301, \"Shucked_weight\": 0.124, \"Viscera_weight\": 0.069, \"Shell_weight\": 0.09, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.405, \"Height\": 0.15, \"Whole_weight\": 0.7585, \"Shucked_weight\": 0.307, \"Viscera_weight\": 0.2075, \"Shell_weight\": 0.19, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.33, \"Diameter\": 0.245, \"Height\": 0.085, \"Whole_weight\": 0.171, \"Shucked_weight\": 0.0655, \"Viscera_weight\": 0.0365, \"Shell_weight\": 0.055, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.31, \"Height\": 0.115, \"Whole_weight\": 0.3625, \"Shucked_weight\": 0.134, \"Viscera_weight\": 0.08199999999999999, \"Shell_weight\": 0.12, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.28, \"Diameter\": 0.21, \"Height\": 0.065, \"Whole_weight\": 0.0905, \"Shucked_weight\": 0.035, \"Viscera_weight\": 0.02, \"Shell_weight\": 0.03, \"Rings\": 5, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.59, \"Diameter\": 0.465, \"Height\": 0.195, \"Whole_weight\": 1.0885, \"Shucked_weight\": 0.3685, \"Viscera_weight\": 0.187, \"Shell_weight\": 0.375, \"Rings\": 17, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.61, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.097, \"Shucked_weight\": 0.4215, \"Viscera_weight\": 0.264, \"Shell_weight\": 0.335, \"Rings\": 13, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.61, \"Diameter\": 0.46, \"Height\": 0.17, \"Whole_weight\": 1.278, \"Shucked_weight\": 0.41, \"Viscera_weight\": 0.257, \"Shell_weight\": 0.37, \"Rings\": 17, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.455, \"Diameter\": 0.345, \"Height\": 0.125, \"Whole_weight\": 0.44, \"Shucked_weight\": 0.16899999999999998, \"Viscera_weight\": 0.1065, \"Shell_weight\": 0.135, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.33, \"Diameter\": 0.235, \"Height\": 0.09, \"Whole_weight\": 0.163, \"Shucked_weight\": 0.0615, \"Viscera_weight\": 0.034, \"Shell_weight\": 0.055, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.33, \"Height\": 0.135, \"Whole_weight\": 0.522, \"Shucked_weight\": 0.17, \"Viscera_weight\": 0.0905, \"Shell_weight\": 0.195, \"Rings\": 16, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.54, \"Diameter\": 0.405, \"Height\": 0.155, \"Whole_weight\": 0.9715, \"Shucked_weight\": 0.3225, \"Viscera_weight\": 0.19399999999999998, \"Shell_weight\": 0.29, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.375, \"Height\": 0.125, \"Whole_weight\": 0.588, \"Shucked_weight\": 0.237, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.155, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.46, \"Diameter\": 0.33, \"Height\": 0.15, \"Whole_weight\": 0.5325, \"Shucked_weight\": 0.2085, \"Viscera_weight\": 0.1805, \"Shell_weight\": 0.125, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.31, \"Diameter\": 0.235, \"Height\": 0.09, \"Whole_weight\": 0.127, \"Shucked_weight\": 0.048, \"Viscera_weight\": 0.031, \"Shell_weight\": 0.04, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.255, \"Diameter\": 0.19, \"Height\": 0.07, \"Whole_weight\": 0.0815, \"Shucked_weight\": 0.027999999999999997, \"Viscera_weight\": 0.016, \"Shell_weight\": 0.031, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.335, \"Diameter\": 0.255, \"Height\": 0.075, \"Whole_weight\": 0.1635, \"Shucked_weight\": 0.0615, \"Viscera_weight\": 0.0345, \"Shell_weight\": 0.057, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.295, \"Diameter\": 0.21, \"Height\": 0.08, \"Whole_weight\": 0.1, \"Shucked_weight\": 0.038, \"Viscera_weight\": 0.026000000000000002, \"Shell_weight\": 0.031, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.19, \"Diameter\": 0.13, \"Height\": 0.045, \"Whole_weight\": 0.0265, \"Shucked_weight\": 0.009000000000000001, \"Viscera_weight\": 0.005, \"Shell_weight\": 0.009000000000000001, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.435, \"Height\": 0.165, \"Whole_weight\": 0.9955, \"Shucked_weight\": 0.3245, \"Viscera_weight\": 0.2665, \"Shell_weight\": 0.325, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.4, \"Height\": 0.12, \"Whole_weight\": 0.6605, \"Shucked_weight\": 0.2605, \"Viscera_weight\": 0.161, \"Shell_weight\": 0.19, \"Rings\": 15, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.5, \"Diameter\": 0.375, \"Height\": 0.13, \"Whole_weight\": 0.721, \"Shucked_weight\": 0.3055, \"Viscera_weight\": 0.1725, \"Shell_weight\": 0.22, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.305, \"Diameter\": 0.225, \"Height\": 0.07, \"Whole_weight\": 0.1485, \"Shucked_weight\": 0.0585, \"Viscera_weight\": 0.0335, \"Shell_weight\": 0.045, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.35, \"Height\": 0.115, \"Whole_weight\": 0.48700000000000004, \"Shucked_weight\": 0.19399999999999998, \"Viscera_weight\": 0.1455, \"Shell_weight\": 0.125, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.4, \"Height\": 0.125, \"Whole_weight\": 0.955, \"Shucked_weight\": 0.341, \"Viscera_weight\": 0.2535, \"Shell_weight\": 0.26, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.41, \"Height\": 0.145, \"Whole_weight\": 0.873, \"Shucked_weight\": 0.3035, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.31, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.74, \"Diameter\": 0.535, \"Height\": 0.185, \"Whole_weight\": 1.65, \"Shucked_weight\": 0.7340000000000001, \"Viscera_weight\": 0.4505, \"Shell_weight\": 0.335, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.565, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 1.1285, \"Shucked_weight\": 0.377, \"Viscera_weight\": 0.3525, \"Shell_weight\": 0.33, \"Rings\": 16, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.44, \"Height\": 0.16, \"Whole_weight\": 1.1115, \"Shucked_weight\": 0.5035, \"Viscera_weight\": 0.2785, \"Shell_weight\": 0.26, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.42, \"Height\": 0.125, \"Whole_weight\": 0.9745, \"Shucked_weight\": 0.353, \"Viscera_weight\": 0.174, \"Shell_weight\": 0.305, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.515, \"Height\": 0.185, \"Whole_weight\": 1.4605, \"Shucked_weight\": 0.5835, \"Viscera_weight\": 0.3155, \"Shell_weight\": 0.41, \"Rings\": 19, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.435, \"Height\": 0.13, \"Whole_weight\": 1.0105, \"Shucked_weight\": 0.368, \"Viscera_weight\": 0.222, \"Shell_weight\": 0.32, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.48, \"Height\": 0.16, \"Whole_weight\": 1.0765, \"Shucked_weight\": 0.41200000000000003, \"Viscera_weight\": 0.253, \"Shell_weight\": 0.3, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.45, \"Height\": 0.165, \"Whole_weight\": 1.2225, \"Shucked_weight\": 0.35700000000000004, \"Viscera_weight\": 0.20199999999999999, \"Shell_weight\": 0.385, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.6159999999999999, \"Shucked_weight\": 0.5495, \"Viscera_weight\": 0.332, \"Shell_weight\": 0.34, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.475, \"Diameter\": 0.375, \"Height\": 0.15, \"Whole_weight\": 0.5589999999999999, \"Shucked_weight\": 0.1955, \"Viscera_weight\": 0.1215, \"Shell_weight\": 0.1945, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.365, \"Diameter\": 0.285, \"Height\": 0.085, \"Whole_weight\": 0.2205, \"Shucked_weight\": 0.0855, \"Viscera_weight\": 0.0515, \"Shell_weight\": 0.07, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.46, \"Diameter\": 0.35, \"Height\": 0.115, \"Whole_weight\": 0.44, \"Shucked_weight\": 0.19, \"Viscera_weight\": 0.1025, \"Shell_weight\": 0.13, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.43, \"Height\": 0.135, \"Whole_weight\": 0.879, \"Shucked_weight\": 0.28, \"Viscera_weight\": 0.2165, \"Shell_weight\": 0.25, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.395, \"Height\": 0.15, \"Whole_weight\": 0.6815, \"Shucked_weight\": 0.2145, \"Viscera_weight\": 0.1405, \"Shell_weight\": 0.2495, \"Rings\": 18, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.455, \"Diameter\": 0.345, \"Height\": 0.15, \"Whole_weight\": 0.5795, \"Shucked_weight\": 0.1685, \"Viscera_weight\": 0.125, \"Shell_weight\": 0.215, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.265, \"Height\": 0.11, \"Whole_weight\": 0.209, \"Shucked_weight\": 0.066, \"Viscera_weight\": 0.059000000000000004, \"Shell_weight\": 0.075, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.37, \"Diameter\": 0.28, \"Height\": 0.105, \"Whole_weight\": 0.22399999999999998, \"Shucked_weight\": 0.0815, \"Viscera_weight\": 0.0575, \"Shell_weight\": 0.075, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.34, \"Diameter\": 0.25, \"Height\": 0.075, \"Whole_weight\": 0.1765, \"Shucked_weight\": 0.0785, \"Viscera_weight\": 0.0405, \"Shell_weight\": 0.05, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.28, \"Height\": 0.075, \"Whole_weight\": 0.196, \"Shucked_weight\": 0.08199999999999999, \"Viscera_weight\": 0.04, \"Shell_weight\": 0.064, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.265, \"Height\": 0.08, \"Whole_weight\": 0.192, \"Shucked_weight\": 0.081, \"Viscera_weight\": 0.0465, \"Shell_weight\": 0.053, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.315, \"Height\": 0.09, \"Whole_weight\": 0.3095, \"Shucked_weight\": 0.147, \"Viscera_weight\": 0.05, \"Shell_weight\": 0.09, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.31, \"Height\": 0.095, \"Whole_weight\": 0.313, \"Shucked_weight\": 0.131, \"Viscera_weight\": 0.07200000000000001, \"Shell_weight\": 0.09300000000000001, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.415, \"Diameter\": 0.31, \"Height\": 0.105, \"Whole_weight\": 0.3595, \"Shucked_weight\": 0.16699999999999998, \"Viscera_weight\": 0.083, \"Shell_weight\": 0.0915, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.32, \"Height\": 0.1, \"Whole_weight\": 0.3855, \"Shucked_weight\": 0.192, \"Viscera_weight\": 0.0745, \"Shell_weight\": 0.1, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.355, \"Height\": 0.115, \"Whole_weight\": 0.5785, \"Shucked_weight\": 0.25, \"Viscera_weight\": 0.106, \"Shell_weight\": 0.184, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.49, \"Diameter\": 0.395, \"Height\": 0.12, \"Whole_weight\": 0.674, \"Shucked_weight\": 0.3325, \"Viscera_weight\": 0.1235, \"Shell_weight\": 0.185, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.37, \"Height\": 0.105, \"Whole_weight\": 0.5265, \"Shucked_weight\": 0.249, \"Viscera_weight\": 0.1005, \"Shell_weight\": 0.14800000000000002, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.56, \"Diameter\": 0.465, \"Height\": 0.16, \"Whole_weight\": 1.0315, \"Shucked_weight\": 0.43200000000000005, \"Viscera_weight\": 0.2025, \"Shell_weight\": 0.337, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.45, \"Height\": 0.14, \"Whole_weight\": 0.9, \"Shucked_weight\": 0.47200000000000003, \"Viscera_weight\": 0.182, \"Shell_weight\": 0.218, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.15, \"Whole_weight\": 1.0165, \"Shucked_weight\": 0.491, \"Viscera_weight\": 0.221, \"Shell_weight\": 0.265, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.58, \"Diameter\": 0.48, \"Height\": 0.18, \"Whole_weight\": 1.2495, \"Shucked_weight\": 0.4945, \"Viscera_weight\": 0.27, \"Shell_weight\": 0.371, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.47, \"Height\": 0.135, \"Whole_weight\": 1.1685, \"Shucked_weight\": 0.539, \"Viscera_weight\": 0.27899999999999997, \"Shell_weight\": 0.28, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.475, \"Height\": 0.165, \"Whole_weight\": 1.148, \"Shucked_weight\": 0.444, \"Viscera_weight\": 0.214, \"Shell_weight\": 0.37, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 1.089, \"Shucked_weight\": 0.5195, \"Viscera_weight\": 0.223, \"Shell_weight\": 0.292, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 1.0325, \"Shucked_weight\": 0.49700000000000005, \"Viscera_weight\": 0.2175, \"Shell_weight\": 0.2785, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 1.172, \"Shucked_weight\": 0.536, \"Viscera_weight\": 0.254, \"Shell_weight\": 0.316, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.51, \"Height\": 0.17, \"Whole_weight\": 1.3715, \"Shucked_weight\": 0.5670000000000001, \"Viscera_weight\": 0.307, \"Shell_weight\": 0.409, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.545, \"Height\": 0.185, \"Whole_weight\": 1.5055, \"Shucked_weight\": 0.6565, \"Viscera_weight\": 0.341, \"Shell_weight\": 0.43, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.71, \"Diameter\": 0.55, \"Height\": 0.2, \"Whole_weight\": 1.9045, \"Shucked_weight\": 0.882, \"Viscera_weight\": 0.44, \"Shell_weight\": 0.5, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.74, \"Diameter\": 0.605, \"Height\": 0.2, \"Whole_weight\": 2.4925, \"Shucked_weight\": 1.1455, \"Viscera_weight\": 0.575, \"Shell_weight\": 0.5235, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.25, \"Diameter\": 0.18, \"Height\": 0.065, \"Whole_weight\": 0.0805, \"Shucked_weight\": 0.0345, \"Viscera_weight\": 0.0185, \"Shell_weight\": 0.0215, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.28, \"Diameter\": 0.21, \"Height\": 0.065, \"Whole_weight\": 0.111, \"Shucked_weight\": 0.0425, \"Viscera_weight\": 0.0285, \"Shell_weight\": 0.03, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.325, \"Diameter\": 0.24, \"Height\": 0.075, \"Whole_weight\": 0.152, \"Shucked_weight\": 0.065, \"Viscera_weight\": 0.0305, \"Shell_weight\": 0.045, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.265, \"Height\": 0.095, \"Whole_weight\": 0.19899999999999998, \"Shucked_weight\": 0.073, \"Viscera_weight\": 0.049, \"Shell_weight\": 0.06, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.27, \"Height\": 0.09, \"Whole_weight\": 0.21899999999999997, \"Shucked_weight\": 0.09699999999999999, \"Viscera_weight\": 0.0405, \"Shell_weight\": 0.065, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.27, \"Height\": 0.105, \"Whole_weight\": 0.2155, \"Shucked_weight\": 0.0915, \"Viscera_weight\": 0.0475, \"Shell_weight\": 0.063, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.28, \"Height\": 0.09, \"Whole_weight\": 0.2565, \"Shucked_weight\": 0.1255, \"Viscera_weight\": 0.0645, \"Shell_weight\": 0.0645, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.375, \"Diameter\": 0.285, \"Height\": 0.09, \"Whole_weight\": 0.257, \"Shucked_weight\": 0.1045, \"Viscera_weight\": 0.062, \"Shell_weight\": 0.075, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.38, \"Diameter\": 0.275, \"Height\": 0.095, \"Whole_weight\": 0.2505, \"Shucked_weight\": 0.0945, \"Viscera_weight\": 0.0655, \"Shell_weight\": 0.075, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.27899999999999997, \"Shucked_weight\": 0.134, \"Viscera_weight\": 0.049, \"Shell_weight\": 0.075, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.335, \"Height\": 0.105, \"Whole_weight\": 0.37799999999999995, \"Shucked_weight\": 0.188, \"Viscera_weight\": 0.0785, \"Shell_weight\": 0.09, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.35, \"Height\": 0.125, \"Whole_weight\": 0.456, \"Shucked_weight\": 0.21, \"Viscera_weight\": 0.0955, \"Shell_weight\": 0.131, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.37, \"Height\": 0.1, \"Whole_weight\": 0.5055, \"Shucked_weight\": 0.23399999999999999, \"Viscera_weight\": 0.11, \"Shell_weight\": 0.14, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.465, \"Diameter\": 0.355, \"Height\": 0.115, \"Whole_weight\": 0.4705, \"Shucked_weight\": 0.1955, \"Viscera_weight\": 0.11800000000000001, \"Shell_weight\": 0.126, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.48, \"Diameter\": 0.37, \"Height\": 0.13, \"Whole_weight\": 0.643, \"Shucked_weight\": 0.349, \"Viscera_weight\": 0.1155, \"Shell_weight\": 0.135, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.37, \"Height\": 0.1, \"Whole_weight\": 0.513, \"Shucked_weight\": 0.21899999999999997, \"Viscera_weight\": 0.1075, \"Shell_weight\": 0.13, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.49, \"Diameter\": 0.4, \"Height\": 0.115, \"Whole_weight\": 0.569, \"Shucked_weight\": 0.256, \"Viscera_weight\": 0.1325, \"Shell_weight\": 0.145, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.4, \"Height\": 0.145, \"Whole_weight\": 0.578, \"Shucked_weight\": 0.2545, \"Viscera_weight\": 0.1305, \"Shell_weight\": 0.1645, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.385, \"Height\": 0.11, \"Whole_weight\": 0.596, \"Shucked_weight\": 0.3015, \"Viscera_weight\": 0.10400000000000001, \"Shell_weight\": 0.151, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.39, \"Height\": 0.12, \"Whole_weight\": 0.5725, \"Shucked_weight\": 0.2555, \"Viscera_weight\": 0.1325, \"Shell_weight\": 0.146, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.39, \"Height\": 0.12, \"Whole_weight\": 0.6435, \"Shucked_weight\": 0.2885, \"Viscera_weight\": 0.157, \"Shell_weight\": 0.161, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.52, \"Diameter\": 0.395, \"Height\": 0.125, \"Whole_weight\": 0.8115, \"Shucked_weight\": 0.4035, \"Viscera_weight\": 0.166, \"Shell_weight\": 0.2, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.44, \"Height\": 0.125, \"Whole_weight\": 0.7115, \"Shucked_weight\": 0.3205, \"Viscera_weight\": 0.159, \"Shell_weight\": 0.1915, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.44, \"Height\": 0.155, \"Whole_weight\": 0.9155, \"Shucked_weight\": 0.3645, \"Viscera_weight\": 0.195, \"Shell_weight\": 0.25, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.555, \"Diameter\": 0.44, \"Height\": 0.145, \"Whole_weight\": 0.8815, \"Shucked_weight\": 0.43, \"Viscera_weight\": 0.1975, \"Shell_weight\": 0.2155, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.555, \"Diameter\": 0.42, \"Height\": 0.11, \"Whole_weight\": 0.9309999999999999, \"Shucked_weight\": 0.4445, \"Viscera_weight\": 0.171, \"Shell_weight\": 0.225, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.46, \"Height\": 0.165, \"Whole_weight\": 1.065, \"Shucked_weight\": 0.4985, \"Viscera_weight\": 0.2145, \"Shell_weight\": 0.2815, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 1.1385, \"Shucked_weight\": 0.502, \"Viscera_weight\": 0.2295, \"Shell_weight\": 0.31, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.48, \"Height\": 0.16, \"Whole_weight\": 1.234, \"Shucked_weight\": 0.598, \"Viscera_weight\": 0.23800000000000002, \"Shell_weight\": 0.315, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.495, \"Height\": 0.175, \"Whole_weight\": 1.2635, \"Shucked_weight\": 0.53, \"Viscera_weight\": 0.315, \"Shell_weight\": 0.3455, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.47, \"Height\": 0.16, \"Whole_weight\": 1.0745, \"Shucked_weight\": 0.4925, \"Viscera_weight\": 0.23600000000000002, \"Shell_weight\": 0.29, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.505, \"Height\": 0.19, \"Whole_weight\": 1.403, \"Shucked_weight\": 0.6715, \"Viscera_weight\": 0.2925, \"Shell_weight\": 0.365, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.485, \"Height\": 0.165, \"Whole_weight\": 1.1325, \"Shucked_weight\": 0.5235, \"Viscera_weight\": 0.2505, \"Shell_weight\": 0.2825, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.495, \"Height\": 0.16, \"Whole_weight\": 1.1115, \"Shucked_weight\": 0.4495, \"Viscera_weight\": 0.2825, \"Shell_weight\": 0.345, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.47, \"Height\": 0.17, \"Whole_weight\": 1.255, \"Shucked_weight\": 0.525, \"Viscera_weight\": 0.2415, \"Shell_weight\": 0.405, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.485, \"Height\": 0.17, \"Whole_weight\": 1.4369999999999998, \"Shucked_weight\": 0.5855, \"Viscera_weight\": 0.293, \"Shell_weight\": 0.475, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.495, \"Height\": 0.155, \"Whole_weight\": 1.3635, \"Shucked_weight\": 0.583, \"Viscera_weight\": 0.2985, \"Shell_weight\": 0.295, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.48, \"Height\": 0.195, \"Whole_weight\": 1.1435, \"Shucked_weight\": 0.4915, \"Viscera_weight\": 0.2345, \"Shell_weight\": 0.353, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.5, \"Height\": 0.17, \"Whole_weight\": 1.4545, \"Shucked_weight\": 0.642, \"Viscera_weight\": 0.3575, \"Shell_weight\": 0.354, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.525, \"Height\": 0.18, \"Whole_weight\": 1.4780000000000002, \"Shucked_weight\": 0.5815, \"Viscera_weight\": 0.381, \"Shell_weight\": 0.37200000000000005, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.52, \"Height\": 0.165, \"Whole_weight\": 1.6885, \"Shucked_weight\": 0.7295, \"Viscera_weight\": 0.40700000000000003, \"Shell_weight\": 0.4265, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.715, \"Diameter\": 0.585, \"Height\": 0.23, \"Whole_weight\": 2.0725, \"Shucked_weight\": 0.8655, \"Viscera_weight\": 0.4095, \"Shell_weight\": 0.565, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.72, \"Diameter\": 0.565, \"Height\": 0.2, \"Whole_weight\": 1.787, \"Shucked_weight\": 0.718, \"Viscera_weight\": 0.385, \"Shell_weight\": 0.529, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.725, \"Diameter\": 0.58, \"Height\": 0.185, \"Whole_weight\": 1.5230000000000001, \"Shucked_weight\": 0.8045, \"Viscera_weight\": 0.3595, \"Shell_weight\": 0.4375, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.165, \"Diameter\": 0.12, \"Height\": 0.05, \"Whole_weight\": 0.021, \"Shucked_weight\": 0.0075, \"Viscera_weight\": 0.0045, \"Shell_weight\": 0.013999999999999999, \"Rings\": 3, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.21, \"Diameter\": 0.15, \"Height\": 0.055, \"Whole_weight\": 0.0455, \"Shucked_weight\": 0.02, \"Viscera_weight\": 0.0065, \"Shell_weight\": 0.013000000000000001, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.355, \"Diameter\": 0.265, \"Height\": 0.085, \"Whole_weight\": 0.2435, \"Shucked_weight\": 0.122, \"Viscera_weight\": 0.0525, \"Shell_weight\": 0.06, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.315, \"Height\": 0.085, \"Whole_weight\": 0.2675, \"Shucked_weight\": 0.11599999999999999, \"Viscera_weight\": 0.0585, \"Shell_weight\": 0.0765, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.29, \"Height\": 0.1, \"Whole_weight\": 0.258, \"Shucked_weight\": 0.10400000000000001, \"Viscera_weight\": 0.059000000000000004, \"Shell_weight\": 0.0815, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.3, \"Height\": 0.11, \"Whole_weight\": 0.2985, \"Shucked_weight\": 0.1375, \"Viscera_weight\": 0.071, \"Shell_weight\": 0.075, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.335, \"Height\": 0.11, \"Whole_weight\": 0.41100000000000003, \"Shucked_weight\": 0.2025, \"Viscera_weight\": 0.0945, \"Shell_weight\": 0.1, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.33, \"Height\": 0.11, \"Whole_weight\": 0.38, \"Shucked_weight\": 0.19699999999999998, \"Viscera_weight\": 0.079, \"Shell_weight\": 0.09, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.34, \"Height\": 0.105, \"Whole_weight\": 0.4385, \"Shucked_weight\": 0.21, \"Viscera_weight\": 0.0925, \"Shell_weight\": 0.12, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.345, \"Height\": 0.105, \"Whole_weight\": 0.4015, \"Shucked_weight\": 0.242, \"Viscera_weight\": 0.0345, \"Shell_weight\": 0.109, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.355, \"Height\": 0.145, \"Whole_weight\": 0.4485, \"Shucked_weight\": 0.156, \"Viscera_weight\": 0.102, \"Shell_weight\": 0.12300000000000001, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.355, \"Height\": 0.115, \"Whole_weight\": 0.4155, \"Shucked_weight\": 0.16699999999999998, \"Viscera_weight\": 0.084, \"Shell_weight\": 0.139, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.42, \"Height\": 0.16, \"Whole_weight\": 0.7095, \"Shucked_weight\": 0.35, \"Viscera_weight\": 0.1505, \"Shell_weight\": 0.1845, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.37, \"Height\": 0.115, \"Whole_weight\": 0.637, \"Shucked_weight\": 0.38, \"Viscera_weight\": 0.1335, \"Shell_weight\": 0.128, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.505, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.1155, \"Shucked_weight\": 0.509, \"Viscera_weight\": 0.239, \"Shell_weight\": 0.3065, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.405, \"Height\": 0.13, \"Whole_weight\": 0.599, \"Shucked_weight\": 0.3065, \"Viscera_weight\": 0.1155, \"Shell_weight\": 0.1485, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.38, \"Height\": 0.13, \"Whole_weight\": 0.5345, \"Shucked_weight\": 0.2375, \"Viscera_weight\": 0.122, \"Shell_weight\": 0.1535, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.53, \"Diameter\": 0.42, \"Height\": 0.14, \"Whole_weight\": 0.627, \"Shucked_weight\": 0.2905, \"Viscera_weight\": 0.1165, \"Shell_weight\": 0.183, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.42, \"Height\": 0.16, \"Whole_weight\": 0.7465, \"Shucked_weight\": 0.348, \"Viscera_weight\": 0.1515, \"Shell_weight\": 0.2185, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.55, \"Diameter\": 0.44, \"Height\": 0.16, \"Whole_weight\": 0.985, \"Shucked_weight\": 0.4645, \"Viscera_weight\": 0.201, \"Shell_weight\": 0.27, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.44, \"Height\": 0.145, \"Whole_weight\": 0.85, \"Shucked_weight\": 0.4165, \"Viscera_weight\": 0.1685, \"Shell_weight\": 0.23, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.555, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 0.838, \"Shucked_weight\": 0.4155, \"Viscera_weight\": 0.146, \"Shell_weight\": 0.23, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.555, \"Diameter\": 0.43, \"Height\": 0.135, \"Whole_weight\": 0.812, \"Shucked_weight\": 0.4055, \"Viscera_weight\": 0.163, \"Shell_weight\": 0.2215, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.56, \"Diameter\": 0.415, \"Height\": 0.13, \"Whole_weight\": 0.7615, \"Shucked_weight\": 0.3695, \"Viscera_weight\": 0.17, \"Shell_weight\": 0.1955, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.44, \"Height\": 0.145, \"Whole_weight\": 0.87, \"Shucked_weight\": 0.3945, \"Viscera_weight\": 0.2195, \"Shell_weight\": 0.225, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 0.9835, \"Shucked_weight\": 0.4845, \"Viscera_weight\": 0.242, \"Shell_weight\": 0.22, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.46, \"Height\": 0.145, \"Whole_weight\": 0.929, \"Shucked_weight\": 0.38, \"Viscera_weight\": 0.24, \"Shell_weight\": 0.255, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 1.0155, \"Shucked_weight\": 0.491, \"Viscera_weight\": 0.1905, \"Shell_weight\": 0.289, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.41, \"Height\": 0.145, \"Whole_weight\": 0.9390000000000001, \"Shucked_weight\": 0.4475, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.268, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.1640000000000001, \"Shucked_weight\": 0.5045, \"Viscera_weight\": 0.2635, \"Shell_weight\": 0.335, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.47, \"Height\": 0.175, \"Whole_weight\": 1.214, \"Shucked_weight\": 0.5315, \"Viscera_weight\": 0.2835, \"Shell_weight\": 0.325, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.615, \"Diameter\": 0.49, \"Height\": 0.19, \"Whole_weight\": 1.1345, \"Shucked_weight\": 0.4695, \"Viscera_weight\": 0.257, \"Shell_weight\": 0.348, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.51, \"Height\": 0.18, \"Whole_weight\": 1.2329999999999999, \"Shucked_weight\": 0.5920000000000001, \"Viscera_weight\": 0.27399999999999997, \"Shell_weight\": 0.322, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.495, \"Height\": 0.18, \"Whole_weight\": 1.0815, \"Shucked_weight\": 0.4715, \"Viscera_weight\": 0.254, \"Shell_weight\": 0.3135, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.47, \"Height\": 0.175, \"Whole_weight\": 1.179, \"Shucked_weight\": 0.605, \"Viscera_weight\": 0.258, \"Shell_weight\": 0.271, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.5, \"Height\": 0.165, \"Whole_weight\": 1.1635, \"Shucked_weight\": 0.5539999999999999, \"Viscera_weight\": 0.239, \"Shell_weight\": 0.32, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.475, \"Height\": 0.175, \"Whole_weight\": 1.1545, \"Shucked_weight\": 0.4865, \"Viscera_weight\": 0.341, \"Shell_weight\": 0.28800000000000003, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.645, \"Diameter\": 0.52, \"Height\": 0.175, \"Whole_weight\": 1.3345, \"Shucked_weight\": 0.667, \"Viscera_weight\": 0.2665, \"Shell_weight\": 0.355, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.505, \"Height\": 0.18, \"Whole_weight\": 1.469, \"Shucked_weight\": 0.7115, \"Viscera_weight\": 0.3335, \"Shell_weight\": 0.38, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.52, \"Height\": 0.18, \"Whole_weight\": 1.492, \"Shucked_weight\": 0.7185, \"Viscera_weight\": 0.36, \"Shell_weight\": 0.355, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.54, \"Height\": 0.175, \"Whole_weight\": 1.5585, \"Shucked_weight\": 0.7285, \"Viscera_weight\": 0.402, \"Shell_weight\": 0.385, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.3275, \"Shucked_weight\": 0.556, \"Viscera_weight\": 0.2805, \"Shell_weight\": 0.4085, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.525, \"Height\": 0.18, \"Whole_weight\": 1.6615, \"Shucked_weight\": 0.8005, \"Viscera_weight\": 0.3645, \"Shell_weight\": 0.43, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.69, \"Diameter\": 0.525, \"Height\": 0.19, \"Whole_weight\": 1.492, \"Shucked_weight\": 0.6425, \"Viscera_weight\": 0.3905, \"Shell_weight\": 0.42, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.575, \"Height\": 0.2, \"Whole_weight\": 1.7365, \"Shucked_weight\": 0.7755, \"Viscera_weight\": 0.3965, \"Shell_weight\": 0.461, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.7, \"Diameter\": 0.56, \"Height\": 0.175, \"Whole_weight\": 1.6605, \"Shucked_weight\": 0.8605, \"Viscera_weight\": 0.3275, \"Shell_weight\": 0.39799999999999996, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.71, \"Diameter\": 0.57, \"Height\": 0.195, \"Whole_weight\": 1.348, \"Shucked_weight\": 0.8985, \"Viscera_weight\": 0.4435, \"Shell_weight\": 0.4535, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.715, \"Diameter\": 0.545, \"Height\": 0.18, \"Whole_weight\": 1.7405, \"Shucked_weight\": 0.871, \"Viscera_weight\": 0.34700000000000003, \"Shell_weight\": 0.449, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.72, \"Diameter\": 0.545, \"Height\": 0.185, \"Whole_weight\": 1.7185, \"Shucked_weight\": 0.7925, \"Viscera_weight\": 0.401, \"Shell_weight\": 0.46799999999999997, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.215, \"Diameter\": 0.15, \"Height\": 0.055, \"Whole_weight\": 0.040999999999999995, \"Shucked_weight\": 0.015, \"Viscera_weight\": 0.009000000000000001, \"Shell_weight\": 0.0125, \"Rings\": 3, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.24, \"Diameter\": 0.185, \"Height\": 0.06, \"Whole_weight\": 0.0655, \"Shucked_weight\": 0.0295, \"Viscera_weight\": 0.0005, \"Shell_weight\": 0.02, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.26, \"Diameter\": 0.205, \"Height\": 0.07, \"Whole_weight\": 0.09699999999999999, \"Shucked_weight\": 0.0415, \"Viscera_weight\": 0.019, \"Shell_weight\": 0.0305, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.32, \"Diameter\": 0.24, \"Height\": 0.085, \"Whole_weight\": 0.131, \"Shucked_weight\": 0.0615, \"Viscera_weight\": 0.0265, \"Shell_weight\": 0.038, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.33, \"Diameter\": 0.23, \"Height\": 0.085, \"Whole_weight\": 0.1695, \"Shucked_weight\": 0.079, \"Viscera_weight\": 0.026000000000000002, \"Shell_weight\": 0.0505, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.335, \"Diameter\": 0.26, \"Height\": 0.085, \"Whole_weight\": 0.192, \"Shucked_weight\": 0.09699999999999999, \"Viscera_weight\": 0.03, \"Shell_weight\": 0.054000000000000006, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.26, \"Height\": 0.09, \"Whole_weight\": 0.1765, \"Shucked_weight\": 0.07200000000000001, \"Viscera_weight\": 0.0355, \"Shell_weight\": 0.0575, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.265, \"Height\": 0.085, \"Whole_weight\": 0.1735, \"Shucked_weight\": 0.0775, \"Viscera_weight\": 0.034, \"Shell_weight\": 0.055999999999999994, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.265, \"Height\": 0.075, \"Whole_weight\": 0.1785, \"Shucked_weight\": 0.0785, \"Viscera_weight\": 0.035, \"Shell_weight\": 0.054000000000000006, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.265, \"Height\": 0.09, \"Whole_weight\": 0.2055, \"Shucked_weight\": 0.096, \"Viscera_weight\": 0.037000000000000005, \"Shell_weight\": 0.0585, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.365, \"Diameter\": 0.275, \"Height\": 0.09, \"Whole_weight\": 0.2345, \"Shucked_weight\": 0.10800000000000001, \"Viscera_weight\": 0.051, \"Shell_weight\": 0.0625, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.38, \"Diameter\": 0.285, \"Height\": 0.09, \"Whole_weight\": 0.2305, \"Shucked_weight\": 0.1005, \"Viscera_weight\": 0.039, \"Shell_weight\": 0.0775, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.31, \"Height\": 0.115, \"Whole_weight\": 0.314, \"Shucked_weight\": 0.1545, \"Viscera_weight\": 0.0595, \"Shell_weight\": 0.087, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.315, \"Height\": 0.09, \"Whole_weight\": 0.33, \"Shucked_weight\": 0.151, \"Viscera_weight\": 0.068, \"Shell_weight\": 0.08, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.4, \"Diameter\": 0.265, \"Height\": 0.1, \"Whole_weight\": 0.2775, \"Shucked_weight\": 0.1245, \"Viscera_weight\": 0.0605, \"Shell_weight\": 0.08, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.425, \"Diameter\": 0.325, \"Height\": 0.11, \"Whole_weight\": 0.405, \"Shucked_weight\": 0.1695, \"Viscera_weight\": 0.092, \"Shell_weight\": 0.1065, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.43, \"Diameter\": 0.325, \"Height\": 0.105, \"Whole_weight\": 0.309, \"Shucked_weight\": 0.11900000000000001, \"Viscera_weight\": 0.08, \"Shell_weight\": 0.098, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.435, \"Diameter\": 0.335, \"Height\": 0.11, \"Whole_weight\": 0.4385, \"Shucked_weight\": 0.2075, \"Viscera_weight\": 0.0715, \"Shell_weight\": 0.1315, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.34, \"Height\": 0.12, \"Whole_weight\": 0.396, \"Shucked_weight\": 0.1775, \"Viscera_weight\": 0.081, \"Shell_weight\": 0.125, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.355, \"Height\": 0.095, \"Whole_weight\": 0.3615, \"Shucked_weight\": 0.1415, \"Viscera_weight\": 0.0785, \"Shell_weight\": 0.12, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.45, \"Diameter\": 0.35, \"Height\": 0.11, \"Whole_weight\": 0.514, \"Shucked_weight\": 0.253, \"Viscera_weight\": 0.1045, \"Shell_weight\": 0.14, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.435, \"Height\": 0.11, \"Whole_weight\": 0.4265, \"Shucked_weight\": 0.195, \"Viscera_weight\": 0.09, \"Shell_weight\": 0.1205, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.46, \"Diameter\": 0.34, \"Height\": 0.09, \"Whole_weight\": 0.384, \"Shucked_weight\": 0.1795, \"Viscera_weight\": 0.068, \"Shell_weight\": 0.11, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.355, \"Height\": 0.125, \"Whole_weight\": 0.4865, \"Shucked_weight\": 0.2155, \"Viscera_weight\": 0.1105, \"Shell_weight\": 0.142, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.36, \"Height\": 0.135, \"Whole_weight\": 0.4355, \"Shucked_weight\": 0.196, \"Viscera_weight\": 0.0925, \"Shell_weight\": 0.125, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.35, \"Height\": 0.115, \"Whole_weight\": 0.498, \"Shucked_weight\": 0.2375, \"Viscera_weight\": 0.099, \"Shell_weight\": 0.14, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.48, \"Diameter\": 0.355, \"Height\": 0.125, \"Whole_weight\": 0.494, \"Shucked_weight\": 0.2385, \"Viscera_weight\": 0.0835, \"Shell_weight\": 0.15, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.495, \"Diameter\": 0.37, \"Height\": 0.12, \"Whole_weight\": 0.594, \"Shucked_weight\": 0.28, \"Viscera_weight\": 0.11, \"Shell_weight\": 0.1375, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.365, \"Height\": 0.125, \"Whole_weight\": 0.528, \"Shucked_weight\": 0.22899999999999998, \"Viscera_weight\": 0.10300000000000001, \"Shell_weight\": 0.1645, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.39, \"Height\": 0.115, \"Whole_weight\": 0.5585, \"Shucked_weight\": 0.2575, \"Viscera_weight\": 0.11900000000000001, \"Shell_weight\": 0.1535, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.4, \"Height\": 0.135, \"Whole_weight\": 0.636, \"Shucked_weight\": 0.3055, \"Viscera_weight\": 0.1215, \"Shell_weight\": 0.1855, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.39, \"Height\": 0.105, \"Whole_weight\": 0.5670000000000001, \"Shucked_weight\": 0.2875, \"Viscera_weight\": 0.1075, \"Shell_weight\": 0.16, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.405, \"Height\": 0.13, \"Whole_weight\": 0.6615, \"Shucked_weight\": 0.2945, \"Viscera_weight\": 0.1395, \"Shell_weight\": 0.19, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.42, \"Height\": 0.13, \"Whole_weight\": 0.6579999999999999, \"Shucked_weight\": 0.29600000000000004, \"Viscera_weight\": 0.1245, \"Shell_weight\": 0.198, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.415, \"Height\": 0.135, \"Whole_weight\": 0.78, \"Shucked_weight\": 0.3165, \"Viscera_weight\": 0.16899999999999998, \"Shell_weight\": 0.2365, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.41, \"Height\": 0.13, \"Whole_weight\": 0.6075, \"Shucked_weight\": 0.268, \"Viscera_weight\": 0.1225, \"Shell_weight\": 0.1975, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.54, \"Diameter\": 0.41, \"Height\": 0.135, \"Whole_weight\": 0.7025, \"Shucked_weight\": 0.31, \"Viscera_weight\": 0.177, \"Shell_weight\": 0.2, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.425, \"Height\": 0.155, \"Whole_weight\": 0.8725, \"Shucked_weight\": 0.41200000000000003, \"Viscera_weight\": 0.187, \"Shell_weight\": 0.2425, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.565, \"Diameter\": 0.45, \"Height\": 0.175, \"Whole_weight\": 1.2365, \"Shucked_weight\": 0.5305, \"Viscera_weight\": 0.2455, \"Shell_weight\": 0.308, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.57, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 1.186, \"Shucked_weight\": 0.6355, \"Viscera_weight\": 0.2315, \"Shell_weight\": 0.27699999999999997, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.57, \"Diameter\": 0.42, \"Height\": 0.13, \"Whole_weight\": 0.7745, \"Shucked_weight\": 0.3535, \"Viscera_weight\": 0.1505, \"Shell_weight\": 0.2365, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.57, \"Diameter\": 0.42, \"Height\": 0.16, \"Whole_weight\": 0.8875, \"Shucked_weight\": 0.4315, \"Viscera_weight\": 0.1915, \"Shell_weight\": 0.223, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.455, \"Height\": 0.155, \"Whole_weight\": 0.8725, \"Shucked_weight\": 0.349, \"Viscera_weight\": 0.2095, \"Shell_weight\": 0.285, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.44, \"Height\": 0.125, \"Whole_weight\": 0.8515, \"Shucked_weight\": 0.4555, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.1965, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 0.895, \"Shucked_weight\": 0.3605, \"Viscera_weight\": 0.221, \"Shell_weight\": 0.271, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.155, \"Whole_weight\": 0.8859999999999999, \"Shucked_weight\": 0.3605, \"Viscera_weight\": 0.21100000000000002, \"Shell_weight\": 0.2575, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.14, \"Whole_weight\": 0.9265, \"Shucked_weight\": 0.4135, \"Viscera_weight\": 0.1845, \"Shell_weight\": 0.27, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.58, \"Diameter\": 0.46, \"Height\": 0.14, \"Whole_weight\": 0.8295, \"Shucked_weight\": 0.3915, \"Viscera_weight\": 0.165, \"Shell_weight\": 0.23800000000000002, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.58, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 0.907, \"Shucked_weight\": 0.444, \"Viscera_weight\": 0.1855, \"Shell_weight\": 0.2445, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.47, \"Height\": 0.165, \"Whole_weight\": 1.041, \"Shucked_weight\": 0.54, \"Viscera_weight\": 0.166, \"Shell_weight\": 0.27899999999999997, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.465, \"Height\": 0.165, \"Whole_weight\": 0.9355, \"Shucked_weight\": 0.4035, \"Viscera_weight\": 0.2275, \"Shell_weight\": 0.259, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.46, \"Height\": 0.165, \"Whole_weight\": 1.058, \"Shucked_weight\": 0.486, \"Viscera_weight\": 0.25, \"Shell_weight\": 0.294, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.465, \"Height\": 0.145, \"Whole_weight\": 0.7955, \"Shucked_weight\": 0.3425, \"Viscera_weight\": 0.1795, \"Shell_weight\": 0.2425, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.47, \"Height\": 0.17, \"Whole_weight\": 1.0805, \"Shucked_weight\": 0.4995, \"Viscera_weight\": 0.2245, \"Shell_weight\": 0.3205, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.47, \"Height\": 0.15, \"Whole_weight\": 0.9279999999999999, \"Shucked_weight\": 0.4225, \"Viscera_weight\": 0.183, \"Shell_weight\": 0.275, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 1.0590000000000002, \"Shucked_weight\": 0.441, \"Viscera_weight\": 0.19, \"Shell_weight\": 0.39, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.23, \"Whole_weight\": 1.157, \"Shucked_weight\": 0.522, \"Viscera_weight\": 0.2235, \"Shell_weight\": 0.36, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.475, \"Height\": 0.17, \"Whole_weight\": 1.088, \"Shucked_weight\": 0.4905, \"Viscera_weight\": 0.2475, \"Shell_weight\": 0.31, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.485, \"Height\": 0.145, \"Whole_weight\": 0.7759999999999999, \"Shucked_weight\": 0.3545, \"Viscera_weight\": 0.1585, \"Shell_weight\": 0.239, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.62, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.043, \"Shucked_weight\": 0.4835, \"Viscera_weight\": 0.221, \"Shell_weight\": 0.31, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.48, \"Height\": 0.16, \"Whole_weight\": 1.1415, \"Shucked_weight\": 0.5795, \"Viscera_weight\": 0.2145, \"Shell_weight\": 0.29, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.475, \"Height\": 0.16, \"Whole_weight\": 1.3335, \"Shucked_weight\": 0.605, \"Viscera_weight\": 0.2875, \"Shell_weight\": 0.319, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.273, \"Shucked_weight\": 0.564, \"Viscera_weight\": 0.302, \"Shell_weight\": 0.374, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.49, \"Height\": 0.165, \"Whole_weight\": 1.1835, \"Shucked_weight\": 0.517, \"Viscera_weight\": 0.2375, \"Shell_weight\": 0.39, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.485, \"Height\": 0.16, \"Whole_weight\": 1.2135, \"Shucked_weight\": 0.631, \"Viscera_weight\": 0.2235, \"Shell_weight\": 0.302, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.63, \"Diameter\": 0.465, \"Height\": 0.15, \"Whole_weight\": 1.0315, \"Shucked_weight\": 0.4265, \"Viscera_weight\": 0.24, \"Shell_weight\": 0.325, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.635, \"Diameter\": 0.495, \"Height\": 0.17, \"Whole_weight\": 1.3695, \"Shucked_weight\": 0.657, \"Viscera_weight\": 0.3055, \"Shell_weight\": 0.365, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.515, \"Height\": 0.185, \"Whole_weight\": 1.3745, \"Shucked_weight\": 0.75, \"Viscera_weight\": 0.1805, \"Shell_weight\": 0.369, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.515, \"Height\": 0.18, \"Whole_weight\": 1.463, \"Shucked_weight\": 0.6579999999999999, \"Viscera_weight\": 0.3135, \"Shell_weight\": 0.4115, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.52, \"Height\": 0.195, \"Whole_weight\": 1.6275, \"Shucked_weight\": 0.6890000000000001, \"Viscera_weight\": 0.3905, \"Shell_weight\": 0.43200000000000005, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.475, \"Height\": 0.165, \"Whole_weight\": 1.3875, \"Shucked_weight\": 0.58, \"Viscera_weight\": 0.3485, \"Shell_weight\": 0.3095, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.525, \"Height\": 0.16, \"Whole_weight\": 1.46, \"Shucked_weight\": 0.6859999999999999, \"Viscera_weight\": 0.311, \"Shell_weight\": 0.405, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.53, \"Height\": 0.165, \"Whole_weight\": 1.2835, \"Shucked_weight\": 0.583, \"Viscera_weight\": 0.1255, \"Shell_weight\": 0.4, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.5, \"Height\": 0.155, \"Whole_weight\": 1.3765, \"Shucked_weight\": 0.6485, \"Viscera_weight\": 0.28800000000000003, \"Shell_weight\": 0.335, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.515, \"Height\": 0.2, \"Whole_weight\": 1.6465, \"Shucked_weight\": 0.7490000000000001, \"Viscera_weight\": 0.42200000000000004, \"Shell_weight\": 0.401, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.675, \"Diameter\": 0.515, \"Height\": 0.145, \"Whole_weight\": 1.265, \"Shucked_weight\": 0.6025, \"Viscera_weight\": 0.299, \"Shell_weight\": 0.325, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.685, \"Diameter\": 0.53, \"Height\": 0.17, \"Whole_weight\": 1.56, \"Shucked_weight\": 0.647, \"Viscera_weight\": 0.38299999999999995, \"Shell_weight\": 0.465, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.715, \"Diameter\": 0.52, \"Height\": 0.18, \"Whole_weight\": 1.6, \"Shucked_weight\": 0.708, \"Viscera_weight\": 0.3525, \"Shell_weight\": 0.445, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.735, \"Diameter\": 0.555, \"Height\": 0.22, \"Whole_weight\": 2.333, \"Shucked_weight\": 1.2395, \"Viscera_weight\": 0.3645, \"Shell_weight\": 0.6195, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.175, \"Diameter\": 0.125, \"Height\": 0.04, \"Whole_weight\": 0.027999999999999997, \"Shucked_weight\": 0.0095, \"Viscera_weight\": 0.008, \"Shell_weight\": 0.009000000000000001, \"Rings\": 4, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.285, \"Height\": 0.095, \"Whole_weight\": 0.226, \"Shucked_weight\": 0.1135, \"Viscera_weight\": 0.0515, \"Shell_weight\": 0.0675, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.395, \"Diameter\": 0.3, \"Height\": 0.09, \"Whole_weight\": 0.2855, \"Shucked_weight\": 0.1385, \"Viscera_weight\": 0.0625, \"Shell_weight\": 0.077, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.42, \"Diameter\": 0.325, \"Height\": 0.11, \"Whole_weight\": 0.325, \"Shucked_weight\": 0.1245, \"Viscera_weight\": 0.0755, \"Shell_weight\": 0.1025, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.455, \"Diameter\": 0.37, \"Height\": 0.11, \"Whole_weight\": 0.514, \"Shucked_weight\": 0.2385, \"Viscera_weight\": 0.1235, \"Shell_weight\": 0.126, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.495, \"Diameter\": 0.375, \"Height\": 0.115, \"Whole_weight\": 0.5755, \"Shucked_weight\": 0.31, \"Viscera_weight\": 0.1145, \"Shell_weight\": 0.1395, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.51, \"Diameter\": 0.375, \"Height\": 0.11, \"Whole_weight\": 0.5805, \"Shucked_weight\": 0.2865, \"Viscera_weight\": 0.11800000000000001, \"Shell_weight\": 0.14800000000000002, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.39, \"Height\": 0.14, \"Whole_weight\": 0.6779999999999999, \"Shucked_weight\": 0.341, \"Viscera_weight\": 0.1325, \"Shell_weight\": 0.11900000000000001, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.43, \"Height\": 0.155, \"Whole_weight\": 0.8035, \"Shucked_weight\": 0.409, \"Viscera_weight\": 0.14400000000000002, \"Shell_weight\": 0.228, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.555, \"Diameter\": 0.405, \"Height\": 0.12, \"Whole_weight\": 0.9129999999999999, \"Shucked_weight\": 0.4585, \"Viscera_weight\": 0.196, \"Shell_weight\": 0.2065, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.58, \"Diameter\": 0.45, \"Height\": 0.16, \"Whole_weight\": 0.8675, \"Shucked_weight\": 0.3935, \"Viscera_weight\": 0.221, \"Shell_weight\": 0.215, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.59, \"Diameter\": 0.465, \"Height\": 0.17, \"Whole_weight\": 1.0425, \"Shucked_weight\": 0.4635, \"Viscera_weight\": 0.24, \"Shell_weight\": 0.27, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.46, \"Height\": 0.18, \"Whole_weight\": 1.14, \"Shucked_weight\": 0.423, \"Viscera_weight\": 0.2575, \"Shell_weight\": 0.365, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.49, \"Height\": 0.17, \"Whole_weight\": 1.3475, \"Shucked_weight\": 0.7045, \"Viscera_weight\": 0.25, \"Shell_weight\": 0.3045, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.155, \"Whole_weight\": 1.0735, \"Shucked_weight\": 0.4375, \"Viscera_weight\": 0.2585, \"Shell_weight\": 0.31, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.19, \"Whole_weight\": 1.4335, \"Shucked_weight\": 0.7315, \"Viscera_weight\": 0.305, \"Shell_weight\": 0.3285, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.495, \"Height\": 0.2, \"Whole_weight\": 1.304, \"Shucked_weight\": 0.5795, \"Viscera_weight\": 0.3115, \"Shell_weight\": 0.371, \"Rings\": 14, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.46, \"Height\": 0.16, \"Whole_weight\": 0.9505, \"Shucked_weight\": 0.4915, \"Viscera_weight\": 0.2, \"Shell_weight\": 0.228, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.63, \"Diameter\": 0.515, \"Height\": 0.17, \"Whole_weight\": 1.385, \"Shucked_weight\": 0.6355, \"Viscera_weight\": 0.2955, \"Shell_weight\": 0.38, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.5, \"Height\": 0.17, \"Whole_weight\": 1.12, \"Shucked_weight\": 0.4955, \"Viscera_weight\": 0.2645, \"Shell_weight\": 0.32, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.64, \"Diameter\": 0.5, \"Height\": 0.17, \"Whole_weight\": 1.2645, \"Shucked_weight\": 0.565, \"Viscera_weight\": 0.3375, \"Shell_weight\": 0.315, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.655, \"Diameter\": 0.455, \"Height\": 0.17, \"Whole_weight\": 1.275, \"Shucked_weight\": 0.583, \"Viscera_weight\": 0.303, \"Shell_weight\": 0.33299999999999996, \"Rings\": 8, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.655, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.27, \"Shucked_weight\": 0.6035, \"Viscera_weight\": 0.262, \"Shell_weight\": 0.335, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.53, \"Height\": 0.175, \"Whole_weight\": 1.5830000000000002, \"Shucked_weight\": 0.7395, \"Viscera_weight\": 0.3505, \"Shell_weight\": 0.405, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.4355, \"Shucked_weight\": 0.643, \"Viscera_weight\": 0.345, \"Shell_weight\": 0.37, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.525, \"Height\": 0.195, \"Whole_weight\": 1.42, \"Shucked_weight\": 0.573, \"Viscera_weight\": 0.368, \"Shell_weight\": 0.3905, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.69, \"Diameter\": 0.53, \"Height\": 0.19, \"Whole_weight\": 1.5955, \"Shucked_weight\": 0.6779999999999999, \"Viscera_weight\": 0.331, \"Shell_weight\": 0.48, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.715, \"Diameter\": 0.525, \"Height\": 0.2, \"Whole_weight\": 1.89, \"Shucked_weight\": 0.95, \"Viscera_weight\": 0.436, \"Shell_weight\": 0.4305, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.735, \"Diameter\": 0.565, \"Height\": 0.225, \"Whole_weight\": 2.037, \"Shucked_weight\": 0.87, \"Viscera_weight\": 0.5145, \"Shell_weight\": 0.5675, \"Rings\": 13, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.27, \"Diameter\": 0.205, \"Height\": 0.05, \"Whole_weight\": 0.084, \"Shucked_weight\": 0.03, \"Viscera_weight\": 0.0185, \"Shell_weight\": 0.028999999999999998, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.285, \"Diameter\": 0.225, \"Height\": 0.07, \"Whole_weight\": 0.1005, \"Shucked_weight\": 0.0425, \"Viscera_weight\": 0.0185, \"Shell_weight\": 0.035, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.295, \"Diameter\": 0.22, \"Height\": 0.085, \"Whole_weight\": 0.1285, \"Shucked_weight\": 0.0585, \"Viscera_weight\": 0.027000000000000003, \"Shell_weight\": 0.0365, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.3, \"Diameter\": 0.225, \"Height\": 0.075, \"Whole_weight\": 0.1345, \"Shucked_weight\": 0.057, \"Viscera_weight\": 0.027999999999999997, \"Shell_weight\": 0.044000000000000004, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.3, \"Diameter\": 0.22, \"Height\": 0.065, \"Whole_weight\": 0.1195, \"Shucked_weight\": 0.052000000000000005, \"Viscera_weight\": 0.0155, \"Shell_weight\": 0.035, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.265, \"Height\": 0.085, \"Whole_weight\": 0.1895, \"Shucked_weight\": 0.0725, \"Viscera_weight\": 0.0515, \"Shell_weight\": 0.055, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.37, \"Diameter\": 0.275, \"Height\": 0.095, \"Whole_weight\": 0.257, \"Shucked_weight\": 0.1015, \"Viscera_weight\": 0.055, \"Shell_weight\": 0.0825, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.39, \"Diameter\": 0.29, \"Height\": 0.09, \"Whole_weight\": 0.2745, \"Shucked_weight\": 0.135, \"Viscera_weight\": 0.0455, \"Shell_weight\": 0.078, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.435, \"Diameter\": 0.325, \"Height\": 0.1, \"Whole_weight\": 0.342, \"Shucked_weight\": 0.1335, \"Viscera_weight\": 0.0835, \"Shell_weight\": 0.105, \"Rings\": 6, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.34, \"Height\": 0.105, \"Whole_weight\": 0.344, \"Shucked_weight\": 0.12300000000000001, \"Viscera_weight\": 0.081, \"Shell_weight\": 0.125, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.44, \"Diameter\": 0.32, \"Height\": 0.095, \"Whole_weight\": 0.3275, \"Shucked_weight\": 0.1495, \"Viscera_weight\": 0.059000000000000004, \"Shell_weight\": 0.1, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.445, \"Diameter\": 0.345, \"Height\": 0.12, \"Whole_weight\": 0.4035, \"Shucked_weight\": 0.16899999999999998, \"Viscera_weight\": 0.0825, \"Shell_weight\": 0.13, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.37, \"Height\": 0.115, \"Whole_weight\": 0.4075, \"Shucked_weight\": 0.1515, \"Viscera_weight\": 0.0935, \"Shell_weight\": 0.1455, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.355, \"Height\": 0.12, \"Whole_weight\": 0.4975, \"Shucked_weight\": 0.2375, \"Viscera_weight\": 0.099, \"Shell_weight\": 0.14, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.345, \"Height\": 0.12, \"Whole_weight\": 0.3685, \"Shucked_weight\": 0.1525, \"Viscera_weight\": 0.0615, \"Shell_weight\": 0.125, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.365, \"Height\": 0.105, \"Whole_weight\": 0.4175, \"Shucked_weight\": 0.1645, \"Viscera_weight\": 0.099, \"Shell_weight\": 0.127, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.335, \"Height\": 0.1, \"Whole_weight\": 0.4425, \"Shucked_weight\": 0.1895, \"Viscera_weight\": 0.086, \"Shell_weight\": 0.135, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.475, \"Diameter\": 0.35, \"Height\": 0.125, \"Whole_weight\": 0.4225, \"Shucked_weight\": 0.1905, \"Viscera_weight\": 0.079, \"Shell_weight\": 0.1355, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.485, \"Diameter\": 0.365, \"Height\": 0.125, \"Whole_weight\": 0.426, \"Shucked_weight\": 0.163, \"Viscera_weight\": 0.0965, \"Shell_weight\": 0.151, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.49, \"Diameter\": 0.39, \"Height\": 0.12, \"Whole_weight\": 0.511, \"Shucked_weight\": 0.2205, \"Viscera_weight\": 0.10300000000000001, \"Shell_weight\": 0.1745, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.515, \"Diameter\": 0.405, \"Height\": 0.13, \"Whole_weight\": 0.573, \"Shucked_weight\": 0.213, \"Viscera_weight\": 0.134, \"Shell_weight\": 0.195, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.52, \"Diameter\": 0.415, \"Height\": 0.14, \"Whole_weight\": 0.6385, \"Shucked_weight\": 0.2945, \"Viscera_weight\": 0.1405, \"Shell_weight\": 0.171, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.525, \"Diameter\": 0.405, \"Height\": 0.125, \"Whole_weight\": 0.657, \"Shucked_weight\": 0.2985, \"Viscera_weight\": 0.1505, \"Shell_weight\": 0.168, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.525, \"Diameter\": 0.425, \"Height\": 0.14, \"Whole_weight\": 0.8735, \"Shucked_weight\": 0.4205, \"Viscera_weight\": 0.182, \"Shell_weight\": 0.2225, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.425, \"Height\": 0.13, \"Whole_weight\": 0.7809999999999999, \"Shucked_weight\": 0.3905, \"Viscera_weight\": 0.2005, \"Shell_weight\": 0.215, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.42, \"Height\": 0.14, \"Whole_weight\": 0.6765, \"Shucked_weight\": 0.256, \"Viscera_weight\": 0.1855, \"Shell_weight\": 0.20800000000000002, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.53, \"Diameter\": 0.41, \"Height\": 0.125, \"Whole_weight\": 0.769, \"Shucked_weight\": 0.34600000000000003, \"Viscera_weight\": 0.17300000000000001, \"Shell_weight\": 0.215, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.53, \"Diameter\": 0.395, \"Height\": 0.125, \"Whole_weight\": 0.6235, \"Shucked_weight\": 0.2975, \"Viscera_weight\": 0.10800000000000001, \"Shell_weight\": 0.195, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.535, \"Diameter\": 0.405, \"Height\": 0.14, \"Whole_weight\": 0.7315, \"Shucked_weight\": 0.336, \"Viscera_weight\": 0.156, \"Shell_weight\": 0.19, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.535, \"Diameter\": 0.45, \"Height\": 0.155, \"Whole_weight\": 0.8075, \"Shucked_weight\": 0.3655, \"Viscera_weight\": 0.14800000000000002, \"Shell_weight\": 0.2595, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.545, \"Diameter\": 0.41, \"Height\": 0.14, \"Whole_weight\": 0.737, \"Shucked_weight\": 0.349, \"Viscera_weight\": 0.15, \"Shell_weight\": 0.212, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.545, \"Diameter\": 0.41, \"Height\": 0.125, \"Whole_weight\": 0.654, \"Shucked_weight\": 0.2945, \"Viscera_weight\": 0.1315, \"Shell_weight\": 0.205, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.415, \"Height\": 0.15, \"Whole_weight\": 0.7915, \"Shucked_weight\": 0.3535, \"Viscera_weight\": 0.17600000000000002, \"Shell_weight\": 0.23600000000000002, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.45, \"Height\": 0.14, \"Whole_weight\": 0.753, \"Shucked_weight\": 0.3445, \"Viscera_weight\": 0.1325, \"Shell_weight\": 0.24, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.55, \"Diameter\": 0.4, \"Height\": 0.135, \"Whole_weight\": 0.7170000000000001, \"Shucked_weight\": 0.3315, \"Viscera_weight\": 0.1495, \"Shell_weight\": 0.221, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.555, \"Diameter\": 0.43, \"Height\": 0.15, \"Whole_weight\": 0.7829999999999999, \"Shucked_weight\": 0.345, \"Viscera_weight\": 0.1755, \"Shell_weight\": 0.247, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.45, \"Height\": 0.145, \"Whole_weight\": 0.872, \"Shucked_weight\": 0.4675, \"Viscera_weight\": 0.18, \"Shell_weight\": 0.217, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.575, \"Diameter\": 0.44, \"Height\": 0.15, \"Whole_weight\": 0.983, \"Shucked_weight\": 0.486, \"Viscera_weight\": 0.215, \"Shell_weight\": 0.239, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.42, \"Height\": 0.155, \"Whole_weight\": 1.034, \"Shucked_weight\": 0.43700000000000006, \"Viscera_weight\": 0.2225, \"Shell_weight\": 0.32, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.585, \"Diameter\": 0.465, \"Height\": 0.145, \"Whole_weight\": 0.9855, \"Shucked_weight\": 0.4325, \"Viscera_weight\": 0.2145, \"Shell_weight\": 0.2845, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.585, \"Diameter\": 0.46, \"Height\": 0.14, \"Whole_weight\": 0.7635, \"Shucked_weight\": 0.326, \"Viscera_weight\": 0.153, \"Shell_weight\": 0.265, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.59, \"Diameter\": 0.465, \"Height\": 0.135, \"Whole_weight\": 0.9895, \"Shucked_weight\": 0.4235, \"Viscera_weight\": 0.19899999999999998, \"Shell_weight\": 0.28, \"Rings\": 8, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.595, \"Diameter\": 0.47, \"Height\": 0.135, \"Whole_weight\": 0.9365, \"Shucked_weight\": 0.434, \"Viscera_weight\": 0.184, \"Shell_weight\": 0.287, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.44, \"Height\": 0.135, \"Whole_weight\": 0.9640000000000001, \"Shucked_weight\": 0.5005, \"Viscera_weight\": 0.1715, \"Shell_weight\": 0.2575, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.46, \"Height\": 0.155, \"Whole_weight\": 1.0455, \"Shucked_weight\": 0.4565, \"Viscera_weight\": 0.24, \"Shell_weight\": 0.3085, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.595, \"Diameter\": 0.45, \"Height\": 0.165, \"Whole_weight\": 1.081, \"Shucked_weight\": 0.49, \"Viscera_weight\": 0.2525, \"Shell_weight\": 0.27899999999999997, \"Rings\": 12, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.6, \"Diameter\": 0.47, \"Height\": 0.16, \"Whole_weight\": 1.012, \"Shucked_weight\": 0.441, \"Viscera_weight\": 0.2015, \"Shell_weight\": 0.305, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.6, \"Diameter\": 0.5, \"Height\": 0.16, \"Whole_weight\": 1.122, \"Shucked_weight\": 0.5095, \"Viscera_weight\": 0.256, \"Shell_weight\": 0.309, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.49, \"Height\": 0.165, \"Whole_weight\": 1.1245, \"Shucked_weight\": 0.49200000000000005, \"Viscera_weight\": 0.222, \"Shell_weight\": 0.3555, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.605, \"Diameter\": 0.49, \"Height\": 0.15, \"Whole_weight\": 1.1345, \"Shucked_weight\": 0.4305, \"Viscera_weight\": 0.2525, \"Shell_weight\": 0.35, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.61, \"Diameter\": 0.45, \"Height\": 0.19, \"Whole_weight\": 1.0805, \"Shucked_weight\": 0.517, \"Viscera_weight\": 0.2495, \"Shell_weight\": 0.2935, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.61, \"Diameter\": 0.495, \"Height\": 0.165, \"Whole_weight\": 1.0835, \"Shucked_weight\": 0.4525, \"Viscera_weight\": 0.273, \"Shell_weight\": 0.317, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.47, \"Height\": 0.175, \"Whole_weight\": 1.242, \"Shucked_weight\": 0.5675, \"Viscera_weight\": 0.287, \"Shell_weight\": 0.317, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.5, \"Height\": 0.18, \"Whole_weight\": 1.3915, \"Shucked_weight\": 0.726, \"Viscera_weight\": 0.2795, \"Shell_weight\": 0.332, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.525, \"Height\": 0.155, \"Whole_weight\": 1.085, \"Shucked_weight\": 0.45399999999999996, \"Viscera_weight\": 0.1965, \"Shell_weight\": 0.35, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.62, \"Diameter\": 0.47, \"Height\": 0.155, \"Whole_weight\": 0.966, \"Shucked_weight\": 0.447, \"Viscera_weight\": 0.171, \"Shell_weight\": 0.284, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.62, \"Diameter\": 0.48, \"Height\": 0.165, \"Whole_weight\": 1.0855, \"Shucked_weight\": 0.48100000000000004, \"Viscera_weight\": 0.2575, \"Shell_weight\": 0.305, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.625, \"Diameter\": 0.485, \"Height\": 0.135, \"Whole_weight\": 1.3025, \"Shucked_weight\": 0.61, \"Viscera_weight\": 0.2675, \"Shell_weight\": 0.3605, \"Rings\": 14, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.625, \"Diameter\": 0.485, \"Height\": 0.16, \"Whole_weight\": 1.15, \"Shucked_weight\": 0.5255, \"Viscera_weight\": 0.257, \"Shell_weight\": 0.3315, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.63, \"Diameter\": 0.49, \"Height\": 0.17, \"Whole_weight\": 1.217, \"Shucked_weight\": 0.5515, \"Viscera_weight\": 0.212, \"Shell_weight\": 0.31, \"Rings\": 11, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.63, \"Diameter\": 0.505, \"Height\": 0.195, \"Whole_weight\": 1.306, \"Shucked_weight\": 0.516, \"Viscera_weight\": 0.3305, \"Shell_weight\": 0.375, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.64, \"Diameter\": 0.5, \"Height\": 0.175, \"Whole_weight\": 1.273, \"Shucked_weight\": 0.5065, \"Viscera_weight\": 0.2925, \"Shell_weight\": 0.405, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.645, \"Diameter\": 0.51, \"Height\": 0.19, \"Whole_weight\": 1.4865, \"Shucked_weight\": 0.6445, \"Viscera_weight\": 0.29600000000000004, \"Shell_weight\": 0.425, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.52, \"Height\": 0.17, \"Whole_weight\": 1.3655, \"Shucked_weight\": 0.6155, \"Viscera_weight\": 0.2885, \"Shell_weight\": 0.36, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.495, \"Height\": 0.17, \"Whole_weight\": 1.276, \"Shucked_weight\": 0.6215, \"Viscera_weight\": 0.2305, \"Shell_weight\": 0.39899999999999997, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.495, \"Height\": 0.16, \"Whole_weight\": 1.2075, \"Shucked_weight\": 0.55, \"Viscera_weight\": 0.2695, \"Shell_weight\": 0.32, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.52, \"Height\": 0.195, \"Whole_weight\": 1.281, \"Shucked_weight\": 0.5985, \"Viscera_weight\": 0.24600000000000002, \"Shell_weight\": 0.3825, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.525, \"Height\": 0.205, \"Whole_weight\": 1.4275, \"Shucked_weight\": 0.69, \"Viscera_weight\": 0.306, \"Shell_weight\": 0.4355, \"Rings\": 13, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.155, \"Shucked_weight\": 0.4955, \"Viscera_weight\": 0.2025, \"Shell_weight\": 0.385, \"Rings\": 12, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.65, \"Diameter\": 0.51, \"Height\": 0.175, \"Whole_weight\": 1.35, \"Shucked_weight\": 0.575, \"Viscera_weight\": 0.3155, \"Shell_weight\": 0.3885, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.65, \"Diameter\": 0.525, \"Height\": 0.19, \"Whole_weight\": 1.3685, \"Shucked_weight\": 0.5975, \"Viscera_weight\": 0.29600000000000004, \"Shell_weight\": 0.4, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.66, \"Diameter\": 0.53, \"Height\": 0.17, \"Whole_weight\": 1.431, \"Shucked_weight\": 0.622, \"Viscera_weight\": 0.309, \"Shell_weight\": 0.39799999999999996, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.66, \"Diameter\": 0.51, \"Height\": 0.18, \"Whole_weight\": 1.261, \"Shucked_weight\": 0.5, \"Viscera_weight\": 0.2335, \"Shell_weight\": 0.33899999999999997, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.665, \"Diameter\": 0.54, \"Height\": 0.195, \"Whole_weight\": 1.764, \"Shucked_weight\": 0.8505, \"Viscera_weight\": 0.3615, \"Shell_weight\": 0.47, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.51, \"Height\": 0.155, \"Whole_weight\": 1.278, \"Shucked_weight\": 0.5605, \"Viscera_weight\": 0.3045, \"Shell_weight\": 0.358, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.67, \"Diameter\": 0.54, \"Height\": 0.195, \"Whole_weight\": 1.217, \"Shucked_weight\": 0.532, \"Viscera_weight\": 0.2735, \"Shell_weight\": 0.3315, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.67, \"Diameter\": 0.54, \"Height\": 0.2, \"Whole_weight\": 1.46, \"Shucked_weight\": 0.6435, \"Viscera_weight\": 0.32799999999999996, \"Shell_weight\": 0.4165, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.535, \"Height\": 0.185, \"Whole_weight\": 1.5575, \"Shucked_weight\": 0.7035, \"Viscera_weight\": 0.402, \"Shell_weight\": 0.4, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.675, \"Diameter\": 0.51, \"Height\": 0.17, \"Whole_weight\": 1.527, \"Shucked_weight\": 0.809, \"Viscera_weight\": 0.318, \"Shell_weight\": 0.341, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.675, \"Diameter\": 0.53, \"Height\": 0.195, \"Whole_weight\": 1.4985, \"Shucked_weight\": 0.62, \"Viscera_weight\": 0.375, \"Shell_weight\": 0.425, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.685, \"Diameter\": 0.55, \"Height\": 0.19, \"Whole_weight\": 1.885, \"Shucked_weight\": 0.89, \"Viscera_weight\": 0.41, \"Shell_weight\": 0.4895, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.685, \"Diameter\": 0.535, \"Height\": 0.175, \"Whole_weight\": 1.432, \"Shucked_weight\": 0.637, \"Viscera_weight\": 0.247, \"Shell_weight\": 0.46, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.705, \"Diameter\": 0.55, \"Height\": 0.21, \"Whole_weight\": 1.4385, \"Shucked_weight\": 0.655, \"Viscera_weight\": 0.3255, \"Shell_weight\": 0.462, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.705, \"Diameter\": 0.53, \"Height\": 0.17, \"Whole_weight\": 1.564, \"Shucked_weight\": 0.612, \"Viscera_weight\": 0.39399999999999996, \"Shell_weight\": 0.44, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.71, \"Diameter\": 0.555, \"Height\": 0.175, \"Whole_weight\": 2.14, \"Shucked_weight\": 1.2455, \"Viscera_weight\": 0.3725, \"Shell_weight\": 0.434, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.725, \"Diameter\": 0.56, \"Height\": 0.185, \"Whole_weight\": 1.7919999999999998, \"Shucked_weight\": 0.873, \"Viscera_weight\": 0.36700000000000005, \"Shell_weight\": 0.435, \"Rings\": 11, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.78, \"Diameter\": 0.6, \"Height\": 0.21, \"Whole_weight\": 2.548, \"Shucked_weight\": 1.1945, \"Viscera_weight\": 0.5745, \"Shell_weight\": 0.6745, \"Rings\": 11, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.235, \"Diameter\": 0.13, \"Height\": 0.075, \"Whole_weight\": 0.1585, \"Shucked_weight\": 0.0685, \"Viscera_weight\": 0.037000000000000005, \"Shell_weight\": 0.0465, \"Rings\": 5, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.35, \"Diameter\": 0.25, \"Height\": 0.1, \"Whole_weight\": 0.4015, \"Shucked_weight\": 0.1725, \"Viscera_weight\": 0.063, \"Shell_weight\": 0.1255, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.36, \"Diameter\": 0.25, \"Height\": 0.115, \"Whole_weight\": 0.465, \"Shucked_weight\": 0.21, \"Viscera_weight\": 0.1055, \"Shell_weight\": 0.128, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.38, \"Diameter\": 0.28, \"Height\": 0.095, \"Whole_weight\": 0.2885, \"Shucked_weight\": 0.165, \"Viscera_weight\": 0.0435, \"Shell_weight\": 0.067, \"Rings\": 7, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.38, \"Diameter\": 0.32, \"Height\": 0.115, \"Whole_weight\": 0.6475, \"Shucked_weight\": 0.32299999999999995, \"Viscera_weight\": 0.1325, \"Shell_weight\": 0.16399999999999998, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.43, \"Diameter\": 0.31, \"Height\": 0.13, \"Whole_weight\": 0.6485, \"Shucked_weight\": 0.2735, \"Viscera_weight\": 0.163, \"Shell_weight\": 0.184, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.465, \"Diameter\": 0.36, \"Height\": 0.105, \"Whole_weight\": 0.452, \"Shucked_weight\": 0.22, \"Viscera_weight\": 0.159, \"Shell_weight\": 0.1035, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"I\", \"Length\": 0.47, \"Diameter\": 0.355, \"Height\": 0.12, \"Whole_weight\": 0.4915, \"Shucked_weight\": 0.1765, \"Viscera_weight\": 0.1125, \"Shell_weight\": 0.1325, \"Rings\": 9, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"F\", \"Length\": 0.485, \"Diameter\": 0.365, \"Height\": 0.15, \"Whole_weight\": 0.9145, \"Shucked_weight\": 0.4145, \"Viscera_weight\": 0.19899999999999998, \"Shell_weight\": 0.273, \"Rings\": 7, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.495, \"Diameter\": 0.375, \"Height\": 0.155, \"Whole_weight\": 0.976, \"Shucked_weight\": 0.45, \"Viscera_weight\": 0.2285, \"Shell_weight\": 0.2475, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.5, \"Diameter\": 0.395, \"Height\": 0.145, \"Whole_weight\": 0.7865, \"Shucked_weight\": 0.332, \"Viscera_weight\": 0.1815, \"Shell_weight\": 0.2455, \"Rings\": 8, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.505, \"Diameter\": 0.4, \"Height\": 0.15, \"Whole_weight\": 0.775, \"Shucked_weight\": 0.3445, \"Viscera_weight\": 0.157, \"Shell_weight\": 0.185, \"Rings\": 7, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"I\", \"Length\": 0.51, \"Diameter\": 0.375, \"Height\": 0.15, \"Whole_weight\": 0.8415, \"Shucked_weight\": 0.3845, \"Viscera_weight\": 0.156, \"Shell_weight\": 0.255, \"Rings\": 10, \"Male\": 0, \"Female\": 0, \"Infant\": 1}, {\"Sex\": \"M\", \"Length\": 0.51, \"Diameter\": 0.38, \"Height\": 0.135, \"Whole_weight\": 0.6809999999999999, \"Shucked_weight\": 0.3435, \"Viscera_weight\": 0.142, \"Shell_weight\": 0.17, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.515, \"Diameter\": 0.37, \"Height\": 0.115, \"Whole_weight\": 0.6145, \"Shucked_weight\": 0.3415, \"Viscera_weight\": 0.155, \"Shell_weight\": 0.146, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.55, \"Diameter\": 0.415, \"Height\": 0.18, \"Whole_weight\": 1.1655, \"Shucked_weight\": 0.502, \"Viscera_weight\": 0.301, \"Shell_weight\": 0.311, \"Rings\": 9, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"F\", \"Length\": 0.575, \"Diameter\": 0.42, \"Height\": 0.19, \"Whole_weight\": 1.764, \"Shucked_weight\": 0.914, \"Viscera_weight\": 0.377, \"Shell_weight\": 0.4095, \"Rings\": 10, \"Male\": 0, \"Female\": 1, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.605, \"Diameter\": 0.455, \"Height\": 0.16, \"Whole_weight\": 1.1215, \"Shucked_weight\": 0.5329999999999999, \"Viscera_weight\": 0.273, \"Shell_weight\": 0.271, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.505, \"Height\": 0.165, \"Whole_weight\": 1.167, \"Shucked_weight\": 0.4895, \"Viscera_weight\": 0.2955, \"Shell_weight\": 0.345, \"Rings\": 10, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.615, \"Diameter\": 0.475, \"Height\": 0.15, \"Whole_weight\": 1.0375, \"Shucked_weight\": 0.47600000000000003, \"Viscera_weight\": 0.2325, \"Shell_weight\": 0.28300000000000003, \"Rings\": 9, \"Male\": 1, \"Female\": 0, \"Infant\": 0}, {\"Sex\": \"M\", \"Length\": 0.625, \"Diameter\": 0.48, \"Height\": 0.18, \"Whole_weight\": 1.2229999999999999, \"Shucked_weight\": 0.565, \"Viscera_weight\": 0.2975, \"Shell_weight\": 0.3375, \"Rings\": 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment