diff --git a/README.md b/README.md new file mode 100644 index 0000000..5dff31c --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# XAI in de praktijk + +Deze XAI workshop is ontwikkeld in het kader van een intern project binnen het RIG om meer ervaring te krijgen over XAI technieken, en om deze kennis te kunenn delen. +Het doel van de workshop is om te oefenen met XAI-technieken in de praktijk. +Als basis is de structuur van het [boek](https://ema.drwhy.ai/) van Biecek and Burzykowski gebruikt. + +Deze repo bevat verschillende scripts waarin de verschillende XAI-technieken uit elkaar gehouden worden. In de notebook zijn al deze scripts gecombineerd. + +De notebook bevat begeleidende tekst en kan op zichzelf doorlopen. + +De requirements file bevat informatie over de libraries die benodigd zijn voor het uitvoeren van de scripts. Om dit te doen, voer het volgende commando uit: +``` +pip install -r requirements.txt +``` diff --git a/cat_image.jpg b/data/cat_image.jpg similarity index 100% rename from cat_image.jpg rename to data/cat_image.jpg diff --git a/lime_images.py b/lime_images.py index 63f5bff..2996481 100644 --- a/lime_images.py +++ b/lime_images.py @@ -1,17 +1,19 @@ +import os + import numpy as np import skimage +from lime import lime_image +from matplotlib import pyplot as plt from skimage import io, transform +from skimage.segmentation import mark_boundaries from tensorflow.keras.applications import inception_v3 as inc_net from tensorflow.keras.applications.imagenet_utils import decode_predictions -from lime import lime_image -from skimage.segmentation import mark_boundaries -from matplotlib import pyplot as plt # Load the inception V3 model inet_model = inc_net.InceptionV3() # Read the image and transform it into an image that can be read by the inception V3 model -image = skimage.io.imread('cat_image.jpg') +image = skimage.io.imread(os.path.join('data', 'cat_image.jpg')) image = skimage.transform.resize(image, (299, 299)) image = (image - 0.5) * 2 image = np.expand_dims(image, axis=0) diff --git a/requirements.txt b/requirements.txt index bb82226..c014f88 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,4 +9,3 @@ dalex==1.3.0 alibi==0.6.0 tensorflow==2.5.1 scikit_learn==0.24.2 -scikit_image==0.18.2 diff --git a/workshop.ipynb b/workshop.ipynb index 0c84963..25b2748 100644 --- a/workshop.ipynb +++ b/workshop.ipynb @@ -85,30 +85,30 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 1, "id": "96d26698", "metadata": {}, "outputs": [], "source": [ - "import dalex as dx\n", - "import numpy as np\n", - "import seaborn as sns\n", - "\n", - "sns.set(rc={'figure.figsize': (8, 8)})\n", + "import itertools\n", + "import random\n", + "from collections import defaultdict\n", + "from random import sample\n", "\n", + "import dalex as dx\n", "import matplotlib.pyplot as plt\n", + "import numpy as np\n", "import pandas as pd\n", + "import seaborn as sns\n", + "from lime.lime_tabular import LimeTabularExplainer\n", "from sklearn.datasets import fetch_california_housing\n", - "from sklearn.ensemble import RandomForestRegressor\n", + "from sklearn.ensemble import RandomForestRegressor, RandomForestClassifier\n", + "from sklearn.inspection import plot_partial_dependence\n", "from sklearn.model_selection import train_test_split\n", "from tqdm import tqdm\n", - "from random import sample\n", - "import random\n", - "from collections import defaultdict\n", - "from sklearn.inspection import plot_partial_dependence\n", - "from lime.lime_tabular import LimeTabularExplainer\n", "\n", - "import itertools" + "np.random.seed(1)\n", + "sns.set(rc={'figure.figsize': (8, 8)})" ] }, { @@ -121,7 +121,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 2, "id": "80d09517", "metadata": {}, "outputs": [], @@ -132,7 +132,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 3, "id": "a66ae765", "metadata": {}, "outputs": [ @@ -167,7 +167,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 4, "id": "d345a086", "metadata": {}, "outputs": [ @@ -198,7 +198,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 5, "id": "b5411e26", "metadata": {}, "outputs": [ @@ -221,7 +221,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 6, "id": "d035599f", "metadata": {}, "outputs": [ @@ -252,7 +252,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 7, "id": "4382e778", "metadata": {}, "outputs": [ @@ -283,7 +283,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 8, "id": "3e1d9315", "metadata": {}, "outputs": [ @@ -305,7 +305,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 9, "id": "3e38b9cc", "metadata": {}, "outputs": [ @@ -327,7 +327,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 10, "id": "cdb72af8", "metadata": {}, "outputs": [ @@ -357,7 +357,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 11, "id": "d809d9e4", "metadata": {}, "outputs": [ @@ -393,7 +393,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 12, "id": "5f657747", "metadata": {}, "outputs": [], @@ -406,7 +406,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 13, "id": "f98f4e7e", "metadata": {}, "outputs": [], @@ -417,7 +417,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 14, "id": "4766c9be", "metadata": {}, "outputs": [], @@ -428,7 +428,7 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 15, "id": "c2e5ff83", "metadata": {}, "outputs": [ @@ -487,7 +487,7 @@ "9463 -123.73 " ] }, - "execution_count": 20, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } @@ -498,7 +498,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 16, "id": "ccfea8dc", "metadata": {}, "outputs": [ @@ -508,7 +508,7 @@ "1.65" ] }, - "execution_count": 21, + "execution_count": 16, "metadata": {}, "output_type": "execute_result" } @@ -541,7 +541,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 17, "id": "48528c21", "metadata": {}, "outputs": [ @@ -556,7 +556,7 @@ " -> target variable : 16494 values\n", " -> model_class : sklearn.ensemble._forest.RandomForestRegressor (default)\n", " -> label : Not specified, model's class short name will be used. (default)\n", - " -> predict function : will be used (default)\n", + " -> predict function : will be used (default)\n", " -> predict function : Accepts pandas.DataFrame and numpy.ndarray.\n", " -> predicted values : min = 0.411, mean = 2.08, max = 5.0\n", " -> model type : regression will be used (default)\n", @@ -572,27 +572,6 @@ "exp = dx.Explainer(model, X_train, y_train)" ] }, - { - "cell_type": "code", - "execution_count": 23, - "id": "19137675", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "RandomForestRegressor(random_state=0)" - ] - }, - "execution_count": 23, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "model" - ] - }, { "cell_type": "markdown", "id": "e5602021", @@ -606,7 +585,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 18, "id": "e4506d52", "metadata": {}, "outputs": [ @@ -918,9 +897,9 @@ } }, "text/html": [ - "
\n", - "
\n", + "
\n", " \n", " \n", " " @@ -76302,31 +76279,44 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 32, + "id": "f72fef2b", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "\n", + "import numpy as np\n", + "import skimage\n", + "from lime import lime_image\n", + "from matplotlib import pyplot as plt\n", + "from skimage import io, transform\n", + "from skimage.segmentation import mark_boundaries\n", + "from tensorflow.keras.applications import inception_v3 as inc_net\n", + "from tensorflow.keras.applications.imagenet_utils import decode_predictions" + ] + }, + { + "cell_type": "code", + "execution_count": 33, "id": "c9745ef2", "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - "('n02123045', 'tabby', 0.81980556)\n", - "('n02123159', 'tiger_cat', 0.05402075)\n", - "('n03482405', 'hamper', 0.021270882)\n", - "('n02123394', 'Persian_cat', 0.006241919)\n", - "('n02124075', 'Egyptian_cat', 0.0056995233)\n" + "ename": "NameError", + "evalue": "name 'img' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m~\\AppData\\Local\\Temp/ipykernel_14384/2495336362.py\u001b[0m in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[0minet_model\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0minc_net\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mInceptionV3\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[0mimage\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mskimage\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mio\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mimread\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mos\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mpath\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mjoin\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'data'\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;34m'cat_image.jpg'\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[0mimg\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mskimage\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mtransform\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mresize\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mimg\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;33m(\u001b[0m\u001b[1;36m299\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;36m299\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 4\u001b[0m \u001b[0mimg\u001b[0m \u001b[1;33m=\u001b[0m \u001b[1;33m(\u001b[0m\u001b[0mimg\u001b[0m \u001b[1;33m-\u001b[0m \u001b[1;36m0.5\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;33m*\u001b[0m \u001b[1;36m2\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 5\u001b[0m \u001b[0mimg\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mexpand_dims\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mimg\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0maxis\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;36m0\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mNameError\u001b[0m: name 'img' is not defined" ] } ], "source": [ - "import numpy as np\n", - "import skimage\n", - "from skimage import io, transform\n", - "from tensorflow.keras.applications import inception_v3 as inc_net\n", - "from tensorflow.keras.applications.imagenet_utils import decode_predictions\n", - "\n", "inet_model = inc_net.InceptionV3()\n", - "img = skimage.io.imread('cat_image.jpg')\n", + "image = skimage.io.imread(os.path.join('data', 'cat_image.jpg'))\n", "img = skimage.transform.resize(img, (299, 299))\n", "img = (img - 0.5) * 2\n", "img = np.expand_dims(img, axis=0)\n", @@ -76337,54 +76327,10 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": null, "id": "2b7817ba", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "127186af29a14e3f860a2dba93a77cf8", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - " 0%| | 0/500 [00:00" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "from lime import lime_image\n", "from skimage.segmentation import mark_boundaries\n", @@ -76429,113310 +76375,224 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": null, "id": "a28b1196", "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Calculating ceteris paribus: 100%|██████████| 8/8 [00:00<00:00, 12.61it/s]\n" - ] - } - ], + "outputs": [], "source": [ "cp_sample = exp.predict_profile(X_test_sample)" ] }, { "cell_type": "code", - "execution_count": 40, + "execution_count": null, "id": "c690fa4b", "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
MedIncHouseAgeAveRoomsAveBedrmsPopulationAveOccupLatitudeLongitude_original__yhat__vname__ids__label_
94630.49990032.05.563381.06338380.02.67605639.44-123.73002.700.72977MedInc9463RandomForestRegressor
94630.64490232.05.563381.06338380.02.67605639.44-123.73002.700.72662MedInc9463RandomForestRegressor
94630.78990432.05.563381.06338380.02.67605639.44-123.73002.700.72662MedInc9463RandomForestRegressor
94630.93490632.05.563381.06338380.02.67605639.44-123.73002.700.72446MedInc9463RandomForestRegressor
94631.07990832.05.563381.06338380.02.67605639.44-123.73002.700.71661MedInc9463RandomForestRegressor
..........................................
94632.70000032.05.563381.06338380.02.67605639.44-114.7116-123.731.00706Longitude9463RandomForestRegressor
94632.70000032.05.563381.06338380.02.67605639.44-114.6112-123.731.00706Longitude9463RandomForestRegressor
94632.70000032.05.563381.06338380.02.67605639.44-114.5108-123.731.00706Longitude9463RandomForestRegressor
94632.70000032.05.563381.06338380.02.67605639.44-114.4104-123.731.00706Longitude9463RandomForestRegressor
94632.70000032.05.563381.06338380.02.67605639.44-114.3100-123.731.00706Longitude9463RandomForestRegressor
\n", - "

816 rows × 13 columns

\n", - "
" - ], - "text/plain": [ - " MedInc HouseAge AveRooms AveBedrms Population AveOccup Latitude \\\n", - "9463 0.499900 32.0 5.56338 1.06338 380.0 2.676056 39.44 \n", - "9463 0.644902 32.0 5.56338 1.06338 380.0 2.676056 39.44 \n", - "9463 0.789904 32.0 5.56338 1.06338 380.0 2.676056 39.44 \n", - "9463 0.934906 32.0 5.56338 1.06338 380.0 2.676056 39.44 \n", - "9463 1.079908 32.0 5.56338 1.06338 380.0 2.676056 39.44 \n", - "... ... ... ... ... ... ... ... \n", - "9463 2.700000 32.0 5.56338 1.06338 380.0 2.676056 39.44 \n", - "9463 2.700000 32.0 5.56338 1.06338 380.0 2.676056 39.44 \n", - "9463 2.700000 32.0 5.56338 1.06338 380.0 2.676056 39.44 \n", - "9463 2.700000 32.0 5.56338 1.06338 380.0 2.676056 39.44 \n", - "9463 2.700000 32.0 5.56338 1.06338 380.0 2.676056 39.44 \n", - "\n", - " Longitude _original_ _yhat_ _vname_ _ids_ _label_ \n", - "9463 -123.7300 2.70 0.72977 MedInc 9463 RandomForestRegressor \n", - "9463 -123.7300 2.70 0.72662 MedInc 9463 RandomForestRegressor \n", - "9463 -123.7300 2.70 0.72662 MedInc 9463 RandomForestRegressor \n", - "9463 -123.7300 2.70 0.72446 MedInc 9463 RandomForestRegressor \n", - "9463 -123.7300 2.70 0.71661 MedInc 9463 RandomForestRegressor \n", - "... ... ... ... ... ... ... \n", - "9463 -114.7116 -123.73 1.00706 Longitude 9463 RandomForestRegressor \n", - "9463 -114.6112 -123.73 1.00706 Longitude 9463 RandomForestRegressor \n", - "9463 -114.5108 -123.73 1.00706 Longitude 9463 RandomForestRegressor \n", - "9463 -114.4104 -123.73 1.00706 Longitude 9463 RandomForestRegressor \n", - "9463 -114.3100 -123.73 1.00706 Longitude 9463 RandomForestRegressor \n", - "\n", - "[816 rows x 13 columns]" - ] - }, - "execution_count": 40, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "cp_sample.result" ] }, { "cell_type": "code", - "execution_count": 41, + "execution_count": null, "id": "e7aa6bf5", "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "displaylogo": false, - "modeBarButtonsToRemove": [ - "sendDataToCloud", - "lasso2d", - "autoScale2d", - "select2d", - "zoom2d", - "pan2d", - "zoomIn2d", - "zoomOut2d", - "resetScale2d", - "toggleSpikelines", - "hoverCompareCartesian", - "hoverClosestCartesian" - ], - "plotlyServerURL": "https://plot.ly", - "staticPlot": false, - "toImageButtonOptions": { - "height": null, - "width": null - } - }, - "data": [ - { - "customdata": [ - [ - "
id: 9463
prediction: 0.73
MedInc: 0.4999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.727
MedInc: 0.644902

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.727
MedInc: 0.7899039999999999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.724
MedInc: 0.934906

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.717
MedInc: 1.079908

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.731
MedInc: 1.22491

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.748
MedInc: 1.369912

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.747
MedInc: 1.5149139999999999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.747
MedInc: 1.659916

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.745
MedInc: 1.804918

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.813
MedInc: 1.9499199999999999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.826
MedInc: 2.094922

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.839
MedInc: 2.2399240000000002

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.908
MedInc: 2.384926

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.907
MedInc: 2.529928

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.883
MedInc: 2.67493

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
MedInc: 2.7

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.908
MedInc: 2.8199319999999997

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.994
MedInc: 2.9649339999999995

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.175
MedInc: 3.1099360000000003

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.118
MedInc: 3.254938

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.111
MedInc: 3.39994

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.102
MedInc: 3.544942

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.119
MedInc: 3.6899439999999997

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.143
MedInc: 3.8349459999999995

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.235
MedInc: 3.9799480000000003

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.499
MedInc: 4.12495

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.705
MedInc: 4.269952

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.771
MedInc: 4.414954

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.811
MedInc: 4.559956

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.863
MedInc: 4.704958

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.849
MedInc: 4.84996

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.938
MedInc: 4.994962

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.497
MedInc: 5.139964

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.622
MedInc: 5.284966

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.656
MedInc: 5.429968

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.666
MedInc: 5.5749699999999995

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.794
MedInc: 5.719972

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.04
MedInc: 5.864974

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.117
MedInc: 6.009976

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.247
MedInc: 6.154978

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.438
MedInc: 6.29998

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.458
MedInc: 6.4449819999999995

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.491
MedInc: 6.589984

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.524
MedInc: 6.734986

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.738
MedInc: 6.879988

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.786
MedInc: 7.02499

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.824
MedInc: 7.169992

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.792
MedInc: 7.3149939999999996

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.764
MedInc: 7.459996

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.845
MedInc: 7.604998

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.928
MedInc: 7.75

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 4.238
MedInc: 7.895002

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 4.225
MedInc: 8.040004

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 4.212
MedInc: 8.185006

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 4.138
MedInc: 8.330008

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 4.03
MedInc: 8.47501

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 4.033
MedInc: 8.620012

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 4.029
MedInc: 8.765013999999999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.925
MedInc: 8.910016

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.706
MedInc: 9.055018

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.635
MedInc: 9.20002

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.626
MedInc: 9.345022

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.619
MedInc: 9.490024

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.602
MedInc: 9.635026

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.672
MedInc: 9.780028

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.675
MedInc: 9.92503

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.659
MedInc: 10.070032

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.711
MedInc: 10.215034

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.718
MedInc: 10.360036

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.74
MedInc: 10.505037999999999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 10.650039999999999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 10.795042

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 10.940044

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 11.085046

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 11.230048

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 11.37505

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 11.520052

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 11.665054

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 11.810056

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 11.955058

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 12.10006

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 12.245061999999999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 12.390063999999999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 12.535065999999999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 12.680068

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 12.82507

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 12.970072

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 13.115074

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 13.260076

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 13.405078

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 13.55008

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 13.695082

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 13.840084

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 13.985085999999999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 14.130087999999999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 14.275089999999999

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 14.420092

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 14.565094

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 14.710096

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 14.855098

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 3.736
MedInc: 15.0001

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#46bac2", - "dash": "solid", - "width": 2 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 1, - "orientation": "v", - "showlegend": true, - "type": "scatter", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.7, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x7", - "y": [ - 0.7297699999999999, - 0.72662, - 0.72662, - 0.72446, - 0.7166100000000002, - 0.7311500000000002, - 0.7482700000000002, - 0.7470700000000002, - 0.7473900000000002, - 0.7448500000000001, - 0.8130700000000002, - 0.8264200000000003, - 0.8388600000000003, - 0.9081200000000003, - 0.9074800000000001, - 0.8831800000000001, - 0.8860800000000002, - 0.9084900000000001, - 0.9942500000000001, - 1.1751600000000004, - 1.1179800000000002, - 1.1107099999999999, - 1.10211, - 1.1185800000000001, - 1.14277, - 1.2352399999999994, - 1.498609999999999, - 1.7046900000000003, - 1.7708200000000005, - 1.8109500000000005, - 1.8631800000000007, - 1.8494700000000008, - 1.9383900000000005, - 2.4972499999999984, - 2.622409999999998, - 2.6555799999999983, - 2.6661599999999983, - 2.7942199999999984, - 3.039939999999999, - 3.1165901, - 3.2468604, - 3.4379204000000003, - 3.4577103, - 3.4905403, - 3.5238305999999993, - 3.7377905999999994, - 3.7860109, - 3.8235011, - 3.7923210999999992, - 3.7635011000000005, - 3.845321299999999, - 3.9276813999999973, - 4.237832199999999, - 4.225492099999999, - 4.212021999999999, - 4.138042099999999, - 4.0303122, - 4.0331926, - 4.028692599999999, - 3.9254326999999996, - 3.7058426999999994, - 3.6347728999999993, - 3.626162799999999, - 3.6192827999999992, - 3.6019825999999995, - 3.6722232999999993, - 3.6752833999999996, - 3.6587132, - 3.7107135999999996, - 3.7181136999999995, - 3.7401637999999995, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138, - 3.7364138 - ], - "yaxis": "y7" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 1.015
HouseAge: 1.0

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 1.51

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 2.02

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 2.5300000000000002

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 3.04

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 3.55

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 4.0600000000000005

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 4.57

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 5.08

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 5.59

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 6.1

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 6.61

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.017
HouseAge: 7.12

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.017
HouseAge: 7.63

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.017
HouseAge: 8.14

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.017
HouseAge: 8.65

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.017
HouseAge: 9.16

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 9.67

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
HouseAge: 10.18

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.021
HouseAge: 10.69

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.021
HouseAge: 11.2

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
HouseAge: 11.71

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
HouseAge: 12.22

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.998
HouseAge: 12.73

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.995
HouseAge: 13.24

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.983
HouseAge: 13.75

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.982
HouseAge: 14.26

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.982
HouseAge: 14.77

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.982
HouseAge: 15.280000000000001

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.987
HouseAge: 15.790000000000001

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.993
HouseAge: 16.3

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.999
HouseAge: 16.810000000000002

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.999
HouseAge: 17.32

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.99
HouseAge: 17.830000000000002

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.988
HouseAge: 18.34

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.954
HouseAge: 18.85

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.953
HouseAge: 19.36

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.955
HouseAge: 19.87

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.955
HouseAge: 20.38

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.95
HouseAge: 20.89

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.954
HouseAge: 21.4

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.952
HouseAge: 21.91

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.952
HouseAge: 22.42

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.924
HouseAge: 22.93

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.924
HouseAge: 23.44

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.921
HouseAge: 23.95

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.921
HouseAge: 24.46

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.907
HouseAge: 24.97

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.907
HouseAge: 25.48

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.905
HouseAge: 25.990000000000002

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.903
HouseAge: 26.5

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.905
HouseAge: 27.01

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.909
HouseAge: 27.52

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.909
HouseAge: 28.03

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.89
HouseAge: 28.54

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.885
HouseAge: 29.05

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.883
HouseAge: 29.560000000000002

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.883
HouseAge: 30.07

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.883
HouseAge: 30.580000000000002

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.885
HouseAge: 31.09

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
HouseAge: 31.6

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
HouseAge: 32.0

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.887
HouseAge: 32.11

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
HouseAge: 32.620000000000005

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
HouseAge: 33.13

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
HouseAge: 33.64

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
HouseAge: 34.15

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
HouseAge: 34.660000000000004

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
HouseAge: 35.17

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.885
HouseAge: 35.68

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.885
HouseAge: 36.19

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.877
HouseAge: 36.7

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.877
HouseAge: 37.21

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.877
HouseAge: 37.72

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.877
HouseAge: 38.230000000000004

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.882
HouseAge: 38.74

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.879
HouseAge: 39.25

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.879
HouseAge: 39.76

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.879
HouseAge: 40.27

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.883
HouseAge: 40.78

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.881
HouseAge: 41.29

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.881
HouseAge: 41.8

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.88
HouseAge: 42.31

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.883
HouseAge: 42.82

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.883
HouseAge: 43.33

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.883
HouseAge: 43.84

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.887
HouseAge: 44.35

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.887
HouseAge: 44.86

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.893
HouseAge: 45.37

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.9
HouseAge: 45.88

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.912
HouseAge: 46.39

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.912
HouseAge: 46.9

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.912
HouseAge: 47.410000000000004

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.936
HouseAge: 47.92

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.94
HouseAge: 48.43

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.982
HouseAge: 48.94

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.991
HouseAge: 49.45

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.047
HouseAge: 49.96

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.047
HouseAge: 50.47

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.08
HouseAge: 50.980000000000004

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.08
HouseAge: 51.49

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.099
HouseAge: 52.0

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#46bac2", - "dash": "solid", - "width": 2 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 1, - 1.51, - 2.02, - 2.5300000000000002, - 3.04, - 3.55, - 4.0600000000000005, - 4.57, - 5.08, - 5.59, - 6.1, - 6.61, - 7.12, - 7.63, - 8.14, - 8.65, - 9.16, - 9.67, - 10.18, - 10.69, - 11.2, - 11.71, - 12.22, - 12.73, - 13.24, - 13.75, - 14.26, - 14.77, - 15.280000000000001, - 15.790000000000001, - 16.3, - 16.810000000000002, - 17.32, - 17.830000000000002, - 18.34, - 18.85, - 19.36, - 19.87, - 20.38, - 20.89, - 21.4, - 21.91, - 22.42, - 22.93, - 23.44, - 23.95, - 24.46, - 24.97, - 25.48, - 25.990000000000002, - 26.5, - 27.01, - 27.52, - 28.03, - 28.54, - 29.05, - 29.560000000000002, - 30.07, - 30.580000000000002, - 31.09, - 31.6, - 32, - 32.11, - 32.620000000000005, - 33.13, - 33.64, - 34.15, - 34.660000000000004, - 35.17, - 35.68, - 36.19, - 36.7, - 37.21, - 37.72, - 38.230000000000004, - 38.74, - 39.25, - 39.76, - 40.27, - 40.78, - 41.29, - 41.8, - 42.31, - 42.82, - 43.33, - 43.84, - 44.35, - 44.86, - 45.37, - 45.88, - 46.39, - 46.9, - 47.410000000000004, - 47.92, - 48.43, - 48.94, - 49.45, - 49.96, - 50.47, - 50.980000000000004, - 51.49, - 52 - ], - "xaxis": "x8", - "y": [ - 1.0148300000000001, - 1.0148300000000001, - 1.0148300000000001, - 1.0148300000000001, - 1.0148300000000001, - 1.0148300000000001, - 1.0148300000000001, - 1.0148300000000001, - 1.0148300000000001, - 1.0148300000000001, - 1.0148300000000001, - 1.0148300000000001, - 1.01697, - 1.01697, - 1.01697, - 1.01697, - 1.01697, - 1.01479, - 1.01479, - 1.0208199999999998, - 1.0208199999999998, - 1.00671, - 1.00671, - 0.99761, - 0.99489, - 0.9834700000000001, - 0.98179, - 0.98179, - 0.98179, - 0.98694, - 0.99299, - 0.9992399999999999, - 0.9992399999999999, - 0.9898800000000001, - 0.9881700000000002, - 0.9541000000000003, - 0.95293, - 0.95459, - 0.95459, - 0.9502700000000002, - 0.9537799999999999, - 0.9517600000000002, - 0.9517600000000002, - 0.9244700000000003, - 0.9241900000000001, - 0.9212100000000002, - 0.9212100000000002, - 0.90658, - 0.90657, - 0.90455, - 0.90335, - 0.90527, - 0.9087300000000001, - 0.9085200000000002, - 0.8899400000000002, - 0.8850400000000002, - 0.8825600000000001, - 0.8825600000000001, - 0.8825600000000001, - 0.8846500000000002, - 0.8860800000000002, - 0.8860800000000002, - 0.8869000000000001, - 0.8856600000000001, - 0.8856600000000001, - 0.8856600000000001, - 0.88602, - 0.88602, - 0.88602, - 0.88452, - 0.88452, - 0.8774200000000001, - 0.8774200000000001, - 0.8774200000000001, - 0.8774200000000001, - 0.8816000000000002, - 0.8794900000000001, - 0.8794900000000001, - 0.8794900000000001, - 0.88278, - 0.8806, - 0.8806, - 0.8803300000000001, - 0.8832700000000001, - 0.8832700000000001, - 0.8832700000000001, - 0.8871800000000002, - 0.8871800000000002, - 0.8925700000000002, - 0.9002900000000001, - 0.9121700000000001, - 0.9121700000000001, - 0.9121700000000001, - 0.9356800000000001, - 0.9395800000000001, - 0.9816800000000003, - 0.9914300000000003, - 1.0466100000000003, - 1.0466100000000003, - 1.0799200000000004, - 1.0799200000000004, - 1.0992600000000003 - ], - "yaxis": "y8" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 1.722
AveRooms: 0.8461538461538461

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.722
AveRooms: 1.251025641025641

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.722
AveRooms: 1.6558974358974359

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.722
AveRooms: 2.060769230769231

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.722
AveRooms: 2.4656410256410255

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.642
AveRooms: 2.8705128205128205

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.689
AveRooms: 3.2753846153846156

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.623
AveRooms: 3.68025641025641

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.409
AveRooms: 4.085128205128205

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.072
AveRooms: 4.49

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.99
AveRooms: 4.894871794871794

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.918
AveRooms: 5.299743589743589

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
AveRooms: 5.563380281690141

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.895
AveRooms: 5.704615384615384

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
AveRooms: 6.1094871794871795

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.883
AveRooms: 6.514358974358974

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
AveRooms: 6.919230769230769

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
AveRooms: 7.324102564102564

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.89
AveRooms: 7.728974358974359

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.888
AveRooms: 8.133846153846154

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.888
AveRooms: 8.538717948717949

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.888
AveRooms: 8.943589743589744

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.885
AveRooms: 9.348461538461539

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.873
AveRooms: 9.753333333333334

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.873
AveRooms: 10.158205128205129

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.873
AveRooms: 10.563076923076924

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.867
AveRooms: 10.967948717948719

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.867
AveRooms: 11.372820512820514

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 11.777692307692307

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 12.182564102564102

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 12.587435897435897

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 12.992307692307692

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 13.397179487179487

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 13.802051282051282

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 14.206923076923077

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 14.611794871794872

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 15.016666666666667

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 15.421538461538463

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 15.826410256410258

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 16.23128205128205

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 16.636153846153846

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 17.04102564102564

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 17.445897435897436

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 17.85076923076923

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 18.255641025641026

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 18.66051282051282

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 19.065384615384616

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 19.47025641025641

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 19.875128205128206

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 20.28

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 20.684871794871796

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 21.08974358974359

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 21.494615384615386

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 21.89948717948718

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 22.304358974358976

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 22.709230769230768

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 23.114102564102563

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 23.518974358974358

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 23.923846153846153

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 24.328717948717948

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 24.733589743589743

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 25.138461538461538

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 25.543333333333333

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 25.948205128205128

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 26.353076923076923

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 26.757948717948718

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 27.162820512820513

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 27.567692307692308

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 27.972564102564103

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 28.3774358974359

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 28.782307692307693

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 29.18717948717949

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 29.592051282051283

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 29.99692307692308

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 30.401794871794873

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 30.80666666666667

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 31.21153846153846

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 31.616410256410255

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 32.02128205128205

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 32.426153846153845

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 32.83102564102564

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 33.235897435897435

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 33.64076923076923

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 34.045641025641025

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 34.45051282051282

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 34.855384615384615

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 35.26025641025641

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 35.665128205128205

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 36.07

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 36.474871794871795

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 36.87974358974359

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 37.284615384615385

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 37.68948717948718

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 38.094358974358975

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 38.49923076923077

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 38.904102564102566

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 39.30897435897436

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 39.713846153846156

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 40.11871794871795

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 40.523589743589746

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 40.92846153846154

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveRooms: 41.333333333333336

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#46bac2", - "dash": "solid", - "width": 2 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 0.8461538461538461, - 1.251025641025641, - 1.6558974358974359, - 2.060769230769231, - 2.4656410256410255, - 2.8705128205128205, - 3.2753846153846156, - 3.68025641025641, - 4.085128205128205, - 4.49, - 4.894871794871794, - 5.299743589743589, - 5.563380281690141, - 5.704615384615384, - 6.1094871794871795, - 6.514358974358974, - 6.919230769230769, - 7.324102564102564, - 7.728974358974359, - 8.133846153846154, - 8.538717948717949, - 8.943589743589744, - 9.348461538461539, - 9.753333333333334, - 10.158205128205129, - 10.563076923076924, - 10.967948717948719, - 11.372820512820514, - 11.777692307692307, - 12.182564102564102, - 12.587435897435897, - 12.992307692307692, - 13.397179487179487, - 13.802051282051282, - 14.206923076923077, - 14.611794871794872, - 15.016666666666667, - 15.421538461538463, - 15.826410256410258, - 16.23128205128205, - 16.636153846153846, - 17.04102564102564, - 17.445897435897436, - 17.85076923076923, - 18.255641025641026, - 18.66051282051282, - 19.065384615384616, - 19.47025641025641, - 19.875128205128206, - 20.28, - 20.684871794871796, - 21.08974358974359, - 21.494615384615386, - 21.89948717948718, - 22.304358974358976, - 22.709230769230768, - 23.114102564102563, - 23.518974358974358, - 23.923846153846153, - 24.328717948717948, - 24.733589743589743, - 25.138461538461538, - 25.543333333333333, - 25.948205128205128, - 26.353076923076923, - 26.757948717948718, - 27.162820512820513, - 27.567692307692308, - 27.972564102564103, - 28.3774358974359, - 28.782307692307693, - 29.18717948717949, - 29.592051282051283, - 29.99692307692308, - 30.401794871794873, - 30.80666666666667, - 31.21153846153846, - 31.616410256410255, - 32.02128205128205, - 32.426153846153845, - 32.83102564102564, - 33.235897435897435, - 33.64076923076923, - 34.045641025641025, - 34.45051282051282, - 34.855384615384615, - 35.26025641025641, - 35.665128205128205, - 36.07, - 36.474871794871795, - 36.87974358974359, - 37.284615384615385, - 37.68948717948718, - 38.094358974358975, - 38.49923076923077, - 38.904102564102566, - 39.30897435897436, - 39.713846153846156, - 40.11871794871795, - 40.523589743589746, - 40.92846153846154, - 41.333333333333336 - ], - "xaxis": "x5", - "y": [ - 1.7218203, - 1.7218203, - 1.7218203, - 1.7218203, - 1.7218203, - 1.6422802, - 1.6887302, - 1.6232999999999993, - 1.4093299999999997, - 1.0722400000000005, - 0.9899500000000002, - 0.91779, - 0.8860800000000002, - 0.8948200000000003, - 0.8865, - 0.8826399999999996, - 0.8861299999999998, - 0.8861299999999998, - 0.8896799999999998, - 0.8878399999999997, - 0.8878399999999997, - 0.8878399999999997, - 0.8849199999999996, - 0.8734599999999996, - 0.8734599999999996, - 0.8734599999999996, - 0.8665999999999997, - 0.8665999999999997, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994, - 0.8468399999999994 - ], - "yaxis": "y5" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 0.905
AveBedrms: 0.3333333333333333

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.905
AveBedrms: 0.427037037037037

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.905
AveBedrms: 0.5207407407407407

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.905
AveBedrms: 0.6144444444444443

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.905
AveBedrms: 0.7081481481481482

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.905
AveBedrms: 0.8018518518518518

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.905
AveBedrms: 0.8955555555555554

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.902
AveBedrms: 0.9892592592592593

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
AveBedrms: 1.0633802816901408

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
AveBedrms: 1.082962962962963

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.879
AveBedrms: 1.1766666666666667

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.847
AveBedrms: 1.2703703703703704

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.833
AveBedrms: 1.364074074074074

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.839
AveBedrms: 1.4577777777777776

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.839
AveBedrms: 1.5514814814814815

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.845
AveBedrms: 1.645185185185185

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.845
AveBedrms: 1.738888888888889

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.845
AveBedrms: 1.8325925925925926

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.845
AveBedrms: 1.9262962962962962

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.845
AveBedrms: 2.02

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.846
AveBedrms: 2.113703703703704

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.826
AveBedrms: 2.2074074074074077

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.824
AveBedrms: 2.301111111111111

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.803
AveBedrms: 2.394814814814815

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.803
AveBedrms: 2.488518518518519

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.803
AveBedrms: 2.582222222222222

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.803
AveBedrms: 2.675925925925926

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 2.76962962962963

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 2.8633333333333337

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 2.957037037037037

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 3.050740740740741

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 3.144444444444445

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 3.238148148148148

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 3.331851851851852

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 3.425555555555556

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 3.5192592592592593

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 3.612962962962963

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 3.706666666666667

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 3.8003703703703704

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 3.8940740740740742

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 3.987777777777778

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 4.0814814814814815

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 4.175185185185185

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 4.268888888888889

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 4.362592592592592

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 4.456296296296296

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 4.55

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 4.643703703703704

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 4.7374074074074075

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 4.8311111111111105

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 4.924814814814814

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 5.018518518518518

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 5.112222222222222

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 5.205925925925926

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 5.29962962962963

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 5.3933333333333335

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 5.4870370370370365

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 5.58074074074074

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 5.674444444444444

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 5.768148148148148

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 5.861851851851852

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 5.955555555555556

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 6.049259259259259

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 6.1429629629629625

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 6.236666666666666

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 6.33037037037037

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 6.424074074074074

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 6.517777777777778

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 6.611481481481482

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 6.705185185185185

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 6.7988888888888885

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 6.892592592592592

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 6.986296296296296

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 7.08

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 7.173703703703704

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 7.267407407407407

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 7.361111111111111

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 7.454814814814815

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 7.548518518518518

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 7.642222222222222

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 7.735925925925926

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 7.82962962962963

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 7.923333333333333

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 8.017037037037037

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 8.110740740740741

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 8.204444444444444

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 8.29814814814815

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 8.391851851851852

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 8.485555555555557

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 8.57925925925926

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 8.672962962962965

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 8.766666666666667

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 8.86037037037037

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 8.954074074074075

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 9.047777777777778

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 9.141481481481483

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 9.235185185185186

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 9.328888888888889

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 9.422592592592594

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 9.516296296296296

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 9.610000000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.79
AveBedrms: 9.703703703703704

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#46bac2", - "dash": "solid", - "width": 2 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 0.3333333333333333, - 0.427037037037037, - 0.5207407407407407, - 0.6144444444444443, - 0.7081481481481482, - 0.8018518518518518, - 0.8955555555555554, - 0.9892592592592593, - 1.0633802816901408, - 1.082962962962963, - 1.1766666666666667, - 1.2703703703703704, - 1.364074074074074, - 1.4577777777777776, - 1.5514814814814815, - 1.645185185185185, - 1.738888888888889, - 1.8325925925925926, - 1.9262962962962962, - 2.02, - 2.113703703703704, - 2.2074074074074077, - 2.301111111111111, - 2.394814814814815, - 2.488518518518519, - 2.582222222222222, - 2.675925925925926, - 2.76962962962963, - 2.8633333333333337, - 2.957037037037037, - 3.050740740740741, - 3.144444444444445, - 3.238148148148148, - 3.331851851851852, - 3.425555555555556, - 3.5192592592592593, - 3.612962962962963, - 3.706666666666667, - 3.8003703703703704, - 3.8940740740740742, - 3.987777777777778, - 4.0814814814814815, - 4.175185185185185, - 4.268888888888889, - 4.362592592592592, - 4.456296296296296, - 4.55, - 4.643703703703704, - 4.7374074074074075, - 4.8311111111111105, - 4.924814814814814, - 5.018518518518518, - 5.112222222222222, - 5.205925925925926, - 5.29962962962963, - 5.3933333333333335, - 5.4870370370370365, - 5.58074074074074, - 5.674444444444444, - 5.768148148148148, - 5.861851851851852, - 5.955555555555556, - 6.049259259259259, - 6.1429629629629625, - 6.236666666666666, - 6.33037037037037, - 6.424074074074074, - 6.517777777777778, - 6.611481481481482, - 6.705185185185185, - 6.7988888888888885, - 6.892592592592592, - 6.986296296296296, - 7.08, - 7.173703703703704, - 7.267407407407407, - 7.361111111111111, - 7.454814814814815, - 7.548518518518518, - 7.642222222222222, - 7.735925925925926, - 7.82962962962963, - 7.923333333333333, - 8.017037037037037, - 8.110740740740741, - 8.204444444444444, - 8.29814814814815, - 8.391851851851852, - 8.485555555555557, - 8.57925925925926, - 8.672962962962965, - 8.766666666666667, - 8.86037037037037, - 8.954074074074075, - 9.047777777777778, - 9.141481481481483, - 9.235185185185186, - 9.328888888888889, - 9.422592592592594, - 9.516296296296296, - 9.610000000000001, - 9.703703703703704 - ], - "xaxis": "x6", - "y": [ - 0.9045200000000001, - 0.9045200000000001, - 0.9045200000000001, - 0.9045200000000001, - 0.9045200000000001, - 0.9045200000000001, - 0.9045200000000001, - 0.90191, - 0.8860800000000002, - 0.8855300000000003, - 0.8794000000000001, - 0.8472700000000001, - 0.8333900000000003, - 0.8393000000000002, - 0.8390100000000003, - 0.8451300000000002, - 0.8451300000000002, - 0.8451300000000002, - 0.8451300000000002, - 0.8451300000000002, - 0.8463100000000003, - 0.8256200000000001, - 0.8236000000000001, - 0.8029, - 0.8029, - 0.8029, - 0.8029, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999, - 0.7902499999999999 - ], - "yaxis": "y6" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 0.898
Population: 6.0

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.898
Population: 168.99

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.89
Population: 331.98

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
Population: 380.0

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.932
Population: 494.97

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.936
Population: 657.96

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.962
Population: 820.95

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.978
Population: 983.94

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.012
Population: 1146.93

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.038
Population: 1309.92

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.06
Population: 1472.91

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.057
Population: 1635.9

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.061
Population: 1798.89

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.06
Population: 1961.88

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.064
Population: 2124.87

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.064
Population: 2287.86

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.064
Population: 2450.8500000000004

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.068
Population: 2613.84

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.067
Population: 2776.83

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.066
Population: 2939.82

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.066
Population: 3102.8100000000004

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.066
Population: 3265.8

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 3428.79

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 3591.78

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 3754.7700000000004

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 3917.76

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 4080.75

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 4243.74

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 4406.7300000000005

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 4569.72

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 4732.71

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 4895.700000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 5058.6900000000005

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 5221.68

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 5384.67

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 5547.66

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 5710.650000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 5873.64

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 6036.63

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 6199.620000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 6362.610000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 6525.6

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 6688.59

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 6851.58

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 7014.570000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 7177.56

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 7340.55

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 7503.540000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 7666.530000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 7829.52

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 7992.51

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 8155.5

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 8318.49

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 8481.48

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 8644.470000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 8807.460000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 8970.45

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 9133.44

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 9296.43

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 9459.42

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 9622.41

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 9785.400000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 9948.390000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 10111.380000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 10274.37

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 10437.36

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 10600.35

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 10763.34

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 10926.33

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 11089.32

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 11252.310000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 11415.300000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 11578.29

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 11741.28

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 11904.27

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 12067.26

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 12230.25

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 12393.240000000002

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 12556.230000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 12719.220000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 12882.210000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 13045.2

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 13208.19

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 13371.18

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 13534.17

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 13697.16

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 13860.150000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 14023.140000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 14186.130000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 14349.12

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 14512.11

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 14675.1

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 14838.09

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 15001.080000000002

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 15164.070000000002

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 15327.060000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 15490.050000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 15653.04

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 15816.03

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 15979.02

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 16142.01

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.065
Population: 16305.0

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#46bac2", - "dash": "solid", - "width": 2 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 6, - 168.99, - 331.98, - 380, - 494.97, - 657.96, - 820.95, - 983.94, - 1146.93, - 1309.92, - 1472.91, - 1635.9, - 1798.89, - 1961.88, - 2124.87, - 2287.86, - 2450.8500000000004, - 2613.84, - 2776.83, - 2939.82, - 3102.8100000000004, - 3265.8, - 3428.79, - 3591.78, - 3754.7700000000004, - 3917.76, - 4080.75, - 4243.74, - 4406.7300000000005, - 4569.72, - 4732.71, - 4895.700000000001, - 5058.6900000000005, - 5221.68, - 5384.67, - 5547.66, - 5710.650000000001, - 5873.64, - 6036.63, - 6199.620000000001, - 6362.610000000001, - 6525.6, - 6688.59, - 6851.58, - 7014.570000000001, - 7177.56, - 7340.55, - 7503.540000000001, - 7666.530000000001, - 7829.52, - 7992.51, - 8155.5, - 8318.49, - 8481.48, - 8644.470000000001, - 8807.460000000001, - 8970.45, - 9133.44, - 9296.43, - 9459.42, - 9622.41, - 9785.400000000001, - 9948.390000000001, - 10111.380000000001, - 10274.37, - 10437.36, - 10600.35, - 10763.34, - 10926.33, - 11089.32, - 11252.310000000001, - 11415.300000000001, - 11578.29, - 11741.28, - 11904.27, - 12067.26, - 12230.25, - 12393.240000000002, - 12556.230000000001, - 12719.220000000001, - 12882.210000000001, - 13045.2, - 13208.19, - 13371.18, - 13534.17, - 13697.16, - 13860.150000000001, - 14023.140000000001, - 14186.130000000001, - 14349.12, - 14512.11, - 14675.1, - 14838.09, - 15001.080000000002, - 15164.070000000002, - 15327.060000000001, - 15490.050000000001, - 15653.04, - 15816.03, - 15979.02, - 16142.01, - 16305 - ], - "xaxis": "x3", - "y": [ - 0.89814, - 0.89814, - 0.8898800000000002, - 0.8860800000000002, - 0.9323400000000001, - 0.9364800000000004, - 0.9624200000000002, - 0.9784800000000001, - 1.0123900000000001, - 1.03795, - 1.0595099999999997, - 1.0570499999999996, - 1.0607699999999998, - 1.0601599999999995, - 1.0640499999999997, - 1.0640499999999997, - 1.06386, - 1.0676299999999999, - 1.0668699999999998, - 1.0660999999999998, - 1.0660999999999998, - 1.0660999999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998, - 1.0647799999999998 - ], - "yaxis": "y3" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 1.476
AveOccup: 0.6923076923076923

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.476
AveOccup: 0.8785096153846154

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.476
AveOccup: 1.0647115384615384

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.476
AveOccup: 1.2509134615384614

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.473
AveOccup: 1.4371153846153846

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.565
AveOccup: 1.6233173076923078

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.555
AveOccup: 1.8095192307692307

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.409
AveOccup: 1.995721153846154

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.211
AveOccup: 2.181923076923077

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.165
AveOccup: 2.368125

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.943
AveOccup: 2.554326923076923

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
AveOccup: 2.676056338028169

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.889
AveOccup: 2.740528846153846

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.868
AveOccup: 2.926730769230769

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.857
AveOccup: 3.112932692307692

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.865
AveOccup: 3.2991346153846157

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.873
AveOccup: 3.4853365384615387

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.882
AveOccup: 3.6715384615384616

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.888
AveOccup: 3.8577403846153846

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.888
AveOccup: 4.043942307692308

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.896
AveOccup: 4.2301442307692305

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.896
AveOccup: 4.4163461538461535

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.917
AveOccup: 4.602548076923076

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.917
AveOccup: 4.78875

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.917
AveOccup: 4.974951923076923

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.93
AveOccup: 5.161153846153846

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.93
AveOccup: 5.347355769230769

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.984
AveOccup: 5.533557692307692

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.984
AveOccup: 5.719759615384615

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.984
AveOccup: 5.905961538461539

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.091
AveOccup: 6.092163461538462

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.091
AveOccup: 6.278365384615385

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.08
AveOccup: 6.464567307692308

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.08
AveOccup: 6.650769230769231

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.08
AveOccup: 6.836971153846154

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.08
AveOccup: 7.023173076923077

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.08
AveOccup: 7.209375

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.08
AveOccup: 7.395576923076923

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 7.5817788461538465

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 7.767980769230769

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 7.954182692307692

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 8.140384615384615

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 8.326586538461537

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 8.512788461538461

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 8.698990384615383

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 8.885192307692307

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 9.07139423076923

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 9.257596153846153

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 9.443798076923075

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 9.629999999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 9.816201923076923

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 10.002403846153845

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 10.188605769230769

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 10.37480769230769

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 10.561009615384615

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 10.747211538461537

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 10.93341346153846

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 11.119615384615384

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 11.305817307692307

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 11.49201923076923

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 11.678221153846152

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 11.864423076923076

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 12.050624999999998

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 12.236826923076922

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 12.423028846153844

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 12.609230769230768

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 12.795432692307692

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 12.981634615384614

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 13.167836538461538

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 13.35403846153846

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 13.540240384615384

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 13.726442307692306

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 13.91264423076923

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 14.098846153846152

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 14.285048076923076

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 14.47125

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 14.657451923076922

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 14.843653846153845

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 15.029855769230767

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 15.216057692307691

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 15.402259615384613

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 15.588461538461537

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 15.774663461538461

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 15.960865384615383

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 16.147067307692307

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 16.33326923076923

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 16.519471153846155

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 16.705673076923077

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 16.891875

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 17.078076923076924

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 17.264278846153847

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 17.45048076923077

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 17.636682692307694

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 17.822884615384616

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 18.00908653846154

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 18.19528846153846

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 18.381490384615386

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 18.567692307692308

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 18.75389423076923

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 18.940096153846156

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 19.126298076923078

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.077
AveOccup: 19.3125

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#46bac2", - "dash": "solid", - "width": 2 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.676056338028169, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x4", - "y": [ - 1.4758300999999998, - 1.4758300999999998, - 1.4758300999999998, - 1.4758300999999998, - 1.4732200999999996, - 1.5645600999999993, - 1.5552900999999988, - 1.4094099999999994, - 1.2105999999999997, - 1.1652000000000005, - 0.9431400000000001, - 0.8860800000000002, - 0.8888400000000003, - 0.86802, - 0.8570800000000003, - 0.8653200000000001, - 0.87283, - 0.8820700000000001, - 0.88759, - 0.88759, - 0.8956400000000001, - 0.8956400000000001, - 0.9170200000000002, - 0.9170200000000002, - 0.9170200000000002, - 0.93002, - 0.93002, - 0.9837600000000001, - 0.9837600000000001, - 0.9837600000000001, - 1.09088, - 1.09088, - 1.07963, - 1.07963, - 1.07963, - 1.07963, - 1.07963, - 1.07963, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001, - 1.0771300000000001 - ], - "yaxis": "y4" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 2.7
Latitude: 32.54

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.7
Latitude: 32.6341

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.7
Latitude: 32.7282

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.7
Latitude: 32.8223

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.7
Latitude: 32.916399999999996

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.7
Latitude: 33.0105

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.7
Latitude: 33.1046

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.692
Latitude: 33.1987

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.698
Latitude: 33.2928

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.698
Latitude: 33.3869

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.68
Latitude: 33.481

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.68
Latitude: 33.5751

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.673
Latitude: 33.6692

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.56
Latitude: 33.7633

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.516
Latitude: 33.8574

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.511
Latitude: 33.9515

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.445
Latitude: 34.0456

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.473
Latitude: 34.1397

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.405
Latitude: 34.2338

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.404
Latitude: 34.3279

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.414
Latitude: 34.422

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.383
Latitude: 34.5161

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.369
Latitude: 34.6102

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.459
Latitude: 34.7043

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.534
Latitude: 34.7984

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.534
Latitude: 34.8925

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.534
Latitude: 34.9866

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.538
Latitude: 35.0807

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.586
Latitude: 35.1748

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.586
Latitude: 35.2689

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.586
Latitude: 35.363

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.584
Latitude: 35.4571

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.584
Latitude: 35.5512

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.56
Latitude: 35.6453

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.56
Latitude: 35.7394

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.56
Latitude: 35.8335

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.56
Latitude: 35.9276

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.56
Latitude: 36.0217

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.56
Latitude: 36.1158

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.56
Latitude: 36.2099

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.56
Latitude: 36.304

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.56
Latitude: 36.3981

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.455
Latitude: 36.4922

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.412
Latitude: 36.5863

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.412
Latitude: 36.6804

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.408
Latitude: 36.7745

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.413
Latitude: 36.8686

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.411
Latitude: 36.9627

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.383
Latitude: 37.0568

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.383
Latitude: 37.1509

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.392
Latitude: 37.245000000000005

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.379
Latitude: 37.3391

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.361
Latitude: 37.4332

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.364
Latitude: 37.527300000000004

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.358
Latitude: 37.6214

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.355
Latitude: 37.7155

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.341
Latitude: 37.8096

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 2.095
Latitude: 37.9037

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.846
Latitude: 37.9978

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.895
Latitude: 38.0919

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.832
Latitude: 38.186

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.699
Latitude: 38.280100000000004

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.671
Latitude: 38.3742

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.581
Latitude: 38.4683

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.477
Latitude: 38.562400000000004

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.471
Latitude: 38.6565

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.346
Latitude: 38.7506

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.265
Latitude: 38.8447

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.177
Latitude: 38.9388

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.132
Latitude: 39.0329

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.124
Latitude: 39.127

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.08
Latitude: 39.2211

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.96
Latitude: 39.315200000000004

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.88
Latitude: 39.4093

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
Latitude: 39.44

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.872
Latitude: 39.5034

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.87
Latitude: 39.597500000000004

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.856
Latitude: 39.6916

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.858
Latitude: 39.7857

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.853
Latitude: 39.8798

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.845
Latitude: 39.9739

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.844
Latitude: 40.068

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.845
Latitude: 40.1621

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.836
Latitude: 40.2562

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.832
Latitude: 40.350300000000004

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.834
Latitude: 40.4444

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.836
Latitude: 40.5385

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.837
Latitude: 40.632600000000004

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.84
Latitude: 40.7267

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.84
Latitude: 40.820800000000006

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.84
Latitude: 40.9149

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.839
Latitude: 41.009

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.836
Latitude: 41.1031

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.836
Latitude: 41.1972

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.831
Latitude: 41.2913

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.831
Latitude: 41.385400000000004

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.825
Latitude: 41.4795

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.825
Latitude: 41.5736

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.834
Latitude: 41.6677

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.834
Latitude: 41.7618

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.831
Latitude: 41.855900000000005

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.831
Latitude: 41.95

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#46bac2", - "dash": "solid", - "width": 2 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 32.54, - 32.6341, - 32.7282, - 32.8223, - 32.916399999999996, - 33.0105, - 33.1046, - 33.1987, - 33.2928, - 33.3869, - 33.481, - 33.5751, - 33.6692, - 33.7633, - 33.8574, - 33.9515, - 34.0456, - 34.1397, - 34.2338, - 34.3279, - 34.422, - 34.5161, - 34.6102, - 34.7043, - 34.7984, - 34.8925, - 34.9866, - 35.0807, - 35.1748, - 35.2689, - 35.363, - 35.4571, - 35.5512, - 35.6453, - 35.7394, - 35.8335, - 35.9276, - 36.0217, - 36.1158, - 36.2099, - 36.304, - 36.3981, - 36.4922, - 36.5863, - 36.6804, - 36.7745, - 36.8686, - 36.9627, - 37.0568, - 37.1509, - 37.245000000000005, - 37.3391, - 37.4332, - 37.527300000000004, - 37.6214, - 37.7155, - 37.8096, - 37.9037, - 37.9978, - 38.0919, - 38.186, - 38.280100000000004, - 38.3742, - 38.4683, - 38.562400000000004, - 38.6565, - 38.7506, - 38.8447, - 38.9388, - 39.0329, - 39.127, - 39.2211, - 39.315200000000004, - 39.4093, - 39.44, - 39.5034, - 39.597500000000004, - 39.6916, - 39.7857, - 39.8798, - 39.9739, - 40.068, - 40.1621, - 40.2562, - 40.350300000000004, - 40.4444, - 40.5385, - 40.632600000000004, - 40.7267, - 40.820800000000006, - 40.9149, - 41.009, - 41.1031, - 41.1972, - 41.2913, - 41.385400000000004, - 41.4795, - 41.5736, - 41.6677, - 41.7618, - 41.855900000000005, - 41.95 - ], - "xaxis": "x", - "y": [ - 2.7004302999999976, - 2.7004302999999976, - 2.7004302999999976, - 2.7004302999999976, - 2.7004302999999976, - 2.7004302999999976, - 2.7004302999999976, - 2.6917602999999968, - 2.698010299999997, - 2.698010299999997, - 2.680210299999997, - 2.680210299999997, - 2.6730401999999973, - 2.560240099999998, - 2.5157500999999987, - 2.5114100999999986, - 2.4445001999999985, - 2.473489999999998, - 2.4045299999999985, - 2.4036899999999988, - 2.414069999999999, - 2.3831199999999995, - 2.36898, - 2.4587599999999994, - 2.5338499999999993, - 2.5338499999999993, - 2.5338499999999993, - 2.538289999999999, - 2.585769999999999, - 2.585769999999999, - 2.585769999999999, - 2.583659999999999, - 2.583659999999999, - 2.5604099999999987, - 2.5604099999999987, - 2.5604099999999987, - 2.5604099999999987, - 2.5604099999999987, - 2.5604699999999987, - 2.5604699999999987, - 2.5604699999999987, - 2.5604699999999987, - 2.455249999999999, - 2.412029999999999, - 2.412029999999999, - 2.407769999999999, - 2.413239999999999, - 2.411389999999999, - 2.3828199999999993, - 2.3831099999999994, - 2.392109999999999, - 2.3789299999999987, - 2.3610899999999986, - 2.3636799999999987, - 2.3577699999999986, - 2.354549999999999, - 2.3408099999999994, - 2.0949999999999993, - 1.8463900000000004, - 1.8949800000000006, - 1.8320200000000002, - 1.6993499999999988, - 1.6711199999999988, - 1.5814199999999996, - 1.4770300000000003, - 1.4714500000000004, - 1.3457800000000004, - 1.2649600000000005, - 1.17708, - 1.1321399999999997, - 1.1240399999999995, - 1.0796599999999996, - 0.9599699999999999, - 0.8798100000000002, - 0.8860800000000002, - 0.8716400000000002, - 0.8701399999999998, - 0.85627, - 0.8576699999999999, - 0.85291, - 0.84529, - 0.8442799999999998, - 0.8445399999999998, - 0.8357699999999997, - 0.8320899999999998, - 0.8337399999999998, - 0.8355199999999999, - 0.8369199999999999, - 0.83991, - 0.84002, - 0.8398299999999999, - 0.8391599999999998, - 0.83612, - 0.83612, - 0.83062, - 0.83116, - 0.82521, - 0.82521, - 0.8343499999999999, - 0.8343499999999999, - 0.8305000000000001, - 0.8305000000000001 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 0.871
Longitude: -124.35

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.87
Longitude: -124.2496

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.87
Longitude: -124.1492

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.877
Longitude: -124.0488

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.884
Longitude: -123.94839999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.897
Longitude: -123.848

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
Longitude: -123.74759999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.886
Longitude: -123.73

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.881
Longitude: -123.6472

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.851
Longitude: -123.54679999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.849
Longitude: -123.4464

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.842
Longitude: -123.34599999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.842
Longitude: -123.2456

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.832
Longitude: -123.14519999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.831
Longitude: -123.0448

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.829
Longitude: -122.9444

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.815
Longitude: -122.844

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.815
Longitude: -122.7436

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.816
Longitude: -122.6432

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.812
Longitude: -122.5428

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.815
Longitude: -122.44239999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.821
Longitude: -122.342

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.778
Longitude: -122.24159999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.747
Longitude: -122.1412

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.747
Longitude: -122.04079999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.748
Longitude: -121.9404

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.748
Longitude: -121.84

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.753
Longitude: -121.7396

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.754
Longitude: -121.6392

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.738
Longitude: -121.5388

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.74
Longitude: -121.4384

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.769
Longitude: -121.338

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.791
Longitude: -121.2376

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.813
Longitude: -121.13719999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.812
Longitude: -121.0368

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.805
Longitude: -120.93639999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.805
Longitude: -120.836

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.806
Longitude: -120.73559999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.796
Longitude: -120.6352

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.777
Longitude: -120.5348

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.797
Longitude: -120.4344

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.814
Longitude: -120.334

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.837
Longitude: -120.2336

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.85
Longitude: -120.1332

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.897
Longitude: -120.0328

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.923
Longitude: -119.9324

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.94
Longitude: -119.832

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.94
Longitude: -119.7316

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.953
Longitude: -119.63119999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.958
Longitude: -119.5308

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.965
Longitude: -119.43039999999999

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.973
Longitude: -119.33

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 0.972
Longitude: -119.2296

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.024
Longitude: -119.1292

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.028
Longitude: -119.0288

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.023
Longitude: -118.9284

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.022
Longitude: -118.828

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
Longitude: -118.7276

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
Longitude: -118.6272

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.015
Longitude: -118.5268

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.019
Longitude: -118.4264

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.025
Longitude: -118.326

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.025
Longitude: -118.2256

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.025
Longitude: -118.1252

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.025
Longitude: -118.0248

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.025
Longitude: -117.9244

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.025
Longitude: -117.824

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.025
Longitude: -117.7236

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.025
Longitude: -117.6232

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.022
Longitude: -117.5228

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.022
Longitude: -117.4224

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.02
Longitude: -117.322

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.02
Longitude: -117.2216

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.02
Longitude: -117.1212

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.02
Longitude: -117.0208

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.02
Longitude: -116.9204

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.02
Longitude: -116.82

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.02
Longitude: -116.7196

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.012
Longitude: -116.6192

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.012
Longitude: -116.5188

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.012
Longitude: -116.4184

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -116.318

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -116.2176

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -116.1172

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -116.0168

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -115.9164

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -115.816

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -115.7156

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -115.6152

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -115.51480000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -115.4144

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -115.31400000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -115.2136

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -115.1132

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -115.0128

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -114.9124

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -114.812

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -114.7116

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -114.6112

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -114.5108

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -114.41040000000001

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ], - [ - "
id: 9463
prediction: 1.007
Longitude: -114.31

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#46bac2", - "dash": "solid", - "width": 2 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - -124.35, - -124.2496, - -124.1492, - -124.0488, - -123.94839999999999, - -123.848, - -123.74759999999999, - -123.73, - -123.6472, - -123.54679999999999, - -123.4464, - -123.34599999999999, - -123.2456, - -123.14519999999999, - -123.0448, - -122.9444, - -122.844, - -122.7436, - -122.6432, - -122.5428, - -122.44239999999999, - -122.342, - -122.24159999999999, - -122.1412, - -122.04079999999999, - -121.9404, - -121.84, - -121.7396, - -121.6392, - -121.5388, - -121.4384, - -121.338, - -121.2376, - -121.13719999999999, - -121.0368, - -120.93639999999999, - -120.836, - -120.73559999999999, - -120.6352, - -120.5348, - -120.4344, - -120.334, - -120.2336, - -120.1332, - -120.0328, - -119.9324, - -119.832, - -119.7316, - -119.63119999999999, - -119.5308, - -119.43039999999999, - -119.33, - -119.2296, - -119.1292, - -119.0288, - -118.9284, - -118.828, - -118.7276, - -118.6272, - -118.5268, - -118.4264, - -118.326, - -118.2256, - -118.1252, - -118.0248, - -117.9244, - -117.824, - -117.7236, - -117.6232, - -117.5228, - -117.4224, - -117.322, - -117.2216, - -117.1212, - -117.0208, - -116.9204, - -116.82, - -116.7196, - -116.6192, - -116.5188, - -116.4184, - -116.318, - -116.2176, - -116.1172, - -116.0168, - -115.9164, - -115.816, - -115.7156, - -115.6152, - -115.51480000000001, - -115.4144, - -115.31400000000001, - -115.2136, - -115.1132, - -115.0128, - -114.9124, - -114.812, - -114.7116, - -114.6112, - -114.5108, - -114.41040000000001, - -114.31 - ], - "xaxis": "x2", - "y": [ - 0.8706300000000001, - 0.8698100000000002, - 0.8704200000000002, - 0.8774200000000002, - 0.8840200000000001, - 0.89692, - 0.8860800000000002, - 0.8860800000000002, - 0.8806800000000001, - 0.85102, - 0.84929, - 0.8420200000000001, - 0.8423899999999999, - 0.8315300000000002, - 0.8306200000000001, - 0.8288300000000001, - 0.81489, - 0.8145699999999999, - 0.81607, - 0.8119799999999999, - 0.81527, - 0.82054, - 0.7783999999999999, - 0.7472799999999999, - 0.74666, - 0.74849, - 0.74795, - 0.7529300000000003, - 0.754, - 0.7383399999999999, - 0.7404499999999998, - 0.7693099999999998, - 0.79089, - 0.81344, - 0.8123600000000001, - 0.80467, - 0.80467, - 0.8064899999999998, - 0.7956199999999999, - 0.7768199999999998, - 0.7965699999999998, - 0.8140099999999998, - 0.8368800000000001, - 0.8501099999999999, - 0.8968900000000001, - 0.9226200000000003, - 0.9396400000000004, - 0.9401000000000005, - 0.9526900000000004, - 0.9584100000000001, - 0.9645000000000001, - 0.97331, - 0.9721700000000001, - 1.0236799999999997, - 1.0280899999999997, - 1.0230399999999997, - 1.0224499999999999, - 1.01544, - 1.01544, - 1.01544, - 1.01868, - 1.02493, - 1.02493, - 1.02493, - 1.02493, - 1.02493, - 1.02493, - 1.02493, - 1.02493, - 1.02243, - 1.02243, - 1.01996, - 1.01996, - 1.01996, - 1.01952, - 1.01952, - 1.01952, - 1.01952, - 1.0122099999999998, - 1.0122099999999998, - 1.0122099999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998, - 1.0070599999999998 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 0.886
MedInc: 2.7

HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "", - "marker": { - "color": "#371ea3", - "size": 10, - "symbol": "circle" - }, - "mode": "markers", - "name": "", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 2.7 - ], - "xaxis": "x7", - "y": [ - 0.8860800000000002 - ], - "yaxis": "y7" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 0.886
HouseAge: 32.0

MedInc: 2.7
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "", - "marker": { - "color": "#371ea3", - "size": 10, - "symbol": "circle" - }, - "mode": "markers", - "name": "", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 32 - ], - "xaxis": "x8", - "y": [ - 0.8860800000000002 - ], - "yaxis": "y8" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 0.886
AveRooms: 5.563380281690141

MedInc: 2.7
HouseAge: 32.0
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "", - "marker": { - "color": "#371ea3", - "size": 10, - "symbol": "circle" - }, - "mode": "markers", - "name": "", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 5.563380281690141 - ], - "xaxis": "x5", - "y": [ - 0.8860800000000002 - ], - "yaxis": "y5" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 0.886
AveBedrms: 1.0633802816901408

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "", - "marker": { - "color": "#371ea3", - "size": 10, - "symbol": "circle" - }, - "mode": "markers", - "name": "", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 1.0633802816901408 - ], - "xaxis": "x6", - "y": [ - 0.8860800000000002 - ], - "yaxis": "y6" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 0.886
Population: 380.0

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
AveOccup: 2.676056338028169
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "", - "marker": { - "color": "#371ea3", - "size": 10, - "symbol": "circle" - }, - "mode": "markers", - "name": "", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 380 - ], - "xaxis": "x3", - "y": [ - 0.8860800000000002 - ], - "yaxis": "y3" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 0.886
AveOccup: 2.676056338028169

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
Latitude: 39.44
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "", - "marker": { - "color": "#371ea3", - "size": 10, - "symbol": "circle" - }, - "mode": "markers", - "name": "", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 2.676056338028169 - ], - "xaxis": "x4", - "y": [ - 0.8860800000000002 - ], - "yaxis": "y4" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 0.886
Latitude: 39.44

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Longitude: -123.73
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "", - "marker": { - "color": "#371ea3", - "size": 10, - "symbol": "circle" - }, - "mode": "markers", - "name": "", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - 39.44 - ], - "xaxis": "x", - "y": [ - 0.8860800000000002 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 9463
prediction: 0.886
Longitude: -123.73

MedInc: 2.7
HouseAge: 32.0
AveRooms: 5.563380281690141
AveBedrms: 1.0633802816901408
Population: 380.0
AveOccup: 2.676056338028169
Latitude: 39.44
_original_yhat_: 0.8860800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "", - "marker": { - "color": "#371ea3", - "size": 10, - "symbol": "circle" - }, - "mode": "markers", - "name": "", - "opacity": 1, - "orientation": "v", - "showlegend": false, - "type": "scatter", - "x": [ - -123.73 - ], - "xaxis": "x2", - "y": [ - 0.8860800000000002 - ], - "yaxis": "y2" - } - ], - "layout": { - "annotations": [ - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "Latitude", - "x": 0.2375, - "xanchor": "center", - "xref": "paper", - "y": 0.19375, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "Longitude", - "x": 0.7625, - "xanchor": "center", - "xref": "paper", - "y": 0.19375, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "Population", - "x": 0.2375, - "xanchor": "center", - "xref": "paper", - "y": 0.4625, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "AveOccup", - "x": 0.7625, - "xanchor": "center", - "xref": "paper", - "y": 0.4625, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "AveRooms", - "x": 0.2375, - "xanchor": "center", - "xref": "paper", - "y": 0.73125, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "AveBedrms", - "x": 0.7625, - "xanchor": "center", - "xref": "paper", - "y": 0.73125, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "MedInc", - "x": 0.2375, - "xanchor": "center", - "xref": "paper", - "y": 1, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "HouseAge", - "x": 0.7625, - "xanchor": "center", - "xref": "paper", - "y": 1, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "prediction", - "textangle": -90, - "x": -0.07, - "xref": "paper", - "y": 0.5, - "yref": "paper" - } - ], - "font": { - "color": "#371ea3" - }, - "height": 1509, - "hoverlabel": { - "bgcolor": "rgba(0,0,0,0.8)" - }, - "hovermode": "closest", - "legend": { - "font": { - "size": 11 - }, - "itemsizing": "constant", - "orientation": "h", - "title": { - "font": { - "size": 12 - }, - "text": "label" - }, - "tracegroupgap": 0, - "x": 1, - "xanchor": "right", - "y": 1.0198807157057654, - "yanchor": "bottom" - }, - "margin": { - "b": 71, - "r": 30, - "t": 78 - }, - "template": { - "data": { - "scatter": [ - { - "type": "scatter" - } - ] - } - }, - "title": { - "font": { - "size": 16 - }, - "text": "Ceteris Paribus Profiles", - "x": 0.15 - }, - "xaxis": { - "anchor": "y", - "automargin": true, - "domain": [ - 0, - 0.475 - ], - "fixedrange": true, - "gridwidth": 2, - "showticklabels": true, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "xaxis2": { - "anchor": "y2", - "automargin": true, - "domain": [ - 0.525, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "showticklabels": true, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "xaxis3": { - "anchor": "y3", - "automargin": true, - "domain": [ - 0, - 0.475 - ], - "fixedrange": true, - "gridwidth": 2, - "showticklabels": true, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "xaxis4": { - "anchor": "y4", - "automargin": true, - "domain": [ - 0.525, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "showticklabels": true, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "xaxis5": { - "anchor": "y5", - "automargin": true, - "domain": [ - 0, - 0.475 - ], - "fixedrange": true, - "gridwidth": 2, - "showticklabels": true, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "xaxis6": { - "anchor": "y6", - "automargin": true, - "domain": [ - 0.525, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "showticklabels": true, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "xaxis7": { - "anchor": "y7", - "automargin": true, - "domain": [ - 0, - 0.475 - ], - "fixedrange": true, - "gridwidth": 2, - "showticklabels": true, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "xaxis8": { - "anchor": "y8", - "automargin": true, - "domain": [ - 0.525, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "showticklabels": true, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "yaxis": { - "anchor": "x", - "automargin": true, - "domain": [ - 0, - 0.19375 - ], - "fixedrange": true, - "gridwidth": 2, - "range": [ - 0.3644877800000003, - 4.589954419999999 - ], - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "yaxis2": { - "anchor": "x2", - "automargin": true, - "domain": [ - 0, - 0.19375 - ], - "fixedrange": true, - "gridwidth": 2, - "matches": "y", - "range": [ - 0.3644877800000003, - 4.589954419999999 - ], - "showticklabels": false, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "yaxis3": { - "anchor": "x3", - "automargin": true, - "domain": [ - 0.26875, - 0.4625 - ], - "fixedrange": true, - "gridwidth": 2, - "matches": "y", - "range": [ - 0.3644877800000003, - 4.589954419999999 - ], - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "yaxis4": { - "anchor": "x4", - "automargin": true, - "domain": [ - 0.26875, - 0.4625 - ], - "fixedrange": true, - "gridwidth": 2, - "matches": "y", - "range": [ - 0.3644877800000003, - 4.589954419999999 - ], - "showticklabels": false, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "yaxis5": { - "anchor": "x5", - "automargin": true, - "domain": [ - 0.5375, - 0.73125 - ], - "fixedrange": true, - "gridwidth": 2, - "matches": "y", - "range": [ - 0.3644877800000003, - 4.589954419999999 - ], - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "yaxis6": { - "anchor": "x6", - "automargin": true, - "domain": [ - 0.5375, - 0.73125 - ], - "fixedrange": true, - "gridwidth": 2, - "matches": "y", - "range": [ - 0.3644877800000003, - 4.589954419999999 - ], - "showticklabels": false, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "yaxis7": { - "anchor": "x7", - "automargin": true, - "domain": [ - 0.80625, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "matches": "y", - "range": [ - 0.3644877800000003, - 4.589954419999999 - ], - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "yaxis8": { - "anchor": "x8", - "automargin": true, - "domain": [ - 0.80625, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "matches": "y", - "range": [ - 0.3644877800000003, - 4.589954419999999 - ], - "showticklabels": false, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "cp_sample.plot()" - ] - }, - { - "cell_type": "markdown", - "id": "5ee44a0b", - "metadata": {}, - "source": [ - "In the plot with the ceteris-paribus profile of MedInc, we can see that changing MedInc to a value of 7.895, would dramatically increase the prediction. After manually changing this value and having the model predict again, we can see that this is exactly what happens." - ] - }, - { - "cell_type": "code", - "execution_count": 42, - "id": "6df8d44d", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "array([4.2378322])" - ] - }, - "execution_count": 42, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "X_test_sample_high_medinc = X_test_sample.copy()\n", - "X_test_sample_high_medinc['MedInc'] = 7.895\n", - "model.predict(X_test_sample_high_medinc)" - ] - }, - { - "cell_type": "markdown", - "id": "15c25535", - "metadata": {}, - "source": [ - "Ceteris-paribus profiles are a measure of variable importance in a way, since they tell how much one predictor variable can change the outcome variable. A relatiely horizontal ceteris-paribus profile means that the input variable does not really affect the output variable a lot. In other words, it means the input variable can change all it wants, it would not really affect the outcome variable. The ceteris-paribus profile of HouseAge is an example of this. \n", - "\n", - "A variable with a ceteris-paribus profile with (steeper) slopes can have more of an effect on the outcome variable. The ceteris-paribus profile of MedInc shows a steep slope. From this profile, we can read that a change in MedInc to 8 or more, would increase the outcome variable from about 1 to about 4." - ] - }, - { - "cell_type": "markdown", - "id": "bb308125", - "metadata": {}, - "source": [ - "## Ceteris-paribus oscillations \n", - "\n", - "To quantify the importance of a variable, or its ability to affect the outcome variable, we use [ceteris-paribus oscillations](https://ema.drwhy.ai/ceterisParibusOscillations.html). These oscillations are measures of how different the outcome can be if we were to change the input variable. The oscillations are the sum of the differences between the ceteris-paribus profile and the horizontal line y=y_pred. Using the average of oscillations, the most important variables can be identified." - ] - }, - { - "attachments": { - "cp_oscillations.PNG": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjgAAAGHCAYAAAC9ASjLAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAACupSURBVHhe7d0HfJ13fe/xn7aO9h5ekvdeSUgUOy4xIc0lLnHaFNoap9xyMbekINoEaDFlNKWhNE3gihKGA02CMYWQEDsYMGQRjyiO4yXZlqckL+1p7Xmf///8j4Yl2xpHOs95zued1+H5/Z+jYCV57PPVfwb1WgQAAMBBgs0VAADAMQg4AADAcQg4AADAcQg4AADAcQg4AADAcQg4AADAcQg4AADAcQg4AADAcQg4AGyhZvsLkpO1SwpMGwDGg4ADYAh32NgqOQ/tkRpzb6C+9ycwkPT/Gv2vvEPmTQC4AQIOgGvbWSI/GRIqymXvrlZTT5zk9Q9Ifun7ZfM6q/HICqveKLkr3e8BwI0QcABcQ6pseERk25arenEOHZHHdrrfAwC7IuAAuKa1H8qWVTsrZG+ZuSHlsmNLlcgjU2WtuTNE2R55eNDQ0vDDWAV5A79mq6zLHU2vUKHkWX/Pw9vLrxrKekF29H2vAxzaNeBr3C/19wJwLgIOgGvLnCN3rmuVx54vdLfLzsgbO12y+UNL3O2rqSCRUyLZL23UQ0rqteWRKtk0KORYIemhrbKpKFt2mq9Rr515LvP+yO3LfUX+TVYP+LWs7zVncKDSAej+Ktkw4HvKz88WKa02XwHAiQg4AK4jQ+7blCryxEndM1LwfInse2S+3Jdp3h6kUPKsILEq7/2D5soszV0hG6RKXvfM5dFDXFZI+tIdkmxujZX6tZ5cn2Fa1q+1xvpepUmK+3pxCuUnua1DvifJvEOezL1GSAPgCAQcANe3crlsXtcqb+zfI68/IbJhzbV6by7JNnHJnbf2Bw63FMleJ1Jy3j0kVLC7SmRduqweNiR5Q6uUeEafrvk9AXA6Ag6AG8iQ1fe4ZF9uiWxbly0fue5KJjVENHiuS07WK/LYTpF9DAkBmEQEHAA3lLx+vmywrhs23WhYySWb8wfMdRn4YkgIwCQi4AAYgSWSa4WU6+5Ds3KqFYLUUNb1VydNyXKJ7GyWy6Y9oUb4PQFwHgIOAC9ZIh/JU0NZrwzZcVitZPLcc/cGVcmmPLMySzm0a5TLxEfqGt+TWso+8NcH4DgEHABeo3cfzs+WkvsHz8NZlxsja/t6f1Rv0ArZ8MTh/q/ZPXXIMnH3/jbu+TtivnYsRzXo7+mlVNk28HtSS9mvNVkagCME9VpMDQAA4Aj04AAAAMch4AAAAMch4AAAAMch4AAAAMch4CBg1dXV6Rfg73iWgaEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOABs52JLq7xaViklTc3mDgCMTlCvxdRAQKmrq9PXxMREfYV9/LzkovzwdLGuw4ODJTsmSmbHxsis2Oi+qyskRL8PnmVgOAQcBCw+FOzr0SMnZG9ltWkNL9MVqcPObCvsLEqIkxVJCeadwMOzDAzFEBUA2znR0KivKry8LzNNZkRH6fZAZa1tsscKQc+eLZV/fLdAfnOp3LwDAAQcADZT3dYute0dur4rM10Sw5PkPSkzZMddq+Vbt66Qv1swWz4wNUPmxcXor/H41vHTsr+61rQABDoCDgBbKWq8YiqR+fGxphJ59kyN7K5ok/LWMIkKTZClidPkgawF8u83L5WIEPcfZV87ckJODfj7AQQuAg4AWzlR7w4oQUEic6/qpRnOO9Wd8uiKxRJi/Q3tPT3yzwePyeWWVvMugEBFwAFgK0Vm/s2smGjdazMS+62Q809LF4iViaShs1PPyVFXAIGLgAPANtSaztONTboeODw1EkUNvbJp3kxdV7a1y+aDhbpHB0BgIuAAsI1zTc19oWRhfJy+jkZNe4Q8kDVV12esoPSDk+d0DSDwEHAA2IZneEpZMMoenH6xsiY9RVe/ulgmJxuYdAwEIgIOANs4YcJIRHCw/PbS2I9p+PTCOeIKde90/OTx09LDfqZAwCHgALCNIhNwFiaMfnhqoJ8V18vfzMnWtTrPavuFy7oGEDgIOABsoaWrWy40t+h67MNT/T44LVNmxkTr+tkzpVLX4d48EEBgIOAAsAXP8QyKNwLO06er5eHFc3Xd2t0t/3XirK4BBAbvBZyyPfJw1lbJySs0NwBg5DzDU4o6PNMb3ihvkz+ekq5rdW7VgRr3oZQAnM9LAadQ8nJKZJ9pAcBonTRHLKRFRug5NN7y8XkzJTo0VNd5J87I0bqGIS81ubm4qVkf4KmGslSPDwD/FtRrMfUYlcuOh16RxxZky+aiEuu6QvJzl5j3APuqq3P/NJ+YmKiv8K0Pv5Gvdx/+o/QUSY10L/P2lgxXp3ynaHRDVJmuSPnBqpslPNj+I/k8y8BQ4/6dW5BnhRvJlp25c8wdABgd1XPiOVrBG/NvrqYO6JwTe+NzrQZS39NPzp03LQD+Zlw9ODXbX5B1uTGypfQeWdrXkzPyHhzPTx0AAtve2gb59rkLuv7qgllS0Bqua2+6LaZL9tf1T2S+nj219VLe5l519Y1FcyQrKlLXACaet3oix96Dc2iXFW5ENuercAMAY3e6yb08XB2WOWuCwsTbTaHSG5Y0otenZk7X34vy3ZKLbBQI+KExBpxCybu/Sja89IDcl2luAcAYnTH736ieku01vj8g81BLmNyTlqzrkpY2+XXFyE41B2AfYxyisgJO1mHZZlrD2fDSRsldaRqADTEx0x66rD+C1r+6V1/vnZYhrpAE845vfXROsnxszztS3d6hj47YsupmSXfZc6iKZxkYygurqDxGPwcH8CU+FOxB7X/zmf2Hdf3wonlS2myfVUu3JIfKFw669/Zamhgv/3nLMl3bDc8yMJT91z8CcLSBG/xNxAqq8ThQ0yV3m40CC+oa5HeXK3QNwP4IOAB86l2zu7A6/XvX5bGfID5R/nbeLEkMd6/q+v6pc33L2QHYmxcDTobc99RGhqcAjNgvz1+S/dW1ul4c753jGbxtW3GdfHrhbF03dXbJm+XVugZgb/TgAPCJwvpG3SOixISFWiHCvpuFrkpLkbiwMF3nV7GiCvAHBBwAk66qrV2+eviYqCUOwUFB8uiKxbLjQv9cHLvZcqpKbk9L0vXhunpp7/b9UnYA10fAATCpOnt65J8PHZMrnV26nbtwjuytbNe1nd2e6t4Xp6unt29YDYB9EXAATKrHj52Skib3ZOL7pk+RC80hura7m5ISJTTYvb8xw1SA/RFwAEyaF0svyR/Kq3R9U3KihAXbc2LxcJ49WyO3WN+zkk8PDmB7BBwAo6Lmz4zFgZq6vknFU6Nc8sVlC3TtTzzDVGo1lZokDcC+CDgARuy5s6Wycfd++djeA/KbS+Xm7o1dbG6Vfzt6QteRISHy6MrFsu2ce/8bf+IJOArDVIC9efGoBsC/sL39yB2rb5RvHj8tF8yhmB4pkRHy51lT5d5pmfq8puG0dHXL3719SC63tOr2v1rh5nBtt6790fH6S3Ki4YpMj46Sp1fdbO76Fs8yMBQ9OACuSYWTb584Iw+/c6Qv3GS4IiXTHDpZ3dYu3zt5Tja+uV92XiwbdpffR48c7ws3fz07y6/DjZJjenHUvw/PPxcA+yHgABhWflWtfHzfAfmVFVw8PjJrhqxOy5ZV1mvz0gUyMyZa32+0gk2eFYQ+/Ea+7unxrJJS4ehQbb2u1fBOc5dL1/5sVVr/MNVb1r8jAPbEEBUCFt36w6vr6JCnis7KmxX9RxLMi4uRRxbPk99dHjxEpSxLDJFtxefl5IBDM5Vp0S4998ZT/9etK+XH55wRCPZWlkh5a5v1zx4vj9vghHGeZWAoenAA9PntpXL5+N53+8JNeHCw/J+5MyXPCifDhRvlaF23LEmYKk++Z7nu3QhybxXTF25cISHytZVLHBNuFM9kY3XCuBrGA2A/9OAgYPFTbz81l0QNLR21PrA9liTGy2cXz5OXR3mEwgenx8rzJRf1nBxFHcNwxApBTpKTGi6fO3BU1/+4ZL68LzNN177ijWe5tbtb3qqskYq2dh1KI0OC9VWd8q5WvgGTRfWMegMBBwGLgNPvb986KMVm3oz6QPv43JlW6AnV7bH6i5kJcry+UQrqnHlu065LZ6Spq0v+KD3V53v6jPVZVvv57Kuqkd0V1Rw/AdvYdfcaU40PAQcBi4DjpuaSfHTPO7pWO/X+w6K58uJ5NrG7kfqOWnm1rFKirED4y7WrzF3fuNGzrIbSKtva9fyqVjOkpv67v2J9/4DdEHCAcSLguL1Qekl+YHYY/m7OTdaH3vBzbTDYgniRfztapOuv37REHz3hK9d6ltt7euSJY6f6jse4loiQYLk1JUnuSEuRpIhwcxfwDYaogHEi4Lh9/t0COVJbL+muSOsDLtvcxY08OCtJ7n99n65jw0L1JOsZ0VG6PdmGe5YvtbTKvxw5LqVNQwNrfHiYJIWHS3ZMtKxJT5b3WOHmmTPszAz7+MS8VFONHQEHAYuAI3Kls0v+/I23dP1nWVMlSGJ1jZGZFtUt/+/EaV0nWoHhW7cu1xshepsaXlJ7C7V191ivbvPqkV7rr3lxsZLZ2613kvY8y3sra+TxYyf7hqPmx8fKpxbMluSICHmhtH8iOWBXBBxgHAg4oudgPF54UtdqP5f8qg5dY+SSItply6liXatw8833LPfqMI/qifmHd45IQ8fQXaIHmhXtkmXJiXrZ+u8uV5i7Ih+YmiFRoQmmBfgHbwQc9sEBAtjeSvd+N2qi7JKEOF1jdGrbI+SvZk7XtZq4+9kDR3XPmDfUtHfIP75bcMNwo5xrbpWXzl/uCzehwUHymYVzCTcIWPTgIGAFeg9OR0+PPPD6W/p6V2aaJIQnmXcwFl09jbL9wmVdqyMs1JwcFRzHSoUk1XPjOQNM9cQMt99OVVu77CurkMLGJqk3wSo5Ily+umKRvFHeptuAv2GIChiHQA846qyprxw+pusvL18ox+r5o2C8rnTWDRoeUhvlzYiJkulRLn1Vk5DVKeTTrPb1qDk2nztQIKca3ZssjnSY6QNTo+VIXYNeDfXzEvcZYIA/IuAA4xDoAefJ46dk16UKPZTx4tpV8iyraMZt09xUefTocdlXef1/l2HBwTJVhR4r7MyINlcrAKngE2T99YWDBX27Sqtem88vni9bTl9/qTfgJAQcYBwCPeCo1VNqGOS21CTrg9W3Rw04zf0z4uR8c4uUNjVLqXU939QqJc3NfauarkftJO35OhVuEhk6RAAi4ADjEMgBRx2hoOZ3KGrn4vPNnDU0Gf7MBJ/iphY9t6bEuqp2c9fQScl3ZqRKcoT7UE8g0BBwgHEI5IDz9OlifSCm8vP35sjPmK/hUw9kxeugo/a6UdfQoGAJC2ZVGwKXNwIOy8SBAPRmhXt5+KKEOMKNDajN996p7pSqtnBxhSQQbgAvIOAAAUb1EFS0upcP357KEAgAZyLgAAFm4Aqf96anmAoAnIWAAwQQdbr0bjM8pZYmb7/g3mcFAJyGgAMEALXs+KfFF+TBN/fLmStN+t6qNIanADgXAQdwsKauLnnubKls2P22PHOmRBo63WcaqQ3l7s5M1zUAOBHLxBGwnLxMvK6jQ16+UCYvlF7S2/57qDOSPjJrhpxo4Lc9APtiHxxgHJwYcKrb2uV/Si7oIxjUIZoe8+NjZcPMGXK07sY76QKArxFwgHFwUsA51dgkb5RX6h6bgRYnxMmGWTPkYM3QnXIBwK4IOMA4+HPAUauhDtbUyVtVNZJfWds3t8YjKyZKPjl/tt48DgD8DQEHGAd/DTi/u1whTxw7ZVqDpbsi5W/mZMnpxiBzBwD8D0c1AAFo58UyU7ktjI/VE4e/detyuSMtm3ADABYCDuBHylvbpKjBvTnf+ulT5Bd33i6LEqZKW3eU7K5o1/cBAAQcwK+8VlZpKpE/npouPy12D7MBAAYj4AB+RM2/UTJdkVbYadU1AGAoAg7gJ4qbmqXMnAJ+9xR2IQaA6yHgAH5i4PDU+zLTTAUAGA4BB/ATr5VX6evcuBh5mVPAAeC6CDiAHzhe36iPYVDWZox/fwgAcDoCDuAHXje9N2qHm7s4BRwAboiAA9hcT2+vvFbunn+zJDFefl5Sr2sAwLURcACbO1RbL02d7sMyGZ4CgJEh4AA294YZngoOCpL3phNwAGAkCDiAjXX19sruimpd35ycINvYuRgARoSAA9jY21U10trdreu1Gex9AwAjRcABbGzHBffJ4eHBwbIqNVnXAIAbI+AANnXuSrMcrnWvmMqxws2Pz9XqGgBwYwQcwKaeO1tqKpENs6abCgAwEgQcwIbOXmmWt6pqdL06LVl+f7lF1wCAkSHgADb0zJkSU4n8zZxsUwEARoqAA9hMUcMV2V/tnm+jVk795lKzrgEAI0fAAWzGM/dGbez30TlZugYAjA4BB7AR1Xvzbo17M7+7p6TJyxeu6BoAMDoEHMBG/tvMvQkNCpK/nkXvDQCMFQEHsImjdQ19+97cOy1TXjzfqGsAwOgRcACb8KycUrsWs+8NAIwPAQewge+dPCfH6t09NvdNnyLPlzToGgAwNgQcwMd+dbFMfnn+kq5nxkTLg7Nn6BoAMHYEHMCHDtbUyX8VndF1WmSEfP3mJfLcWc6cAoDxIuAAPlLc1Cz/cuSE9PaKxISFyjduXsrQFAB4SVCvxdSjVpC3VTY9YRrGqrz3y5PrM0wLsK+6Ovd+M4mJifo6marb2uVTbx+Wuo4OCQ0Okv+8Zbnsrmgz7wJAYPvEvFRTjd04Ak6h5GVdkrWl98hSc0fK9sjDOSUihBz4AV8GnE373pXzze4DNL+8fKEcqx/zzxkA4DjeCDjjGKJaIrkDw42SOUfuXCeyr7Ta3ABwtQM1dX3h5uNzZxJuAGACeHcOzqEj8thOl2z+0BJzA8DVPEcxBFmvD0yjpxMAJsK45uC4lcuOh16xgo1VPrJC8nNHHm48QwRAIPnssdNysbVd5kS7ZHkKxzEAwNV8PETlkSH3PbVR8kut15pLkpO1VfIOmbcADNLY1aXDjbIsLkZfAQDe590hqpX3yJZHRLZt2SM15haAfgfr+08HXxZPwAGAieKFIarBara/IOtyY2TL1ROQAZvxxSqqrxcUyRvlVRIZEiIvrr1dfniaCfkAcDWbDFENdrm0VWRdtEwxbQBu6ieJA9XuULUiKZ5wAwATaOwB59AuyXlo8FCU6r1RG/9t2HSHJJt7ANxONzZJU1eXrm9Knvy9dwAgkIxzo7/Dss203FyyOf8BuS/TNAEbm+whqp8WX5BnzpTo+oerbpFfX2rSNQBgMB/vZAz4t8kOOJ87cFSO1jVIamSE/FH6THMXAHA1W87BATBUW3e3HKtv1PXNDE8BwIQj4ACT4HBtg3SbztKbkxP0FQAwcQg4wCQYeDwDE4wBYOIRcIBJcNAEnLlxMbLtnLsGAEwcAg4wwara2uViS6uumX8DAJODgANMsHfM5n4Kw1MAMDkIOMAE88y/UcczLE6I0zUAYGIRcIAJpNZNHa6t1/WyRI5nAIDJQsABJtDJhit9xzMw/wYAJg8BB5hA2y9cNpWaf8P+NwAwWQg4wAS50Nwir5dX6npJQpz89lKzrgEAE4+AA0yQH50pEc9Jb/93/mx3AQCYFAQcYAIUNzXLvsoaXd+akiRvlLv3wQEATA4CDjABtpwqNpXIx+ZmmwoAMFkIOICXFdY19O19szYjVX5/uUXXAIDJQ8ABvOz7pvcmOChI/vccem8AwBcIOIAXqWMZTjVe0fUHpmbIjgvuGgAwuQg4gBf98LS79yY8OFgenD1D1wCAyRfUazE1EFDq6tzzZBITx7bDcGtXt1xoaZUy61Xe1iYVre2y82KZfu/D2dOkuzdG1wCA0fnEvFRTjR0BBwFrrAHnfHOL/Oh0ibxV5V4GfrWo0BD58R23yrbi/lPEAQAjR8ABxmG0AaestU2eO1sqr5W5dye+2rRol2RFR8ldmelyrL7H3AUAjBYBBxiHkQac2vYO2XrufN/wk8fSxHg9kTgrJsoKPWzkBwDeQsABxmGkAefB3fulsq3dtERWJiXIxtlZsq+y/x4AwHu8EXBYRQVcx44Ll/vCzaq0ZPnObStlVmwG4QYAbI6AA1xDW3e3nnOjZLgi5UvLFsprnCkFAH6BgANcw/MlF+VKZ5euN82bKU+frtY1AMD+CDjAMFSw+UXpJV3PjYuR4/VMVQMAf0LAAYahhqbUEJXyyfmz9RUA4D8IOMBVylvb5FdmSfjNyYmylwnFAOB3CDjAVZ45UyI9ZvcENfcGAOB/CDjAAMVNzfJ6eZWu35uRKr+/3KJrAIB/IeAAAzx9qlhfg4OC5GNzsnUNAPA/BBzAqGhtkwM17t2N752aITsuXNE1AMD/EHAAQ00u9libMf5twgEAvkPAAYyKAedNJUdGmAoA4I8IOIChhqiUIOuVRsABAL9GwAEMz6GaSRHh8kOOZQAAv0bAAQxPwKH3BgD8HwEHMPoCjitSXwEA/ouAA1jUvsWeOTj04ACA/yPgAJb6jg7pNsczEHAAwP8RcABLRWv/EvG0SIaoAMDfEXAAS2Vb/yZ/9OAAgP8j4AAWzwRjJc1FwAEAf0fAASyeIaqI4GDZds59HhUAwH8RcABLlenByYxy6SsAwL8RcABLhZmDw/wbAHAGAg5gYRdjAHAWAg4CXntPjzR1dumaCcYA4AwEHAS88paBS8TZAwcAnICAg4DnmX+jMEQFAM5AwEHA86ygUgg4AOAMBBwEPM8eOCFBQZJCwAEARyDgIOB5VlAlR4TLllNVugYA+DcCDgKe5xyqdBcTjAHAKQg4CHjsgQMAzkPAQUDr7u2VagIOADgOAQcBrbajU3pNzR44AOAcBBwEtGor4HiwizEAOAcBBwFtUMBhiAoAHIOAg4A2MOCwigoAnIOAg4BW3dGhr3FhYfLsmRpdAwD8HwEHAa263d2Dw/AUADgLAQcBrcoMUTHBGACchYCDgOaZg0MPDgA4CwEHAetKV7d09PTomj1wAMBZxhVwCvK2Sk7WwNcLsqPMvAnYnGeCsUIPDgA4yzgCTqG8/kSqbCndKPnmtTNP5LEcQg78g2eCsZLOHBwAcJRxBJwlklt6jyw1LSV5/WrZvK5VHnu+0NwB7GvgHjip9OAAgKN4eQ5OtZTsNCVgc1VmiCokKEgSwsN1DQBwhqBei6nH79Auybm/Sja8tFFyV5p711FXV2cqYPJ98+x5ebuuUTIiw2V1+ixzFwDga5+Yl2qqsfNiD06h5FnhRtZly0dGEG4AX/PsgZNK7w0AOI6XAk657HjosGyTVNny1B2SbO4CduaZZJwSHqavAADn8MIQlQo3r8hjO9WKqsGTjgG76rYe+3tf2aPrB2dnSUuXS9cAAN+zwRBVoeRlEW7gf8pa2kzFHjgA4ETjCDgq3ByWbeuyZSfhBn6msq0/4GS42MUYAJxm7ENUZsXU8OjRgX219/TIp98+JKVNLbq9dc2t8svzjboGAPieN4aovLtMHPAD/1F4Ul4tq9T1n2SkSEREiq4BAPZgs2XigP395lJ5X7iZHe2Sv5qarmsAgLMQcBAwipua5TtFZ3UdFxYmj8yeIS9Wd+s2AMBZCDhwnDNXmkzVr7mrS75y+Lh09vTo9heWzpdXG4J0DQBwHubgwDGudHbJNwqL5J1q9xEgU6JckhUdJbNio+VQbb0cr3dPJN44a4a0dkfpGgBgP0wyBowTDY3ytSMnpLrdfYDmtSxPSpA5sRmmBQCwIyYZA5afl1yUv99/pC/crM1Ik7+cOV1uSU6U2LBQfU9JDA+XLy5dYFoAACejBwd+6+ohqfDgYPn7RXPl7JXBc2s+OD1WTjc2SXpkhPyhon+DPwCAPTFEhYB1sKZOnj5dbIWZZt2eFu2SLy9bJLsuu9sAAP9FwEHAqevokKeKzsmbFf27aK9JT5HPLp4nz52tNXcAAP6MgIOA0WM9pi+dvyzPnSuV1i733jVJEeHyyfmzpKhBNwEADsEkYwSEps4u+cz+I/L9U+f6ws2fzpgqP1x1C+EGADAsAg5sTYWbz797VE41XtHteXGx8lTOTRIcFCtbzzEkBQAYHkNUsC1PuPFMJH4ga5r1vzG6BgA4F0NUcCwVbh4+cKQv3KghKcINAGCkCDiwHU+4KW1q0e0/mZaph6QAABgpAg5spbW7Wx45cLQv3Nw/Y4pEhMTrGgCAkSLgwFZ2V1RLSZN7WOqD0zMlJChO1wAAjAYBB7ayp7JaX1MjIyQ8mJ4bAMDYEHBgG2qPm3dr3OdK3Z6arK8AAIwFAQe28VZVjXT1uHctuCONgAMAGDsCDmxjtxmeig0LlaWJDE8BAMaOgANbaO/pkf3V7p2J70hLkadPu8MOAABjQcCBLbw9cHgqPUVfAQAYKwIObGF3RY2+ukJD5KakBF0DADBWBBz4nOq5UT04yqrUZIanAADjRsCBz71TU6vn4Cir0xieAgCMHwEHPqd2L1YigoPltpQkXQMAMB4EHPiUGp7aZ4anbktNkh+dYXgKADB+BBz41MHaOr2DsbKG1VMAAC8h4MCnPMNTocFBchvHMwAAvISAA5/p6e3t27341pQkefaMe6gKAIDxIuDAZw7W1vcPT7F6CgDgRQQc+MxBc3K4ksPwFADAiwg48JkjtQ36Oi8uRraec59DBQCANxBw4BOt3d1y9kqTrpdzNAMAwMsIOPCJw7X14j5a0wo4iQQcAIB3EXDgE0fr3MNTQdZrSWKcrgEA8BYCDnziSG29vs6Pj5Ufn2X+DQDAuwg4mHRq/s25K826ZngKADARCDiYdIPm3yTFmwoAAO8h4GDSeZaHhwQFybJEAg4AwPsIOJh0R+v659/8N8czAAAmAAEHk6qps2vA/Bt6bwAAE4OAg0mllof3z79hgjEAYGIQcDCpPPvfqPk3SxLY/wYAMDEIOJhUR8z8m4VWuGH+DQBgohBwMGmYfwMAmCwEHEwaz/CUsoL5NwCACUTAwaTxDE+FBQfLwvhYXQMAMBEIOJg0ng3+VLhh/g0AYCIRcDAp1Pyb4ib3/BuGpwAAE42Ag0lxZMD8GyYYAwAmGgEHk2JPZbW+RgQHy76qDl0DADBRCDiYcHutcPNaWaWu35OSpK8AAEwkAg4mVFVbuzx+7JSu48PCJHfRHF0DADCRCDgBpLq9Qxo6Ok1rcvx7QZG0dnXr+nNL5svPit1LxQEAmEgEnADy+8sV8qm3D8nF5lZzZ2L9tPiCFNY36vq+6VPkUG2XrgEAmGgEnADyihVwKtva5TP7D8txEzwmSlHDFXnmTImus2KiZNO8mboGAGAyEHACxAkrcFxscffcNHV1yT+8c6RvZZO3tXV3y9cLikxL5J+XLbTCDhv7AQAmDwEnQLxaVmGqfv965IQ8X3LRtMavpKlZnjtbKp9++7CUt7bpe59eOEd+e8m9wR8AAJMlqNdiajjYA6+/pXtuVqUly0dnZ8kXDhZKbbt7P5r106fIQwtm63q01ATiX5RelDcrquV8c4u563ZbapJMi0ozLQAARuYT81JNNXYEnACghqJUb43y5eWL5Fh9j/x5VrxstkKO5/gEj9iwUJkS5ZLkiHBJj4yUtMgISXdFWNdISYkMl5q2Dimob5CCugZ9OviVzqEThzNdkfLHU9LlvhlTZNu5OnMXAICRIeBgRL5y+JjkV9VKTGio/OzOHPnRaffcmwdnJ1nvHZcjteNfup1kBaI7M1LlfRlp8nr55KzSAgA4EwEHN6T2vfnwH/J1rZZqhwXH6XqglUmhUtHWJtVt7da1XW/Op16eeTTDiQoNkYXxcbI4IU6WJsZbAYrjFwAA3kHAwQ29dP6yfPfkWV1/+7YV8kb5tUPLcD6UHd8XeNQS8/DgYFlkhZrfXx483wYAAG8h4OCG/u7tQ3KmsUkyXJGyOi3b3AUAwL68EXC8tEy8UPKytkreIdOELVxobtHhRrl3Woa+AgAQCLwScGq2n5RtpoZ97Lrs3vsmyHrdlZmuawAAAsG4Ak7N9hckJ2urrMtl1Yzd9PT2yu9MwFmRlCAvljboGgCAQDCugJO8/gHJL90o+fnZssrcgz0crK3vOzn87in03gAAAot3JhmX7ZGHc0ok+6WNkrvS3BuBujo2gZso3z53QfbWNkhkcLBsWbFQXqrpNu8AAGBvNppkDDu52Nquw42SkxRPuAEABBwCjsO09/TIk2fPm5bIvenJpgIAIHD4dIgKY1Nf2y4RESHiig41d/p97egJ2V3hPoohd+EcudQy9GsAALAzhqgCSMHBKvniQ7v1qrX/tfJ5Wbvof+Qv73pZnv1OofkK967FnnCzJj2FcAMACFgEHD/w82dOyqY/3SWv7iw1d9xKzjTId//jsHz03l/L/rPV8oNT5/T9GdFR8rnF83UNAEAgGtcQldoHZ7g9cFblvV+eXM/Oud7w+5dL5Euf2mNa1xY5zyURn0+TiJBg+V7OTfKri+4djAEA8DecReUQb1fVyi9KL5rWYEc+dUoay0Z2QGbkXyTKo4/cJkUN/CcFAPgvAo4DHKipky8e7J9HM1BXYas0f6vStG4seV6MrP/OatMCAMA/McnYzx2ta5BHDx/XtSs0RJYlxg96xVbpt0as5hTDUgAAKD7twQkKUsdAAgAAeJdPA84PTo2yi8Ih1ma45HPvHpXWLvcOw1+/aYnclJyo64F2vVQsX/nMXtO6scxp0fLLvX9qWrgRz1EhiYlD/90D/oRnGRiKIapJdveUKPmndwv6ws1XVywaNtwot67JNNXIrL5rmqkAAAhsBJwJ8r/nJMua9AiZGtUlbd0NUtRwWV6+cEr+9q2D0tTVpb/mn5YukNtTr32UQmJypPz1Jxeb1o1t+PhCUwEAENgYovKSVanhUlDfKOeuNFuvJrnYMnR/oIH+ftFc+cDUke0VtPmTb8prv+4/X2o4jz21Rt63Lsu0MBJ068MpeJaBoQg4XpAS0SHfN7sID2d2bLRkx0TLLOs6OzZG5sbFSEzo6I5R+METR+TH3z0mnZ095o7b0ptT5ZOfXyE35aSbOxgpPhTgFDzLwFAEnHFKjeyQ7510hxtXSIgOLyrIzIqJkZnWdZ7V9pbWli45sK9cKsta9GGbcxYmyoKlSeZdjBYfCnAKnmVgKALOOAwMN7FhofLN9yyX6dFRug3740MBTsGzDAzFJOMxmhLV1RduokND5fFblhFuAACwiYDswfng9Fipams3rcHCgoMkNChYQq1rmLmGBgfr+572by6Vy1NFZ/XXR4WGyOM3L5M5XhyKwuTgp144Bc8yMFRABBy1sd6x+kZ9NEJhfYM0dHSad8Ynwgo+37hlmSyMjzV34E/4UIBT8CwDQ/k04PzFH/JF/erRYaESHRqiVxZFWa+YsBA97ONu99fqa1Tt+fr/Ka43/0+DrU6L0IGmwAo0FW1tUtrUYt7xriescLMkMd604G/4UIBT8CwDQ/k04Nz7yh7pHucvHxmiQo87+KgwVNRwxbwzlPraRQlxstR6LYiP1UNPV+vo6ZGunl7p6u2RTnVVbet77LSu6nv13FtqBRv1gv/iQwFOwbMMDOXTgPPc2VKp7+iU5q4u8+qWps4uaTF1a7f7OIOxSggPk8Uq0FhBZHFCvFeXbMP/8aEAp+BZBobyacAZiStW4FHhRx1voM5vUlcVglQAGhiM9NdY99NdkTrUqHkxrGrC9fChAKfgWQaGsn3AASYKHwpwCp5lYCj2wQEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI4T1GsxNQAAgCPQgwMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHs6gQYMplx0OvyGM7TXOgddmy86k7JNk0AXsqlLyswyIvbZTclebWQGV75OGcEtlnmjzXsK/rPMtXP8cDrMp7vzy5PsO0ro0eHASmR1ZIfunGwS8+BOAHaraflG2mHsJ8KGRbHxju5/r9sllKZF1eofkCwD6u+ywbG/qe5f7XSMKNQsABAD9Qs/0FycnaKutyW82doQqet37iXZctH+n7aThD7tuUKvLESdlRZm4BPjaSZ9kbCDgA4AeS1z/g/gk2P1tWmXuDlUtxkXVZkDC4J3LlVNkgrVJSbtqAj934WfYOAg4C0xOH9U8QnlfeIXMf8FvVUrJTZFVWimkPVnKehAP/s+3+/j+nc7J2SYG5PxIEHASYDLnvqcHjuTvzXPo3ESEHAGwi8w55csCf03o+2boq2TSKkEPAQcBLXr/a+o1j/aSwZY/UmHsAADuxfjj9khrSqpL/3j6y3kgCDmD9xpm5wJSA30qRbCuo7yutNm3AYTITJNuUI0HAAa41ORPwKyaoF9UP7oksq5cSccmdt45saS1gW/pZFsmewTJxYKhDuyTnqj1Barbvlcd2umTzh5aYO4B/WvqhbFm1s0R+0jefrFx2/KtaOp4uqzPNLcAPFORdPS/S8ywP3Abh+tjJGIFl2N0xU2VL6T2y1LQAO1J7hwy3b8iQXV3ZyRg2N5JnedivURu05o78B1ECDgAAcByGqAAAgOMQcAAAgOMQcAAAgOMQcAAAgOMQcAAAgOMQcAAAgOMQcAAAgOMQcAAAgOMQcAAAgOMQcAAAgMOI/H+L1vG0uBHpWAAAAABJRU5ErkJggg==" - } - }, - "cell_type": "markdown", - "id": "6ca1e8de", - "metadata": {}, - "source": [ - "![cp_oscillations.PNG](attachment:cp_oscillations.PNG)" - ] - }, - { - "cell_type": "markdown", - "id": "69c083b9", - "metadata": {}, - "source": [ - "In this picture, the blue area represent the oscillations for the MedInc variable. The average of oscillations is quite high, because the observed data point has a relatively low value for MedInc, and raising it just a bit (or a lot) will increase the rediction for mean house value quickly." - ] - }, - { - "cell_type": "code", - "execution_count": 43, - "id": "00e134e9", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Calculating ceteris paribus: 100%|██████████| 8/8 [00:00<00:00, 42.78it/s]\n" - ] - } - ], - "source": [ - "## CP oscillations\n", - "prediction = model.predict(X_test_sample)\n", - "cp_sample_res = exp.predict_profile(X_test_sample).result\n", - "\n", - "cp_oscillations_unif = {}\n", - "cp_oscillations_emp = {}\n", - "for feature in data.feature_names:\n", - " feature_sublist = cp_sample_res[cp_sample_res._vname_ == feature]\n", - " feature_value_list = feature_sublist[feature].values\n", - " cp_oscillations = (feature_sublist._yhat_ - prediction).values\n", - " cp_oscillations_abs = np.abs(cp_oscillations)\n", - " step_size = feature_value_list[-1] - feature_value_list[-2]\n", - " emp_corr = [len(X_train[(feature_value - step_size * 0.5 < X_train[feature]) &\n", - " (X_train[feature] < feature_value + step_size * 0.5)]) / len(X_train)\n", - " for feature_value in feature_value_list]\n", - " cp_oscillations_unif[feature] = cp_oscillations_abs / len(feature_sublist)\n", - " cp_oscillations_emp[feature] = cp_oscillations_abs * emp_corr" - ] - }, - { - "cell_type": "code", - "execution_count": 44, - "id": "08a41343", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAh0AAAHwCAYAAAACUt0mAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8rg+JYAAAACXBIWXMAAAsTAAALEwEAmpwYAAA/Y0lEQVR4nO3de3zP9f//8ft7m1MNsxl9SkXKRAenMlRyyMxOhhA5RKQsEX0ji0KSQ4o+pVKfr4q2ytucllMrKofkUJScPmGTRjNsTtve7+fvDz/vb8thDttzNrfr5dLl0vt1eD4fj9erl+5er9f2dhhjjAAAAAqYV2EXAAAArg6EDgAAYAWhAwAAWEHoAAAAVhA6AACAFYQOAABgBaEDKKbefPNNJSQkSJKCgoJ08OBBOZ1OPfHEE3nuGxsbq82bN0uShg8frpUrVxZkqcrMzFTnzp0VFhamxYsXF+hc//T3/t555x09+OCDGjZsmNUaJCk8PFxr1qxRamqqOnfufN5tk5OT9fTTT5913d/3nzp1qkaNGnXRtdg+/7h6+BR2AQAKxjPPPHPJ+65cuVKdOnWSJL3yyiv5VdI5bdmyRWlpaVq6dGmBz/VPf+/viy++0MSJE9WgQQPrdZxWuXJlxcXFnXebP/74Q7///vsl758X2+cfVw/udAD57IsvvlBYWJgiIiLUvXt37du3T2vWrFH79u311FNPKSIiQg8//LB27tx51v3j4+MVHh6uyMhI9erVy/M/lx9//FEdOnRQu3bt1K5dO88dgaNHj2rYsGEKCQlRmzZt9Prrr8sYo6FDh+qDDz44Z50bN25U165d9fDDD+vBBx/UCy+8IEmaPHmy9u/fryFDhuinn35St27dtGjRIknSsmXL1LZtW0VEROiRRx7Rzz//LOnU36iHDh2q3r17q3Xr1urSpYtSU1MlSbNmzVJkZKTat2+vLl26aMeOHbnq+O9//6sXXnhBqampioqK0okTJ847T+/evRUREaEhQ4bkGiclJUV169Y962en06knn3xS/fv3V3h4uKKjo7Vt2zZJ8vQ3cOBApaamavjw4UpMTNSff/6pfv36KSIiQuHh4Zo+fbpn3KZNm6pXr14KCQnRhg0b1KJFCw0fPlxhYWEKCQnRV199pb59+6ply5YaOHCg3G73Gcd/x44d6tixoyIiIvTMM8/o2LFjZ9S9c+dOde7cWe3atVN0dLRmzpwpl8ul2NhY7dmzR7179z5rPX8/Djt37lTXrl0VHh6u5557TpmZmZKk5s2ba9OmTZ7tTn/O7/MP5GIA5JstW7aYhg0bmj/++MMYY8x//vMf8+KLL5rVq1ebmjVrmrVr1xpjjJk1a5aJjo4+Y/+VK1eali1bmrS0NGOMMbNnzzahoaHG7Xab7t27mwULFnjmeemll4wxxowdO9YMGjTI5OTkmJMnT5quXbua1atXm+eff95Mnz7dGGNMjRo1TFpampk9e7bp27evMcaYQYMGmdWrVxtjjMnMzDQNGzY0mzZtMsYY06xZM/Pzzz8bY4x59NFHzZdffml27NhhGjdubPbs2eOptUmTJiYjI8NMmTLFtGjRwmRkZBhjjHniiSfMm2++aXJyckzt2rVNamqqMcaYOXPmmLi4uDP6Xr16tQkLCzPGmDznCQkJMdnZ2WeMkZycbOrUqXPWz7Nnzzb169c3+/btM8YYM2rUKPM///M/ufr7Z99du3Y1H374oTHGmCNHjpiIiAizYMECk5ycbGrUqOE5l6c/L1u2zBhjzIgRI0yzZs1MRkaGOXHihGnSpIlZt27dGfVGRUWZzz77zBhjzI8//miCgoLM6tWrc9U9bNgw8+677xpjjNm/f78ZOHCgcblcuY7X2eo5vf+UKVPMgw8+aNLS0ozb7TaDBw8248ePP6PXf37Or/MP/BN3OoB8tGrVKt13333617/+JUnq2bOn55l6zZo1Pbft27dvry1btig9PT3X/t9++63atGkjf39/SVK7du2UmpqqlJQUhYaGatSoURo8eLB++eUXPfvss5JO3Qrv0KGDvL29VbJkSX3yySdq2LBhnrWOGzdOGRkZmjZtml5++WWdOHHC87fts1m9erWCg4N14403SpIaNWokf39/z7P/e++9V76+vpKkWrVq6fDhw/L29lbr1q3VuXNnjRo1SmXLllWHDh3OW1de89SpU0c+Phf/ZLh27dq67rrrctV3LseOHdP69evVtWtXSVLZsmXVrl07rVixQpLk4+OjOnXqeLYvUaKEmjdvLkm66aabVLduXfn6+qpUqVKqVKnSGXOlp6dr69atatu2rSSpfv36uu22286o46GHHtL06dMVExOjJUuWKDY2Vl5eZ/6x/c96/jmGv7+/HA6H2rdvf8nvZ1zK+Qf+idAB5CNvb285HA7P5xMnTngeo3h7e+fa1hhz1mX/ZIxRTk6OOnfurHnz5qlJkyb67rvvFBkZqYyMDPn4+OSac9++fWeEmbPp2rWrli9frltuuUX9+/dX5cqVzzr/hdQmSaVLl/Ysdzgcnu0nTpyoadOm6aabbtL777+vmJiY89aV1zzXXHPNWff7+5ySlJ2dnWv9ueo7G7fbfcZ6t9vtqaFkyZK5gk+JEiVynYMSJUqcc+zT85/u67SzBalmzZpp8eLFCg0N1ZYtWxQREaE9e/acsd0/6/m7v/83ZozJtd3f58/KyjpvzZd6/oG/I3QA+ahhw4ZatWqV9u/fL0mKi4vThAkTJEm//fabfvvtN0mn3tuoV6+eypUrl2v/++67T4mJiTp48KAkafbs2fLz89PNN9+szp07a8uWLWrXrp1Gjx6tI0eO6PDhw2rUqJHmzJkjt9utrKwsDRgwQGvXrj1vnYcPH9bmzZs1ZMgQtWrVSqmpqdqzZ4/n3QNvb2/P/0xOCw4O1vfff6/k5GRJp+7q7Nu3T3ffffc55zl48KCaNm0qPz8/9ezZUwMHDtTWrVvPW9ulzCNJ5cqVU3Z2tuedkct5KdXX11d33323Zs6cKUnKyMhQQkKCGjdufMlj/p2fn59q166tzz//XJL0yy+/eN4x+bvBgwcrMTFRYWFhGjlypHx9fbVv3z55e3ufEarOJSkpSYcPH5bL5VJ8fLweeOABScp1l2Ljxo06cOCAZ5/8Ov/AP/HTK0A+CgoK0nPPPafHH39ckhQYGKixY8dq165dqlixot544w3t3btX/v7+Gj9+/Bn7N2nSRD179lSPHj3kdrvl7++vd999V15eXhoyZIjGjh2rN954Q15eXoqJiVGVKlUUExOjV155RVFRUXK5XGrTpo1atWqlpKSkc9ZZvnx59e3bV9HR0fLz81OFChVUr1497d69W40aNVLLli01aNAgjRkzxrPPrbfeqpEjRyomJkYul0ulS5fWtGnTVLZs2XPO4+/vryeffFI9e/ZU6dKl5e3tnWvMs7mUeaRTj0Cee+459enTR/7+/mrduvV5t8/LxIkTNWrUKDmdTmVlZSkiIkLt2rXT3r17L2vc015//XUNGzZMcXFxuummm3TLLbecsc1TTz2l4cOHKz4+Xt7e3mrZsqXuvfdeHTlyRN7e3urQoYMmT5583nmqV6+uJ554QkeOHFH9+vXVt29fSdKQIUP00ksvKT4+XrVr11bt2rU9++TX+Qf+yWG4BwYUuDVr1mj06NFasGBBYZcCAIWGxysAAMAK7nQAAAAruNMBAACsIHQAAAArCB0AAMAKfmS2gKWnH5XbXbxemwkI8FVaWmZhl5Hv6Ktooa+ihb6Klkvty8vLoQoVrj3nekJHAXO7TbELHZKKZU8SfRU19FW00FfRUhB98XgFAABYQegAAABWEDoAAIAV/HIwAACuUtk5Lh1KP3bG8sDAsjpwIOOix/PyciggwPec63mRtIAlbUvR8eycvDcEAMCysNpVrc7H4xUAAGAFoQMAAFhB6AAAAFYQOgAAgBWEDgAAYAWhAwAAWEHoAAAAVhA6AACAFYQOAABgBaEDAABYQegAAABWEDoAAIAVhA4AAGAFoQMAAFhB6AAAAFYQOgAAgBVFKnSkpKQoKChII0aMyLV8y5YtCgoKktPpvKBx1qxZo27dukmSpk6dqqlTp+Z7rQAAILciFTokyc/PT99++61cLpdnWWJiovz9/QuxKgAAkBefwi7gYl177bWqWbOm1q5dq+DgYEnS999/r8aNG0uSVqxYoSlTpignJ0dVqlTR6NGjVaFCBX333Xd69dVXVapUKVWrVu2sY3fr1k133nmn1q1bp4MHDyo2NlZNmzbV3r17NWzYMB08eFClS5fWmDFjVLNmTWs9AwBQHBS5Ox2SFBoaqsWLF0uSfv75ZwUFBalEiRI6ePCgJk2apA8++EAJCQm67777NHHiRGVlZWno0KGaMmWKnE6nSpcufc6xs7OzFR8fr2HDhunNN9+UJL388ssKCQnRggUL9PTTT+udd96x0icAAMVJkQwdzZo104oVK+R2u/Xll18qNDRUklS6dGnt27dP3bt3V1RUlGbOnKndu3dr69atqlSpkqpXry5Jio6OPufY999/vyTptttu06FDhyRJa9euVVRUlCSpadOmnjACAAAuXJF7vCJJvr6+qlmzptatW6fVq1dr8ODBSkxMlMvlUr169TRt2jRJ0smTJ3X06FH98ccfcrvdnv29vb3POXapUqUkSQ6Hw7PMx+f/DpMxRjt37tStt96a320BAFCsFck7HdKpRyyTJk3SHXfc4QkFJ0+e1MaNG/X7779Lkt5++22NHz9eQUFBSktL02+//SZJWrhw4UXN1aBBA88+K1eu1IsvvpiPnQAAcHUoknc6pFOPWIYPH65nnnnGs6xixYoaO3asBg4cKLfbrcqVK2vChAkqUaKEXn/9dT333HPy8fFRrVq1LmquESNGKDY2VrNmzVKZMmU0ZsyY/G4HAIBiz2GMMYVdRHGWtC1Fx7NzCrsMAADOEFa7qg4cyDhjeWBg2bMuz4uXl0MBAb7nXn/RIwIAAFwCQgcAALCC0AEAAKwgdAAAACsIHQAAwApCBwAAsILQAQAArCB0AAAAKwgdAADACkIHAACwgtABAACsIHQAAAArCB0AAMAKQgcAALCC0AEAAKwgdAAAACt8CruA4q55jSqFXQIAAGeVneOyOh+ho4ClpWXK7TaFXUa+CgwsqwMHMgq7jHxHX0ULfRUt9AWJxysAAMASQgcAALCC0AEAAKwgdAAAACsIHQAAwApCBwAAsILQAQAArCB0AAAAKwgdAADACn4jaQELCPAt7BIKRGBg2cIuoUDQV9Hyz76yc1w6lH6skKoBkBdCRwFL2pai49k5hV0GcFUIq121sEsAcB48XgEAAFYQOgAAgBWEDgAAYAWhAwAAWEHoAAAAVhA6AACAFYQOAABgBaEDAABYQegAAABWEDoAAIAVhA4AAGAFoQMAAFhB6AAAAFYQOgAAgBWEDgAAYAWhAwAAWEHoAAAAVlzRoWPNmjXq1q3bBW//922joqIkST///LMmTJhwUfMOHTpUTqfzovYBAADnd0WHjov1ww8/eP597ty5kqQdO3YoLS2tsEoCAAD/X5ELHTk5OYqNjVWnTp3UokULPf744zpx4oTGjBkjSXr44YclSUFBQTpy5IimTJmipKQkvfPOO3I6nRo6dKhnrG7dumnNmjUyxujVV19VSEiIunXrpj179ni2SUhIUHR0tKKiovTCCy/o5MmTdhsGAKCYKHKhY8OGDSpRooTi4+O1dOlSnTx5UsuXL1dsbKwk6fPPP/dsW65cOQ0YMEDNmzfXk08+ec4xFy9erF9//VULFizQm2++6Qkd27dv12effaa4uDjNnTtXAQEB+uCDDwq2QQAAiimfwi7gYt1zzz3y8/PTzJkz9d///le7du3SsWPHLmvMH374Qa1atVKJEiXk7++vBx54QNKpd0p2796tjh07SpKys7NVq1aty+4BAICrUZELHV999ZWmTJmi7t27q127dkpPT5cx5oL2dTgcubbNzs72LHe73Z7lPj6nDovL5VJoaKjnLsrRo0flcrnyqxUAAK4qRe7xyqpVqxQaGqr27durYsWKWrt2rScIeHt7KycnJ9f2f19WoUIF7dy5U8YYJScna+vWrZKkRo0aadGiRcrKytLhw4f17bffSpIaNmyopUuXKi0tTcYYvfTSS5oxY4bFbgEAKD6u+DsdP/74o+rWrev5fNddd2nNmjVatGiRSpYsqTp16iglJUWS1KJFC0VFReX6cde77rpLb731liZOnKgBAwZo9uzZat26tapVq6b69etLklq2bKlNmzYpPDxcFStWVPXq1SVJNWvWVExMjHr06CG3263bb79dffv2tdg9AADFh8Nc6LMJXJKkbSk6np2T94YALltY7ao6cCCjsMu4LIGBZYt8D2dDX0XLpfbl5eVQQIDvuddfTlEAAAAXitABAACsIHQAAAArCB0AAMAKQgcAALCC0AEAAKwgdAAAACsIHQAAwApCBwAAsILQAQAArCB0AAAAKwgdAADACkIHAACwgtABAACsIHQAAAArCB0AAMAKn8IuoLhrXqNKYZcAXDWyc1yFXQKA8yB0FLC0tEy53aawy8hXgYFldeBARmGXke/oq2gprn0BxRmPVwAAgBWEDgAAYAWhAwAAWEHoAAAAVhA6AACAFYQOAABgBaEDAABYQegAAABWEDoAAIAV/EbSAhYQ4FvYJeQpO8elQ+nHCrsMAEAxR+goYEnbUnQ8O6ewyzivsNpVC7sEAMBVgMcrAADACkIHAACwgtABAACsIHQAAAArCB0AAMAKQgcAALCC0AEAAKwgdAAAACsIHQAAwApCBwAAsILQAQAArCB0AAAAKwgdAADACkIHAACwgtABAACsIHQAAAArCi10bNu2TUFBQVq8ePElj7Fr1y49+eSTeuihhxQeHq6nn35aycnJ+VglAADIL4UWOpxOp0JCQhQXF3dJ+//111/q3r27QkNDtXTpUi1YsEAtW7bUI488ooMHD+ZztQAA4HIVSujIycnRvHnzNGjQIP3666/as2ePXn31VX3wwQeebQYMGKAlS5bor7/+0lNPPaV27dqpffv2WrlypSTp008/VePGjRUZGenZJyoqSvXr19enn34qSZo/f77atGmjsLAwDR06VNnZ2Tp06JD69++v0NBQRUVFadWqVZKkoKAgzzhOp1NDhw6VJDVv3lxjxoxR27Zt1bZtW/36668FfnwAACiOCiV0fPPNN7r++utVrVo1tWzZUnFxcYqKitLChQslSZmZmVq/fr0efPBBvfLKK2rfvr2cTqfeeecdjRgxQpmZmdq0aZPuvPPOM8a+5557tGnTJqWmpurVV1/Vhx9+qIULF8rlcmn58uV68803ddNNN+nLL7/U+PHj9cYbb+RZr5+fnxISEjRgwAA9//zz+X04AAC4KhRK6HA6nQoPD5cktWnTRnPmzNGtt96qrKws7d69W8uWLVOzZs1UsmRJrVy5UlOmTFFUVJT69OmjnJwcJScny+FwyOVynTF2dna2JGnDhg2qV6+errvuOknShAkT1LJlS61du1ZRUVGSTt3diI+Pz7Pejh07Sjp11yM1NZXHNwAAXAIf2xOmpaVpxYoV2rx5sz766CMZY3TkyBEtWbJEkZGRSkxM1IYNG9SnTx9Jktvt1owZM+Tn5ydJSk1NVcWKFXXXXXdp48aN6t69e67xN2zYoDvvvFM+PrlbOx0U/rl8586dqlatmiTJGCOHw6GcnJxc2/x9H7fbLW9v78s/EAAAXGWs3+mYN2+egoODtWLFCiUlJenrr79Wv379FB8fr4iICCUmJmr37t1q0KCBJCk4OFizZs2SJO3YsUORkZE6fvy4unTponXr1mnu3LmesRMSErR+/Xo98sgjuvPOO/XTTz/pwIEDkqSxY8fqq6++UoMGDZSYmCjpVODo06ePHA6HKlSooO3bt8sYo6SkpFw1n37ss3TpUlWvXl3ly5cv8OMEAEBxY/1Oh9Pp1KBBg3It69Kli6ZPn65jx46pQoUKqlOnjhwOhyQpNjZWI0aMUEREhCRp/Pjx8vX1lSTNnDlT48eP19tvvy1Juu222/Tpp5/K399fkjR8+HD17t1bbrdbderUUbt27XT06FHFxsYqMjJSPj4+Gj9+vBwOhwYPHqx+/fqpYsWKql+/vtLT0z31rV+/Xl988YXKlCmjcePGFfgxAgCgOHIYY0xhF3Ela968uT766CNVqVLlkvZP2pai49k5eW9YiMJqV9WBAxkXvH1gYNmL2r6ooK+ihb6KFvoqWi61Ly8vhwICfM+9/nKKAgAAuFDWH68UNf98vwMAAFwa7nQAAAArCB0AAMAKQgcAALCC0AEAAKwgdAAAACsIHQAAwApCBwAAsILQAQAArCB0AAAAKwgdAADACkIHAACwgtABAACsIHQAAAArCB0AAMAKvtq+gDWvUaWwS8hTdo6rsEsAAFwFCB0FLC0tU263KewyAAAodDxeAQAAVhA6AACAFYQOAABgBaEDAABYQegAAABWEDoAAIAVhA4AAGAFoQMAAFhB6AAAAFbwG0kLWECAb2GX4JGd49Kh9GOFXQYA4CpF6ChgSdtSdDw7p7DLkCSF1a5a2CUAAK5iPF4BAABWEDoAAIAVhA4AAGAFoQMAAFhB6AAAAFYQOgAAgBWEDgAAYAWhAwAAWEHoAAAAVhA6AACAFYQOAABgBaEDAABYQegAAABWEDoAAIAVhA4AAGAFoQMAAFhB6AAAAFZYDR0pKSm64447FBUVpbZt2yosLEyPPfaY/vzzz3ybY+rUqZo6dep5t5kyZYp+/PFHSdLw4cO1adOmfJsfAACcnfU7HZUqVdLcuXOVkJCghQsX6o477tDo0aOt1rB27Vq5XC5J0iuvvKI777zT6vwAAFyNCv3xSoMGDbRr1y5t3LhRDz/8sCIjI9WjRw/t3r1bktStWzeNHDlS0dHRatOmjb777jtJ0tChQ+V0Oj3jBAUFnTH2J598oocffljh4eGKiIjQzp07lZCQoM2bNys2NlZbt25Vt27dtGbNGknStGnT1KZNG0VERGjcuHFyuVxKSUlR27Zt9dxzzyk8PFw9evTQoUOHCv7AAABQzBRq6MjOztaXX36pu+66S88++6xefPFFzZs3T507d9azzz7r2S4rK0tz5szRpEmTNHToUGVlZeU5dmZmppYtW6aPP/5YCxYsUMuWLTVr1iy1bdtWd9xxh8aMGZMrqCxfvlxJSUlyOp2aM2eOdu/erbi4OEnSb7/9pscee0wLFixQuXLlNH/+/Pw/GAAAFHPWQ8f+/fsVFRWlqKgoRUZGyhijdu3aqVy5crrrrrskSaGhodqzZ48yMjIkSR07dpQk3X777QoMDNTWrVvznMfX11eTJk3SwoULNWnSJH399dc6duzYObdfvXq1wsLCVLp0afn4+Kh9+/ZatWqVJCkgIEC1atWSJN122206fPjwZR0DAACuRj62Jzz9Tsff/fbbb2dsZ4zxvHfh7e3tWe52u+Xj4yOHwyFjjKRTd0z+ad++ferWrZseffRRPfDAA6pYsaK2bNlyzrrcbvcZy3JyciRJpUqV8iz7+7wAAODCFfo7HZJ0yy236NChQ/r5558lSYmJibr++uvl5+fn+SxJmzZt0pEjR1SjRg35+flpx44dkqRly5adMeamTZt08803q2fPnrr77ru1YsWKXCHm9L+fFhwcrIULF+rEiRPKycnR7NmzFRwcXFAtAwBw1bF+p+NsSpYsqcmTJ2v06NE6fvy4ypcvr8mTJ3vWJycnKzo6WpI0efJkeXt7q0uXLho4cKAiIiIUHByswMDAXGM2adJEn376qdq0aaOSJUvqrrvu0vbt2yVJ999/v0aOHKnXXnvNs32zZs20ZcsWtW/fXjk5Obr//vv16KOP5uuP8wIAcDVzmCv8WUG3bt0UExOjhg0bFnYplyRpW4qOZ+cUdhmSpLDaVXXgQMZljxMYWDZfxrnS0FfRQl9FC30VLZfal5eXQwEBvudefzlFAQAAXKgr4vHK+Xz88ceFXQIAAMgH3OkAAABWEDoAAIAVhA4AAGAFoQMAAFhB6AAAAFYQOgAAgBWEDgAAYAWhAwAAWEHoAAAAVhA6AACAFYQOAABgBaEDAABYQegAAABW5Pkts5MmTdLgwYNt1FIsNa9RpbBL8MjOcRV2CQCAq1ieoeObb74hdFyGtLRMud2msMsAAKDQ5Rk6qlSpol69eqlevXq69tprPcsfe+yxAi0MAAAUL3mGDj8/P0nS3r17C7oWAABQjOUZOl599VUbdQAAgGIuz9CxYcMGvffeezp27JiMMXK73UpJSdE333xjoTwAAFBc5Pkjs7Gxsapbt64yMzMVEREhX19ftWrVykZtAACgGMnzTofD4VDfvn2Vnp6uW265RZGRkXrkkUds1AYAAIqRPO90XHPNNZKkm266Sdu3b1epUqXkcvH7HgAAwMXJ807H3XffrYEDB+qZZ57RE088oV27dsnb29tGbQAAoBjJ807H/v37FRQUpGrVqmn48OFyu92aOHGijdoAAEAxkuedjkaNGsnpdMrpdKpDhw7q06ePAgMDbdRWLAQE+Ob7mNk5Lh1KP5bv4wIAUJDyDB2dO3dW586dtXPnTs2ePVudO3dWzZo19e9//9tGfUVe0rYUHc/Oydcxw2pXzdfxAACw4YK/ZfbEiRPKysqSMYZ3OgAAwEXL807Hhx9+qDlz5igrK0sdOnTQZ599pooVK9qoDQAAFCN5ho5ffvlFsbGxatiwoY16AABAMZVn6Jg0aZKNOgAAQDF3we90AAAAXA5CBwAAsILQAQAArCB0AAAAKwgdAADACkIHAACwgtABAACsIHQAAAArCB0AAMAKQgcAALCC0AEAAKwgdAAAACsIHQAAwAqroWPbtm0KCgrS4sWLL2l/p9Ope++9V1FRUYqKilJ4eLhatWqlZcuW5XOlAAAgv+X51fb5yel0KiQkRHFxcQoJCbmkMZo3b65x48Z5Pi9btkwjRoxQy5Yt86tMAABQAKyFjpycHM2bN08zZ85U586dtWfPHs2cOVOVKlVS7969JUkDBgxQeHi46tWrpxEjRujPP/+Uw+HQ4MGD1bhx47OOu3fvXpUvX16SdPz4ccXGxmrr1q1yOBzq3bu32rZtK7fbrbFjx2rVqlVyOByKjIxU3759tWbNGk2bNk3GGO3Zs0chISEqW7as587Je++9p/Lly+uFF17Q9u3bJUldunRRx44dLRwxAACKF2uh45tvvtH111+vatWqqWXLloqLi1NUVJRiY2PVu3dvZWZmav369Zo4caKef/55tW/fXi1atND+/fvVpUsXJSQkSJKSkpIUFRWlzMxMnThxQk2aNNHbb78tSZo6daoqVKigBQsW6ODBg3r44YdVs2ZNrVu3Tvv27dO8efOUlZWlbt26qUaNGipTpox++uknLVy4UH5+fmrcuLGef/55OZ1ODRs2TAsXLtTtt9+uw4cPKyEhQenp6XrttdcIHQAAXAJr73Q4nU6Fh4dLktq0aaM5c+bo1ltvVVZWlnbv3q1ly5apWbNmKlmypFauXKkpU6YoKipKffr0UU5OjpKTkyWderwyd+5czZ07VzfffLMnyEjS6tWr1aFDB0mSv7+/WrRooR9++EFr1qxRdHS0vL29VaZMGUVERGjVqlWSpBo1auhf//qXypQpowoVKqhRo0aSpOuvv15HjhzRbbfdpt9//129e/fWvHnzNGTIEFuHDACAYsXKnY60tDStWLFCmzdv1kcffSRjjI4cOaIlS5YoMjJSiYmJ2rBhg/r06SNJcrvdmjFjhvz8/CRJqampqlixorZs2eIZ09fXV6+99prCw8N1//33q379+jLG5JrXGCOXyyW3233W5ZJUokSJXOu8vb1zfa5QoYIWLlyo77//XsuXL1d0dLQWLlyocuXK5cuxAQDgamHlTse8efMUHBysFStWKCkpSV9//bX69eun+Ph4RUREKDExUbt371aDBg0kScHBwZo1a5YkaceOHYqMjNTx48fPGPfGG29Ut27d9Oqrr8oYo+DgYH3xxReSpIMHD+qrr77Svffeq+DgYCUkJMjlcun48eOaP3++GjZseEG1f/XVVxoyZIgefPBBxcbG6pprrtG+ffvy6cgAAHD1sBI6nE6nunTpkmtZly5d9PPPP+vYsWOqUKGCQkJC5HA4JEmxsbH66aefFBERoUGDBmn8+PHy9fU969hPPPGEUlJSNG/ePPXv31+HDh1SRESEHn30UfXr10+1a9dWp06ddN111ykqKkpt27ZV8+bN9dBDD11Q7Q888IBKly6tsLAwPfzww2rVqpWCgoIu74AAAHAVcph/PpNAvkralqLj2Tn5OmZY7ao6cCAjX8e8GIGBZQt1/oJCX0ULfRUt9FW0XGpfXl4OBQSc/SaBxG8kBQAAlhA6AACAFYQOAABgBaEDAABYQegAAABWEDoAAIAVhA4AAGAFoQMAAFhB6AAAAFYQOgAAgBWEDgAAYAWhAwAAWEHoAAAAVhA6AACAFYQOAABgBaEDAABY4VPYBRR3zWtUyfcxs3Nc+T4mAAAFjdBRwNLSMuV2m8IuAwCAQsfjFQAAYAWhAwAAWEHoAAAAVhA6AACAFYQOAABgBaEDAABYQegAAABWEDoAAIAVhA4AAGAFv5G0gAUE+ObreNk5Lh1KP5avYwIAYAOho4AlbUvR8eycfBsvrHbVfBsLAACbeLwCAACsIHQAAAArCB0AAMAKQgcAALCC0AEAAKwgdAAAACsIHQAAwApCBwAAsILQAQAArCB0AAAAKwgdAADACkIHAACwgtABAACsIHQAAAArCB0AAMAKQgcAALCi0ELHmjVr1K1btwIbv0+fPkpNTVVycrJeeOGFi9p36tSpmjp1agFVBgDA1anY3ul4//33VblyZf3xxx9KTk4u7HIAALjqXXGhY9q0aWrTpo0iIiI0btw4uVwupaSkqG3btnruuecUHh6uHj166NChQ5KkxMREtW7dWtHR0Ro+fLiGDh0qSWrevLlSUlI0ZswYbd68WS+//PIZd1eGDh0qp9MpSZo+fbpatWqlTp066eeff/Zss2LFCnXo0EFt27ZVTEyM0tPT7R0MAACKkSsqdCxfvlxJSUlyOp2aM2eOdu/erbi4OEnSb7/9pscee0wLFixQuXLlNH/+fB08eFBjx47VjBkzNHv2bB0+fPiMMWNjY3XHHXdo5MiR55x306ZNmj17tubMmaP//Oc/+vPPPyVJBw8e1KRJk/TBBx8oISFB9913nyZOnFgwzQMAUMz5FHYBf7d69WqFhYWpdOnSkqT27dsrISFBTZs2VUBAgGrVqiVJuu2223T48GH9+OOPqlu3ripXrixJatu2rZYtW3bR8/7www9q2rSprr32WklS69at5Xa79dNPP2nfvn3q3r27JMntdqt8+fL50SoAAFedKyp0uN3uM5bl5ORIkkqVKuVZ5nA4ZIyRl5fXWfc5l9P7nZadne1Z/vdxfHx8lJWVJZfLpXr16mnatGmSpJMnT+ro0aMX1xQAAJB0hT1eCQ4O1sKFC3XixAnl5ORo9uzZCg4OPuf29erV06ZNm7R//34ZY5SYmCiHw5FrG29vb09wqVChgpKTk3Xy5EkdOnRI69atkyQ1atRI33zzjTIyMnTy5EktXbpUknT33Xdr48aN+v333yVJb7/9tsaPH18QrQMAUOwV6p2O049HTouIiNCDDz6o9u3bKycnR/fff78effRRzzsW/+Tv76/Y2Fj16tVLJUuWVJUqVVSuXLlc21SvXl0ZGRl67rnnNGHCBDVt2lRhYWG64YYbVL9+fUnS7bffrh49eqhDhw4qV66crr/+eklSYGCgxo4dq4EDB8rtdqty5cqaMGFCAR0NAACKN4f5+/OGIiY9PV0ff/yxYmJi5OXlpTFjxujmm28u0N//cbGStqXoeHZOvo0XVruqDhzIyLfxLkVgYNlCr6Eg0FfRQl9FC30VLZfal5eXQwEBvudcf0W903Gx/Pz8dOTIEYWHh8vb21u1a9dWx44dC7ssAABwFkU6dDgcDsXGxhZ2GQAA4AJcUS+SAgCA4ovQAQAArCB0AAAAKwgdAADACkIHAACwgtABAACsIHQAAAArCB0AAMAKQgcAALCC0AEAAKwgdAAAACsIHQAAwApCBwAAsILQAQAArCjSX21fFDSvUSVfx8vOceXreAAA2ELoKGBpaZlyu01hlwEAQKHj8QoAALCC0AEAAKwgdAAAACsIHQAAwApCBwAAsILQAQAArCB0AAAAKwgdAADACkIHAACwgt9IWsACAnwve4zsHJcOpR/Lh2oAACg8hI4ClrQtRcezcy5rjLDaVfOnGAAAChGPVwAAgBWEDgAAYAWhAwAAWEHoAAAAVhA6AACAFYQOAABgBaEDAABYQegAAABWEDoAAIAVhA4AAGAFoQMAAFhB6AAAAFYQOgAAgBWEDgAAYAWhAwAAWEHoAAAAVhA6AACAFQUeOrZt26agoCAtXrz4kvafOnWqmjRpoqioKEVGRioiIkJff/31RY3hdDo1dOjQS5ofAADkD5+CnsDpdCokJERxcXEKCQm5pDE6d+6sp59+WpK0ZcsW9erVS6tWrcrPMgEAQAEr0NCRk5OjefPmaebMmercubP27NmjmTNnqlKlSurdu7ckacCAAQoPD1e9evU0YsQI/fnnn3I4HBo8eLAaN258xpgZGRmqWLGi53NCQoJmzJght9ut2rVra+TIkSpVqpQSEhL0zjvvyNfXVzfccIOuueYaSVLz5s111113acuWLZowYYJefPFF3Xjjjdq2bZvuuOMO3XvvvZozZ44OHz6sf//736pevbpee+01ff/99/L29laLFi0UExNTkIcNAIBiqUAfr3zzzTe6/vrrVa1aNbVs2VJxcXGKiorSwoULJUmZmZlav369HnzwQb3yyitq3769nE6n3nnnHY0YMUKZmZmS5NkvNDRUPXv2VI8ePSRJ27dv12effaa4uDjNnTtXAQEB+uCDD5SamqqJEydq5syZio+P19GjR3PV9cADD2jx4sXy9/fX1q1b9dRTT2nRokXatGmT9u7dq/j4eIWHhys+Pl579+7VihUrNG/ePMXFxWnXrl06efJkQR42AACKpQK90+F0OhUeHi5JatOmjYYMGaKBAwcqKytLu3fv1oYNG9SsWTOVLFlSK1eu1H//+19NmTJF0qm7JMnJyZJyP15JSUlRx44dVa1aNW3ZskW7d+9Wx44dJUnZ2dmqVauWNmzYoLp163ruiERERGj16tWeuu6++27Pv1esWFG1atWSJF133XVq1KiRJOn6669XSkqKKleurFKlSqlz585q1qyZBg4cqFKlShXkYQMAoFgqsNCRlpamFStWaPPmzfroo49kjNGRI0e0ZMkSRUZGKjExURs2bFCfPn0kSW63WzNmzJCfn58kKTU1VRUrVtSyZctyjVulShXVrVtXGzdulI+Pj0JDQxUbGytJOnr0qFwul1atWiW32/1/TfrkbvPvoaFkyZK51nl7e+f67OPjo88//1w//PCDVqxYoc6dO+vjjz9WtWrVLu8AAQBwlSmwxyvz5s1TcHCwVqxYoaSkJH399dfq16+f4uPjFRERocTERO3evVsNGjSQJAUHB2vWrFmSpB07digyMlLHjx8/Y9wjR47o119/Va1atdSwYUMtXbpUaWlpMsbopZde0owZM1S/fn399NNPSk1NldvtVmJi4iX38euvv+rRRx/VPffco+eff17Vq1fX77//fsnjAQBwtSqwOx1Op1ODBg3KtaxLly6aPn26jh07pgoVKqhOnTpyOBySpNjYWI0YMUIRERGSpPHjx8vX11fSqXc6li1bJofDoaNHj+rhhx/2PAaJiYlRjx495Ha7dfvtt6tv374qVaqUYmNj1bNnT5UpU0a33nrrJfdRq1Yt1alTR+Hh4SpTpoxuv/12PfDAA5c8HgAAVyuHMcYUdhHFWdK2FB3PzrmsMcJqV9WBAxn5VNHlCwwse0XVk1/oq2ihr6KFvoqWS+3Ly8uhgADfc6+/nKIAAAAuFKEDAABYQegAAABWEDoAAIAVhA4AAGAFoQMAAFhB6AAAAFYQOgAAgBWEDgAAYAWhAwAAWEHoAAAAVhA6AACAFYQOAABgBaEDAABYQegAAABWEDoAAIAVPoVdQHHXvEaVyx4jO8eVD5UAAFC4CB0FLC0tU263KewyAAAodDxeAQAAVhA6AACAFYQOAABgBaEDAABYQegAAABWEDoAAIAVhA4AAGAFoQMAAFjBLwcrYAEBvhe9T3aOS4fSjxVANQAAFB5CRwFL2pai49k5F7VPWO2qBVMMAACFiMcrAADACkIHAACwgtABAACsIHQAAAArCB0AAMAKQgcAALCC0AEAAKwgdAAAACsIHQAAwApCBwAAsILQAQAArCB0AAAAKwgdAADACkIHAACwgtABAACsIHQAAAArCB0AAMAK66EjJSVFzZs3P2N5UFCQtRpee+01BQcHKysry9qcAABc7a66Ox05OTn68ssvVbduXS1atKiwywEA4KpxRYUOt9utMWPGKCwsTOHh4XrvvfckSWvWrFG3bt082w0dOlROp1OZmZnq27ev2rVrp3bt2umrr76SJO3evVuPPfaYoqOj9cgjj+jXX3/17Lt8+XLdeOONatu2reLj43PNP2nSJLVq1UqdOnVSTEyMnE6nJCkhIUHR0dGKiorSCy+8oJMnTxb0oQAAoNjxKYxJ9+/fr6ioqDOWf/rpp9q3b5/mzZunrKwsdevWTTVq1FCZMmXOOs7SpUt1ww036L333tPOnTv1xRdfqEWLFnr++ec1YsQI1apVSzt27FD//v21ePFiSZLT6VTr1q3VtGlTDRs2TDt27NCtt96qpKQkrVu3TgsWLNDx48cVHR2t5s2ba/v27frss88UFxenUqVKadKkSfrggw/01FNPFegxAgCguCmU0FGpUiXNnTs317KgoCCtWbNG0dHR8vb2VpkyZRQREaFVq1ad9R0QSapbt65ef/11paam6sEHH1T//v119OhRbd68WcOGDfNsd+zYMaWnp8sYo++++06jR49W6dKl1axZM8XFxSk2NlYrV65UaGioSpYsqZIlS6ply5aSTt1l2b17tzp27ChJys7OVq1atQroyAAAUHwVSug4F7fbneuzMUYul0sOh0PGGM/y7OxsSVLVqlX15Zdf6ttvv9XXX3+tDz/8UJ9//rlKliyZK9T8+eef8vPz04wZM2SMUYcOHSRJJ06cUHZ2toYMGSIvL68z5pckl8ul0NBQxcbGSpKOHj0ql8uV770DAFDcXVHvdAQHByshIUEul0vHjx/X/Pnz1bBhQ1WoUEHJyck6efKkDh06pHXr1kmSPvnkE02dOlWhoaEaOXKkDh48KGOMqlat6gkd33//vbp27SpJmj17tsaNG6ekpCQlJSXpu+++U/ny5ZWYmKgmTZpoyZIlysrKUmZmpr755hs5HA41bNhQS5cuVVpamowxeumllzRjxoxCO0YAABRVV9Sdjk6dOmnXrl2KiopSdna2IiMj9dBDD0mSmjZtqrCwMN1www2qX7++JKlt27Z69tlnFRERIR8fH8XExKhcuXKaMGGCXnrpJU2fPl0lSpTQ5MmT9csvvyg9Pd0zniR5eXmpR48eiouL02effab169crOjpa5cuXV6VKlVSqVCnVrFlTMTEx6tGjh9xut26//Xb17du3UI4PAABFmcP8/bnFVWzDhg3atWuXoqOjlZ2drU6dOmns2LGqWbPmZY2btC1Fx7NzLmqfsNpVdeBAxmXNW5ACA8te0fVdKvoqWuiraKGvouVS+/LyciggwPec66+oOx2FqVq1anrrrbf0n//8R8YYtW3b9rIDBwAA+D+Ejv/Pz89PH3zwQWGXAQBAsXVFvUgKAACKL0IHAACwgtABAACsIHQAAAArCB0AAMAKQgcAALCC0AEAAKwgdAAAACsIHQAAwApCBwAAsILQAQAArCB0AAAAKwgdAADACkIHAACwgq+2L2DNa1S56H2yc1wFUAkAAIWL0FHA0tIy5Xabwi4DAIBCx+MVAABgBaEDAABYweOVAubl5SjsEgoEfRUt9FW00FfRQl8Xvo/DGMMLBwAAoMDxeAUAAFhB6AAAAFYQOgAAgBWEDgAAYAWhAwAAWEHoAAAAVhA6AACAFYQOAABgBaEDAABYQegAAABWEDou0fz589WmTRs99NBDmjlz5hnrt2zZovbt2yskJETDhw9XTk6OJOmPP/5Q165d1bp1az355JM6evSo7dLPK6++li1bpqioKEVGRuqpp57S4cOHJUkJCQm67777FBUVpaioKE2ePNl26eeVV19vvfWWmjVr5qn/9DbnOo9XivP1tWXLFk8/UVFRuv/++xUeHi7pyj9fkpSZmanw8HClpKScsa6oXl/S+fsqqteXdP6+iur1da6eivK19dZbbyksLExhYWEaP378GesL/NoyuGh//vmnadasmUlPTzdHjx41ERERZvv27bm2CQsLMxs2bDDGGDNs2DAzc+ZMY4wxffv2NQsWLDDGGPPWW2+Z8ePHW639fPLqKyMjwzRp0sT8+eefxhhj3njjDTN69GhjjDGjRo0y8+fPL5S683Ih5+uJJ54w69evP2Pfc53HK8GF9HXasWPHTFhYmFm7dq0x5so+X8YYs3HjRhMeHm5q165tkpOTz1hfFK8vY87fV1G9vozJ+3wVxesrr55OK0rX1vfff286depkTp48abKyskz37t3NkiVLcm1T0NcWdzouwcqVKxUcHCw/Pz9dc801CgkJ0aJFizzr9+7dqxMnTqhOnTqSpHbt2mnRokXKzs7W2rVrFRISkmv5lSKvvrKzs/XSSy+pcuXKkqSgoCDt27dPkrRp0yYlJCQoMjJSQ4YM8fwN7UqQV1+StHnzZr3//vuKiIjQqFGjdPLkyXOexyvFhfR12rvvvqt77rlHDRo0kHRlny9J+uyzzzRy5EhVqlTpjHVF9fqSzt9XUb2+pPP3JRXN6yuvnk4rStdWYGCghg4dqpIlS6pEiRKqXr26/vjjD896G9cWoeMS7N+/X4GBgZ7PlSpVUmpq6jnXBwYGKjU1Venp6fL19ZWPj0+u5VeKvPqqUKGCWrZsKUk6ceKE3nvvPc/nwMBAPf3005o7d67+9a9/adSoUXaLP4+8+jp69Khuv/12Pf/885ozZ46OHDmit99++5zn8UqRV1+nHTlyRJ999pliYmI8y67k8yVJr7zyiucP8X8qqteXdP6+iur1JZ2/r6J6fZ2vp9OK2rV12223eQLFrl27lJiYqKZNm3rW27i2CB2XwBhzxjKHw5Hn+rz2K2wXWl9GRob69OmjmjVrKjo6WpL073//W3fffbccDocef/xxrVixosDrvVB59XXttdfq/fff18033ywfHx/16tVLy5cvLzbna/78+WrZsqUCAgI8y67k85WXonp9Xaiidn3lpaheXxeiqF5b27dvV69evfT888+ratWqnuU2ri1CxyWoXLmy/vrrL8/n/fv357oF98/1Bw4cUKVKleTv76/MzEy5XK5cy68UefV1elmXLl1Us2ZNvfLKK5JO/SH5v//7v55tjDGeRHwlyKuvP/74Q1988YXn8+n6z3UerxQXcr6kUy8ntmnTxvP5Sj9feSmq19eFKIrXV16K6vV1IYritbVu3Tr17NlTgwcP9oTa02xcW4SOS9C4cWOtWrVKBw8e1PHjx7VkyRI98MADnvU33HCDSpUqpXXr1kk69TbzAw88oBIlSqhBgwZKTEzMtfxKkVdfLpdL/fr1U2hoqIYPH+5Jutdcc42mT5+un376SZL0ySef6KGHHiqUHs4mr75Kly6tCRMmKDk5WcYYzZw5Uw899NA5z+OVIq++pFN/6P3yyy+qW7euZ9mVfr7yUlSvr7wU1esrL0X1+spLUby29u3bp/79+2vixIkKCws7Y72Va+uSXj+FmTdvngkLCzOtWrUy7733njHGmMcff9z8/PPPxhhjtmzZYtq3b29at25tnn32WXPy5EljjDEpKSnm0UcfNaGhoaZXr17m0KFDhdbD2ZyvryVLlpigoCATGRnp+eeFF14wxhizdu1a07ZtW9O6dWvTr18/c+TIkcJs4wx5na9FixZ51g8dOtRzvs51Hq8UefX1119/mcaNG5+x35V+vk5r1qyZ5ycHisP1ddrZ+irK19dp5zpfRfX6MubcPRXFa2v06NGmTp06uf4bmzVrltVry2HMWR7WAAAA5DMerwAAACsIHQAAwApCBwAAsILQAQAArCB0AAAAKwgdAIqMN998UwkJCZJOfTfJwYMH5XQ69cQTT+S5b2xsrDZv3ixJGj58uFauXFmQpQI4iyvrV6UBwHk888wzl7zvypUr1alTJ0ny/LZPAHYROgBYER8fr48//lheXl6qWLGiXnzxRaWlpWncuHFyu92SpCeeeEIhISE6evSoxowZo/Xr18vb21stW7bUoEGDNGzYMN12223q3bv3WefYuHGjJkyYoKysLB04cECNGzfW2LFjNXnyZO3fv19DhgzR+PHjNXHiRHXt2lWtW7fWsmXL9NZbb8nlcsnX11fDhg3TXXfdpalTp2rv3r06cOCA9u7dK39/f02ePFmVK1fWrFmzFBcXpxIlSqhUqVIaNWqUbr31VpuHEyiSCB0ACtyqVas0ffp0xcfHy9/fX06nU/3791dgYKAee+wxhYWF6bffflN8fLxCQkI0ZcoUnTx5UomJiXK5XOrVq5d++OGHPOf56KOPNGDAADVs2FBHjx5VixYttHnzZg0aNEjz58/XxIkTdeedd3q237lzp0aOHKm4uDjdeOONWrVqlZ566inP13b/+OOPSkhIkK+vr/r166f4+Hj1799fY8eOVVJSkipVqqSEhAStW7eO0AFcAN7pAFDgvv32W7Vp00b+/v6SpHbt2ik1NVWhoaEaNWqUBg8erF9++UXPPvuspFOPQjp06CBvb2+VLFlSn3zyiRo2bJjnPOPGjVNGRoamTZuml19+WSdOnNCxY8fOuf3q1asVHBysG2+8UZLUqFEj+fv7e979uPfee+Xr6ytJqlWrlg4fPixvb2+1bt1anTt31qhRo1S2bFl16NDhso4PcLUgdAAocGf7tgVjjBo2bKh58+apSZMm+u677xQZGamMjAz5+Pjk+ursffv2KT09Pc95unbtquXLl+uWW25R//79Vbly5bPOnVddOTk5kk59Wdlpf/+K74kTJ2ratGm66aab9P777ysmJibP2gAQOgBYcN999ykxMVEHDx6UJM2ePVt+fn4aNmyYtmzZonbt2mn06NE6cuSIDh8+rEaNGmnOnDlyu93KysrSgAEDtHbt2vPOcfjwYW3evFlDhgxRq1atlJqaqj179njeF/H29vaEidOCg4P1/fffKzk5WdKpx0D79u3T3Xfffc55Dh48qKZNm8rPz089e/bUwIEDtXXr1ss5PMBVg3c6ABS4Jk2aqGfPnurRo4fcbrf8/f317rvv6vDhwxo7dqzeeOMNeXl5KSYmRlWqVFFMTIxeeeUVRUVFyeVyqU2bNmrVqpWSkpLOOUf58uXVt29fRUdHy8/PTxUqVFC9evW0e/duNWrUyPMy6pgxYzz73HrrrRo5cqRiYmLkcrlUunRpTZs2TWXLlj3nPP7+/nryySfVs2dPlS5dWt7e3rnGBHBufMssAACwgscrAADACkIHAACwgtABAACsIHQAAAArCB0AAMAKQgcAALCC0AEAAKz4fx+rQDijoK+dAAAAAElFTkSuQmCC\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "data_unif = pd.DataFrame([(k, sum(v)) for k, v in cp_oscillations_unif.items()])\n", - "data_unif.columns = ['var', 'oscillations']\n", - "sns.barplot(x=\"oscillations\", y=\"var\", data=data_unif.sort_values(by=['oscillations'], ascending=False, axis=0), color='lightblue')\n", - "_ = plt.title(\"cp oscillations for uniform distribution\")\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "f1de600c", - "metadata": {}, - "source": [ - "Ceteris-paribus oscillations show the importance of single input variables. In the ceteris-paribus plot of MedInc, we can see that having a higher MedInc will result in a much higher predicted MedHouseVal. This is also reflected in the plot above, showing an average oscillation of about 2 for MedInc. \n", - "\n", - "There however is one caveat with this method; many values are very unlikely for the input variables, since the vast majority of MedInc values is between 2 and 6. We can adjust for this by sampling according to the distribution of the training set and thus counting the oscillations in realistic ranges more heavily. If we do this, we see the average oscillation of MedInc drop from about 2 to about 0.7. This happens because the largest oscillations are at MedInc values 10-15, which are very unlikely. By factoring in the rarity of the occurence of high MedInc values (with high oscillations), we diminish the effect on the final 'oscillations score'." - ] - }, - { - "cell_type": "code", - "execution_count": 45, - "id": "35156650", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAh0AAAHwCAYAAAACUt0mAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8rg+JYAAAACXBIWXMAAAsTAAALEwEAmpwYAAA/dklEQVR4nO3de3zO9R//8ee1zakWOxgd9C2ROUSob4ZKDmF2MoRoKF86WKJ0Qxa+OaQhooMOvv1UNJXLnFaihcqhcgglh8psYtbmtJlt13V9fn/0c/0SM7G9Ly6P+1/b5/B+v96f6+rT0/v92XXZLMuyBAAAUMZ8PF0AAAC4MhA6AACAEYQOAABgBKEDAAAYQegAAABGEDoAAIARhA7Ai7zyyitKTk6WJIWGhionJ0d2u12PPvpoiecmJCRo+/btkqRRo0Zp7dq1ZVmqcnNz1bNnT0VERGj58uVl2teFKu46ZGZmqmfPnhfcbps2bbRt27YSj2vSpIkyMjK0bds2DR48+JzHbt26VaNHjz7rvr+eP2LECM2ePfsf1/zII48oJydHkjRgwADt2bPnH7cB+Hm6AACl56mnnrrgc9euXasePXpIkiZMmFBaJRVrx44dys7O1ooVK8q8rwtV3HWoXr26kpKSjNXRsGFDzZgx45zH7NmzR5mZmRd8fkm++eYb989vv/32RbWFKxehAygFn3zyid599135+PgoMDBQL730kvbt26fExERVr15d6enpqlixoiZNmqRatWqdcf78+fP1/vvvy8fHR1WrVtXzzz+vmjVr6vvvv9ekSZPkcrkkSY8++qg6dOigvLw8jR8/Xps2bZKvr6/atWunoUOHauTIkbr11lvVv3//s9a5ZcsWTZ48WYWFhcrKylKLFi00ceJETZs2TYcOHdKwYcOUmJioKVOmqHfv3urYsaNWrlypV199VU6nU/7+/ho5cqQaNWqkmTNnav/+/crKytL+/fsVFBSkadOmqXr16po3b56SkpJUrlw5VahQQS+88IJq167truPXX3/Vc889p8zMTMXExGj+/Pn6+uuvi+1ny5YtOnTokEJDQzVlypTTxrRp0yZNmTJF+fn5stlsevLJJ9W6dWvZ7XZ9/vnnOnnypPbv36/rrrtOvXv31gcffKC9e/fq4Ycf1iOPPCK73a5ly5bJ5XIpMzNT1atX16RJk1S9enXFxcWpd+/euu2229S7d2/VqlVL+/fv16RJk/TII49o8+bNcjgcmjx5slatWiVfX181adJEY8aM0bFjxzR69GhlZ2crKytLN9xwg6ZPn67g4OBi30fff/+9xo0bJ5vNpoYNG7pf9w0bNmjcuHFaunTpWd8TjRo10owZM3T8+HGNHDlSnTt31oQJE3TVVVfpxIkTevbZZ/XSSy9p6dKlkqSNGzdq+fLlys3NVcuWLTV8+HD5+fkpNDRU69atU1BQkCS5f588ebIkqW/fvnrrrbfUu3dvvfLKK2rYsGGx790RI0bI399fO3fu1MGDB3XLLbfo5Zdf1tVXX31e/03BS1kALsqOHTusZs2aWb///rtlWZb17rvvWs8//7y1fv16q27dutZ3331nWZZlzZs3z4qNjT3j/LVr11rt2rWzsrOzLcuyrAULFljh4eGWy+Wy+vTpYy1dutTdz9ixYy3LsqyJEydaQ4cOtRwOh1VQUGD17t3bWr9+vTV8+HDrnXfesSzLsurUqWNlZ2dbCxYssAYOHGhZlmUNHTrUWr9+vWVZlpWbm2s1a9bM2rZtm2VZltW6dWtr69atlmVZ1kMPPWR9+umn1p49e6wWLVpY+/btc9fasmVL6/jx49aMGTOstm3bWsePH7csy7IeffRR65VXXrEcDofVoEEDKzMz07Isy1q4cKGVlJR0xrjXr19vRUREWJZlldhPhw4drKKiojPaOHLkiNW+fXsrPT3dsizLOnjwoHXvvfda+/fvtxYsWGDdcccd1u+//245nU6rU6dO1pNPPmk5nU5rx44dVsOGDS2n02ktWLDAaty4sfXrr79almVZkydPtp588snTrkN6erpVp04d92uZnp5uNW7c2LIsy5ozZ47Vu3dvKz8/33I6ndZTTz1lLVy40Po//+f/WG+++aZlWZblcrms//znP9bs2bPPuNanFBQUWC1atLDWrl1rWZZlLVmyxKpTp46Vnp5+2rUq7j3x19f51HsvIyPjjGs9fPhwKzY21srLy7MKCgqshx56yJo7d+5p75lT/vr7X38+Vf+53rvDhw+3evToYRUUFFiFhYVW586drU8++eSM1xBXFmY6gIu0bt063X333bruuuskSf369ZP0579O69atqzvvvFOS1LVrV73wwgs6fPiwAgMD3ed/9dVX6tSpk/tfl126dNGECROUkZGh8PBwvfDCC0pNTVWLFi309NNPS/pzKWTkyJHy9fWVr6+vPvjgA0nSwoULz1nrpEmTtGbNGs2aNUu//vqrTp48qRMnThR7/Pr16xUWFqYbb7xRktS8eXMFBQW5n/2466675O/vL0mqX7++jh49Kl9fX3Xs2FE9e/bUfffdp5YtWyoqKuqcdZXUT+PGjeXnd+btasuWLcrKytKgQYPc22w2m3bu3Cnpz2WFU69LjRo1dPfdd8vHx0c33nijCgoKlJ+fL0lq2bKlatasKUnq3r27YmJizujLz89PjRs3PmP72rVrFRMTo4oVK0qSpk+f7t73/fff691339XevXu1e/du3X777cVeg127dsnPz0/NmzeXJEVGRp71GY3i3hN/d9111+mGG244676YmBhdddVVkqTo6GitXr1avXr1Kra24pzrvStJ99xzj8qXLy9JqlOnjo4ePfqP+4B3IXQAF8nX11c2m839+6np/FP7/sqyrLNu+zvLsuRwONSzZ0+1bt1a33zzjb766iu9+uqrWrx4sfz8/E7r88CBA+7/6Z1L7969VbduXd1zzz0KDw/XDz/8cNb+z6c2Saf1abPZ3MdPmTJFu3bt0tq1a/X222/rk08+0RtvvHHB/Zz6H+TfOZ1O1apVSx9//LF7W2ZmpoKCgrRkyRL3//BOOVtwkU5/nVwu1xmvkSSVL1/+rOf/fdsff/whl8ulOXPmaOvWreratauaNWsmh8Nxzmv91+t3rnqLe0/8XXHXTDrzfXm2fgoLC4s9/5QLfX/gysVfrwAXqVmzZlq3bp0OHTokSUpKSnKvgf/888/6+eefJf353EbTpk1VuXLl086/++67lZKS4v7LgAULFiggIEA33XSTevbsqR07dqhLly4aN26cjh07pqNHj6p58+ZauHChXC6XCgsLNXjwYH333XfnrPPo0aPavn27hg0bpvbt2yszM1P79u1zPxvg6+vr/p/FKWFhYfrmm2+Unp4u6c9ZnQMHDpzzX+w5OTlq1aqVAgIC1K9fPw0ZMsQ981CcC+lH+nMGJC0tzT32HTt2qEOHDu7X4nytX7/e/RBmUlKSWrdufd7nNm/eXEuXLlVhYaFcLpfGjh2rZcuW6euvv1bfvn3VuXNnBQcHa+3atXI6ncW2U6dOHVmWpdWrV0uSvvjii7PODBT3njjb61ecZcuWqbCwUAUFBbLb7br33nslSUFBQe6/qvn7A75na/9c713gbJjpAC5SaGionn32Wf3nP/+RJIWEhGjixInau3evqlatqunTp7sftExMTDzj/JYtW6pfv37q27evXC6XgoKC9Oabb8rHx0fDhg3TxIkTNX36dPn4+Cg+Pl41atRQfHy8JkyYoJiYGDmdTnXq1Ent27dXampqsXVWqVJFAwcOVGxsrAICAhQYGKimTZsqLS1NzZs3dz+MOn78ePc5tWvX1pgxYxQfHy+n06mKFStq1qxZuuaaa4rtJygoSI8//rj69eunihUrytfX97Q2z+ZC+jnV14wZM5SYmKiCggJZlqXExMRilxWKU716dT377LPKyspS7dq19cILL5z3uT179tT+/fvVpUsXWZalu+66S3FxcbrhhhuUmJio119/Xb6+vmratKn27dtXbDvlypXTa6+9prFjx+rll19WvXr1zvrQaXHvCZfLpenTp2vQoEHq06fPOWuuUaOGHnzwQZ04cUL333+/YmNjJf35Z9MvvPCCKleurBYtWigkJMR9zv33369evXrp9ddfd28713sXOBubxXwXUCb++hcHuHTZ7XYtX75cb775pqdLAbwecRQAABjBTAcAADCCmQ4AAGAEoQMAABhB6AAAAEbwJ7Nl7PDhPLlcV8ZjM8HB/srOzvV0GcYwXu/GeL0b4y0bPj42BQYW//06hI4y5nJZV0zokHRFjVVivN6O8Xo3xmseyysAAMAIQgcAADCC0AEAAIzgw8EAALhCFTmcOnL4RKm15+NjU3Cwf7H7eZC0jKXuylB+0fl98yMAACZFNLjZaH8srwAAACMIHQAAwAhCBwAAMILQAQAAjCB0AAAAIwgdAADACEIHAAAwgtABAACMIHQAAAAjCB0AAMAIQgcAADCC0AEAAIwgdAAAACMIHQAAwAhCBwAAMILQAQAAjLikQ8eGDRsUFxd33sf/9diYmBhJ0tatWzV58uR/1O+IESNkt9v/0TkAAODcLunQ8U99++237p8XLVokSdqzZ4+ys7M9VRIAAPh/LrvQ4XA4lJCQoB49eqht27b6z3/+o5MnT2r8+PGSpAceeECSFBoaqmPHjmnGjBlKTU3VG2+8IbvdrhEjRrjbiouL04YNG2RZll588UV16NBBcXFx2rdvn/uY5ORkxcbGKiYmRs8995wKCgrMDhgAAC9x2YWOzZs3q1y5cpo/f75WrFihgoICrV69WgkJCZKkjz/+2H1s5cqVNXjwYLVp00aPP/54sW0uX75cP/30k5YuXapXXnnFHTp2796tjz76SElJSVq0aJGCg4M1e/bssh0gAABeys/TBfxT//73vxUQEKC5c+fq119/1d69e3XixImLavPbb79V+/btVa5cOQUFBenee++V9OczJWlpaerevbskqaioSPXr17/oMQAAcCW67ELHF198oRkzZqhPnz7q0qWLDh8+LMuyzutcm8122rFFRUXu7S6Xy73dz+/Py+J0OhUeHu6eRcnLy5PT6SytoQAAcEW57JZX1q1bp/DwcHXt2lVVq1bVd9995w4Cvr6+cjgcpx3/122BgYH65ZdfZFmW0tPTtXPnTklS8+bN9dlnn6mwsFBHjx7VV199JUlq1qyZVqxYoezsbFmWpbFjx2rOnDkGRwsAgPe45Gc6vv/+ezVp0sT9e6NGjbRhwwZ99tlnKl++vBo3bqyMjAxJUtu2bRUTE3Pan7s2atRIr776qqZMmaLBgwdrwYIF6tixo2rWrKk77rhDktSuXTtt27ZNkZGRqlq1qmrVqiVJqlu3ruLj49W3b1+5XC7Vq1dPAwcONDh6AAC8h80637UJXJDUXRnKL3KUfCAAAIZFNLhZWVnHS609Hx+bgoP9i99faj0BAACcA6EDAAAYQegAAABGEDoAAIARhA4AAGAEoQMAABhB6AAAAEYQOgAAgBGEDgAAYAShAwAAGEHoAAAARhA6AACAEYQOAABgBKEDAAAYQegAAABGEDoAAIARNsuyLE8XAQAAzCtyOHXk8IlSa8/Hx6bgYP9i9/uVWk84q+zsXLlcV0auCwm5RllZxz1dhjGM17sxXu/GeD2D5RUAAGAEoQMAABhB6AAAAEYQOgAAgBGEDgAAYAShAwAAGEHoAAAARhA6AACAEYQOAABgBJ9IWsbO9XGw3igk5BpPl2AU4/W80v4YZwBlh9BRxlJ3ZSi/yOHpMgCvFdHgZk+XAOA8sbwCAACMIHQAAAAjCB0AAMAIQgcAADCC0AEAAIwgdAAAACMIHQAAwAhCBwAAMILQAQAAjCB0AAAAIwgdAADACEIHAAAwgtABAACMIHQAAAAjCB0AAMAIQgcAADCC0AEAAIy4rEJHRkaGQkNDNXr06NO279ixQ6GhobLb7efVzoYNGxQXFydJmjlzpmbOnFnqtQIAgNNdVqFDkgICAvTVV1/J6XS6t6WkpCgoKMiDVQEAgJL4ebqAf+rqq69W3bp19d133yksLEyS9M0336hFixaSpDVr1mjGjBlyOByqUaOGxo0bp8DAQH399dd68cUXVaFCBdWsWfOsbcfFxalhw4bauHGjcnJylJCQoFatWmn//v0aOXKkcnJyVLFiRY0fP15169Y1NmYAALzBZTfTIUnh4eFavny5JGnr1q0KDQ1VuXLllJOTo6lTp2r27NlKTk7W3XffrSlTpqiwsFAjRozQjBkzZLfbVbFixWLbLioq0vz58zVy5Ei98sorkqT//ve/6tChg5YuXaonn3xSb7zxhpFxAgDgTS7L0NG6dWutWbNGLpdLn376qcLDwyVJFStW1IEDB9SnTx/FxMRo7ty5SktL086dO1WtWjXVqlVLkhQbG1ts2/fcc48k6dZbb9WRI0ckSd99951iYmIkSa1atXKHEQAAcP4uu+UVSfL391fdunW1ceNGrV+/Xs8884xSUlLkdDrVtGlTzZo1S5JUUFCgvLw8/f7773K5XO7zfX19i227QoUKkiSbzebe5uf3/y+TZVn65ZdfVLt27dIeFgAAXu2ynOmQ/lximTp1qm677TZ3KCgoKNCWLVv022+/SZJef/11JSYmKjQ0VNnZ2fr5558lScuWLftHfd15553uc9auXavnn3++FEcCAMCV4bKc6ZD+XGIZNWqUnnrqKfe2qlWrauLEiRoyZIhcLpeqV6+uyZMnq1y5cnr55Zf17LPPys/PT/Xr1/9HfY0ePVoJCQmaN2+eKlWqpPHjx5f2cAAA8Ho2y7IsTxfhzVJ3ZSi/yOHpMgCvFdHgZmVlHS/1dkNCrimTdi9VjNe7mRqvj49NwcH+xe8v8woAAABE6AAAAIYQOgAAgBGEDgAAYAShAwAAGEHoAAAARhA6AACAEYQOAABgBKEDAAAYQegAAABGEDoAAIARhA4AAGAEoQMAABhB6AAAAEYQOgAAgBGEDgAAYISfpwvwdm3q1PB0CYBXK3I4PV0CgPNE6Chj2dm5crksT5dhREjINcrKOu7pMoxhvADwz7C8AgAAjCB0AAAAIwgdAADACEIHAAAwgtABAACMIHQAAAAjCB0AAMAIQgcAADCC0AEAAIzgE0nLWHCwv6dLKHVFDqeOHD7h6TIAAJcZQkcZS92Vofwih6fLKFURDW72dAkAgMsQyysAAMAIQgcAADCC0AEAAIwgdAAAACMIHQAAwAhCBwAAMILQAQAAjCB0AAAAIwgdAADACEIHAAAwgtABAACMIHQAAAAjCB0AAMAIQgcAADCC0AEAAIwgdAAAACOMho5du3YpNDRUy5cvv6Dz7Xa77rrrLsXExCgmJkaRkZFq3769Vq5cWcqVAgCA0uZnsjO73a4OHTooKSlJHTp0uKA22rRpo0mTJrl/X7lypUaPHq127dqVVpkAAKAMGAsdDodDixcv1ty5c9WzZ0/t27dPc+fOVbVq1dS/f39J0uDBgxUZGammTZtq9OjROnjwoGw2m5555hm1aNHirO3u379fVapUkSTl5+crISFBO3fulM1mU//+/dW5c2e5XC5NnDhR69atk81mU3R0tAYOHKgNGzZo1qxZsixL+/btU4cOHXTNNde4Z07eeustValSRc8995x2794tSerVq5e6d+9u4IoBAOBdjIWOVatW6frrr1fNmjXVrl07JSUlKSYmRgkJCerfv79yc3O1adMmTZkyRcOHD1fXrl3Vtm1bHTp0SL169VJycrIkKTU1VTExMcrNzdXJkyfVsmVLvf7665KkmTNnKjAwUEuXLlVOTo4eeOAB1a1bVxs3btSBAwe0ePFiFRYWKi4uTnXq1FGlSpX0ww8/aNmyZQoICFCLFi00fPhw2e12jRw5UsuWLVO9evV09OhRJScn6/Dhw3rppZcIHQAAXABjz3TY7XZFRkZKkjp16qSFCxeqdu3aKiwsVFpamlauXKnWrVurfPnyWrt2rWbMmKGYmBgNGDBADodD6enpkv5cXlm0aJEWLVqkm266yR1kJGn9+vXq1q2bJCkoKEht27bVt99+qw0bNig2Nla+vr6qVKmSoqKitG7dOklSnTp1dN1116lSpUoKDAxU8+bNJUnXX3+9jh07pltvvVW//fab+vfvr8WLF2vYsGGmLhkAAF7FyExHdna21qxZo+3bt+u9996TZVk6duyYPv/8c0VHRyslJUWbN2/WgAEDJEkul0tz5sxRQECAJCkzM1NVq1bVjh073G36+/vrpZdeUmRkpO655x7dcccdsizrtH4ty5LT6ZTL5TrrdkkqV67caft8fX1P+z0wMFDLli3TN998o9WrVys2NlbLli1T5cqVS+XaAABwpTAy07F48WKFhYVpzZo1Sk1N1ZdffqnHHntM8+fPV1RUlFJSUpSWlqY777xTkhQWFqZ58+ZJkvbs2aPo6Gjl5+ef0e6NN96ouLg4vfjii7IsS2FhYfrkk08kSTk5Ofriiy901113KSwsTMnJyXI6ncrPz9eSJUvUrFmz86r9iy++0LBhw3TfffcpISFBV111lQ4cOFBKVwYAgCuHkdBht9vVq1ev07b16tVLW7du1YkTJxQYGKgOHTrIZrNJkhISEvTDDz8oKipKQ4cOVWJiovz9/c/a9qOPPqqMjAwtXrxYgwYN0pEjRxQVFaWHHnpIjz32mBo0aKAePXro2muvVUxMjDp37qw2bdro/vvvP6/a7733XlWsWFERERF64IEH1L59e4WGhl7cBQEA4Apks/6+JoFSlborQ/lFDk+XUaoiGtysrKzjZ2wPCbnmrNu9FeP1bozXuzHesuHjY1Nw8NknCSQ+kRQAABhC6AAAAEYQOgAAgBGEDgAAYAShAwAAGEHoAAAARhA6AACAEYQOAABgBKEDAAAYQegAAABGEDoAAIARhA4AAGAEoQMAABhB6AAAAEYQOgAAgBGEDgAAYISfpwvwdm3q1PB0CaWuyOH0dAkAgMsQoaOMZWfnyuWyPF0GAAAex/IKAAAwgtABAACMIHQAAAAjCB0AAMAIQgcAADCC0AEAAIwgdAAAACMIHQAAwAhCBwAAMIJPJC1jwcH+ni7hDEUOp44cPuHpMgAAVxhCRxlL3ZWh/CKHp8s4TUSDmz1dAgDgCsTyCgAAMILQAQAAjCB0AAAAIwgdAADACEIHAAAwgtABAACMIHQAAAAjCB0AAMAIQgcAADCC0AEAAIwgdAAAACMIHQAAwAhCBwAAMILQAQAAjCB0AAAAIwgdAADACEIHAAAwwmOhY9euXQoNDdXy5csvuI29e/fq8ccf1/3336/IyEg9+eSTSk9PL8UqAQBAafFY6LDb7erQoYOSkpIu6Pw//vhDffr0UXh4uFasWKGlS5eqXbt2evDBB5WTk1PK1QIAgIvlkdDhcDi0ePFiDR06VD/99JP27dunF198UbNnz3YfM3jwYH3++ef6448/9MQTT6hLly7q2rWr1q5dK0n68MMP1aJFC0VHR7vPiYmJ0R133KEPP/xQkrRkyRJ16tRJERERGjFihIqKinTkyBENGjRI4eHhiomJ0bp16yRJoaGh7nbsdrtGjBghSWrTpo3Gjx+vzp07q3Pnzvrpp5/K/PoAAOCNPBI6Vq1apeuvv141a9ZUu3btlJSUpJiYGC1btkySlJubq02bNum+++7ThAkT1LVrV9ntdr3xxhsaPXq0cnNztW3bNjVs2PCMtv/9739r27ZtyszM1Isvvqj//e9/WrZsmZxOp1avXq1XXnlF//rXv/Tpp58qMTFR06dPL7HegIAAJScna/DgwRo+fHhpXw4AAK4IHgkddrtdkZGRkqROnTpp4cKFql27tgoLC5WWlqaVK1eqdevWKl++vNauXasZM2YoJiZGAwYMkMPhUHp6umw2m5xO5xltFxUVSZI2b96spk2b6tprr5UkTZ48We3atdN3332nmJgYSX/ObsyfP7/Eert37y7pz1mPzMxMlm8AALgAfqY7zM7O1po1a7R9+3a99957sixLx44d0+eff67o6GilpKRo8+bNGjBggCTJ5XJpzpw5CggIkCRlZmaqatWqatSokbZs2aI+ffqc1v7mzZvVsGFD+fmdPrRTQeHv23/55RfVrFlTkmRZlmw2mxwOx2nH/PUcl8slX1/fi78QAABcYYzPdCxevFhhYWFas2aNUlNT9eWXX+qxxx7T/PnzFRUVpZSUFKWlpenOO++UJIWFhWnevHmSpD179ig6Olr5+fnq1auXNm7cqEWLFrnbTk5O1qZNm/Tggw+qYcOG+uGHH5SVlSVJmjhxor744gvdeeedSklJkfRn4BgwYIBsNpsCAwO1e/duWZal1NTU02o+teyzYsUK1apVS1WqVCnz6wQAgLcxPtNht9s1dOjQ07b16tVL77zzjk6cOKHAwEA1btxYNptNkpSQkKDRo0crKipKkpSYmCh/f39J0ty5c5WYmKjXX39dknTrrbfqww8/VFBQkCRp1KhR6t+/v1wulxo3bqwuXbooLy9PCQkJio6Olp+fnxITE2Wz2fTMM8/oscceU9WqVXXHHXfo8OHD7vo2bdqkTz75RJUqVdKkSZPK/BoBAOCNbJZlWZ4u4lLWpk0bvffee6pRo8YFnZ+6K0P5RY6SDzQoosHNyso6XurthoRcUybtXqoYr3djvN6N8ZYNHx+bgoP9i99f5hUAAADIA8srl5u/P98BAAAuDDMdAADACEIHAAAwgtABAACMIHQAAAAjCB0AAMAIQgcAADCC0AEAAIwgdAAAACMIHQAAwAhCBwAAMILQAQAAjCB0AAAAIwgdAADAiBK/ZXbq1Kl65plnTNTildrUqeHpEs5Q5HB6ugQAwBWoxNCxatUqQsdFyM7OlctleboMAAA8rsTQUaNGDT3yyCNq2rSprr76avf2hx9+uEwLAwAA3qXE0BEQECBJ2r9/f1nXAgAAvFiJoePFF180UQcAAPByJYaOzZs366233tKJEydkWZZcLpcyMjK0atUqA+UBAABvUeKfzCYkJKhJkybKzc1VVFSU/P391b59exO1AQAAL1LiTIfNZtPAgQN1+PBh3XLLLYqOjtaDDz5oojYAAOBFSpzpuOqqqyRJ//rXv7R7925VqFBBTief8wAAAP6ZEmc6br/9dg0ZMkRPPfWUHn30Ue3du1e+vr4magMAAF6kxJmOQ4cOKTQ0VDVr1tSoUaPkcrk0ZcoUE7UBAAAvUuJMR/PmzWW322W329WtWzcNGDBAISEhJmrzCsHB/p4uwa3I4dSRwyc8XQYA4ApVYujo2bOnevbsqV9++UULFixQz549VbduXb322msm6rvspe7KUH6Rw9NlSJIiGtzs6RIAAFew8/6W2ZMnT6qwsFCWZfFMBwAA+MdKnOn43//+p4ULF6qwsFDdunXTRx99pKpVq5qoDQAAeJESQ8ePP/6ohIQENWvWzEQ9AADAS5UYOqZOnWqiDgAA4OXO+5kOAACAi0HoAAAARhA6AACAEYQOAABgBKEDAAAYQegAAABGEDoAAIARhA4AAGAEoQMAABhB6AAAAEYQOgAAgBGEDgAAYAShAwAAGOGx0LFhwwbFxcWVWfsDBgxQZmam0tPT9dxzz/2jc2fOnKmZM2eWUWUAAFyZvHam4+2331b16tX1+++/Kz093dPlAABwxbvkQsesWbPUqVMnRUVFadKkSXI6ncrIyFDnzp317LPPKjIyUn379tWRI0ckSSkpKerYsaNiY2M1atQojRgxQpLUpk0bZWRkaPz48dq+fbv++9//njG7MmLECNntdknSO++8o/bt26tHjx7aunWr+5g1a9aoW7du6ty5s+Lj43X48GFzFwMAAC9ySYWO1atXKzU1VXa7XQsXLlRaWpqSkpIkST///LMefvhhLV26VJUrV9aSJUuUk5OjiRMnas6cOVqwYIGOHj16RpsJCQm67bbbNGbMmGL73bZtmxYsWKCFCxfq3Xff1cGDByVJOTk5mjp1qmbPnq3k5GTdfffdmjJlStkMHgAAL+fn6QL+av369YqIiFDFihUlSV27dlVycrJatWql4OBg1a9fX5J066236ujRo/r+++/VpEkTVa9eXZLUuXNnrVy58h/3++2336pVq1a6+uqrJUkdO3aUy+XSDz/8oAMHDqhPnz6SJJfLpSpVqpTGUAEAuOJcUqHD5XKdsc3hcEiSKlSo4N5ms9lkWZZ8fHzOek5xTp13SlFRkXv7X9vx8/NTYWGhnE6nmjZtqlmzZkmSCgoKlJeX988GBQAAJF1iyythYWFatmyZTp48KYfDoQULFigsLKzY45s2bapt27bp0KFDsixLKSkpstlspx3j6+vrDi6BgYFKT09XQUGBjhw5oo0bN0qSmjdvrlWrVun48eMqKCjQihUrJEm33367tmzZot9++02S9PrrrysxMbEshg4AgNfz6EzHqeWRU6KionTfffepa9eucjgcuueee/TQQw+5n7H4u6CgICUkJOiRRx5R+fLlVaNGDVWuXPm0Y2rVqqXjx4/r2Wef1eTJk9WqVStFRETohhtu0B133CFJqlevnvr27atu3bqpcuXKuv766yVJISEhmjhxooYMGSKXy6Xq1atr8uTJZXQ1AADwbjbrr+sNl5nDhw/r/fffV3x8vHx8fDR+/HjddNNNZfr5H/9U6q4M5Rc5PF2GJCmiwc3KyjpeZu2HhFxTpu1fahivd2O83o3xlg0fH5uCg/2L3X9JPdPxTwUEBOjYsWOKjIyUr6+vGjRooO7du3u6LAAAcBaXdeiw2WxKSEjwdBkAAOA8XFIPkgIAAO9F6AAAAEYQOgAAgBGEDgAAYAShAwAAGEHoAAAARhA6AACAEYQOAABgBKEDAAAYQegAAABGEDoAAIARhA4AAGAEoQMAABhB6AAAAEZc1l9tfzloU6eGp0twK3I4PV0CAOAKRugoY9nZuXK5LE+XAQCAx7G8AgAAjCB0AAAAIwgdAADACEIHAAAwgtABAACMIHQAAAAjCB0AAMAIQgcAADCC0AEAAIzgE0nLWHCwv6dLcCtyOHXk8AlPlwEAuEIROspY6q4M5Rc5PF2GJCmiwc2eLgEAcAVjeQUAABhB6AAAAEYQOgAAgBGEDgAAYAShAwAAGEHoAAAARhA6AACAEYQOAABgBKEDAAAYQegAAABGEDoAAIARhA4AAGAEoQMAABhB6AAAAEYQOgAAgBGEDgAAYITR0JGRkaHbbrtNMTEx6ty5syIiIvTwww/r4MGDpdbHzJkzNXPmzHMeM2PGDH3//feSpFGjRmnbtm2l1j8AADg74zMd1apV06JFi5ScnKxly5bptttu07hx44zW8N1338npdEqSJkyYoIYNGxrtHwCAK5HHl1fuvPNO7d27V1u2bNEDDzyg6Oho9e3bV2lpaZKkuLg4jRkzRrGxserUqZO+/vprSdKIESNkt9vd7YSGhp7R9gcffKAHHnhAkZGRioqK0i+//KLk5GRt375dCQkJ2rlzp+Li4rRhwwZJ0qxZs9SpUydFRUVp0qRJcjqdysjIUOfOnfXss88qMjJSffv21ZEjR8r+wgAA4GU8GjqKior06aefqlGjRnr66af1/PPPa/HixerZs6eefvpp93GFhYVauHChpk6dqhEjRqiwsLDEtnNzc7Vy5Uq9//77Wrp0qdq1a6d58+apc+fOuu222zR+/PjTgsrq1auVmpoqu92uhQsXKi0tTUlJSZKkn3/+WQ8//LCWLl2qypUra8mSJaV/MQAA8HLGQ8ehQ4cUExOjmJgYRUdHy7IsdenSRZUrV1ajRo0kSeHh4dq3b5+OHz8uSerevbskqV69egoJCdHOnTtL7Mff319Tp07VsmXLNHXqVH355Zc6ceJEscevX79eERERqlixovz8/NS1a1etW7dOkhQcHKz69etLkm699VYdPXr0oq4BAABXIj/THZ56puOvfv755zOOsyzL/dyFr6+ve7vL5ZKfn59sNpssy5L054zJ3x04cEBxcXF66KGHdO+996pq1arasWNHsXW5XK4ztjkcDklShQoV3Nv+2i8AADh/Hn+mQ5JuueUWHTlyRFu3bpUkpaSk6Prrr1dAQID7d0natm2bjh07pjp16iggIEB79uyRJK1cufKMNrdt26abbrpJ/fr10+233641a9acFmJO/XxKWFiYli1bppMnT8rhcGjBggUKCwsrqyEDAHDFMT7TcTbly5fXtGnTNG7cOOXn56tKlSqaNm2ae396erpiY2MlSdOmTZOvr6969eqlIUOGKCoqSmFhYQoJCTmtzZYtW+rDDz9Up06dVL58eTVq1Ei7d++WJN1zzz0aM2aMXnrpJffxrVu31o4dO9S1a1c5HA7dc889euihh0r1z3kBALiS2axLfK0gLi5O8fHxatasmadLuSCpuzKUX+TwdBmSpIgGNysr63iZtR8Sck2Ztn+pYbzejfF6N8ZbNnx8bAoO9i9+f5lXAAAAoEtkeeVc3n//fU+XAAAASgEzHQAAwAhCBwAAMILQAQAAjCB0AAAAIwgdAADACEIHAAAwgtABAACMIHQAAAAjCB0AAMAIQgcAADCC0AEAAIwgdAAAACMIHQAAwAhCBwAAMOKS/2r7y12bOjU8XYJbkcPp6RIAAFcwQkcZy87OlctleboMAAA8juUVAABgBKEDAAAYQegAAABGEDoAAIARhA4AAGAEoQMAABhB6AAAAEYQOgAAgBGEDgAAYASfSFrGgoP9L+r8IodTRw6fKKVqAADwHEJHGUvdlaH8IscFnx/R4ObSKwYAAA9ieQUAABhB6AAAAEYQOgAAgBGEDgAAYAShAwAAGEHoAAAARhA6AACAEYQOAABgBKEDAAAYQegAAABGEDoAAIARhA4AAGAEoQMAABhB6AAAAEYQOgAAgBGEDgAAYAShAwAAGGE8dGRkZKhNmzZnbA8NDTVWw0svvaSwsDAVFhYa6xMAgCvdFTfT4XA49Omnn6pJkyb67LPPPF0OAABXjEsqdLhcLo0fP14RERGKjIzUW2+9JUnasGGD4uLi3MeNGDFCdrtdubm5GjhwoLp06aIuXbroiy++kCSlpaXp4YcfVmxsrB588EH99NNP7nNXr16tG2+8UZ07d9b8+fNP63/q1Klq3769evToofj4eNntdklScnKyYmNjFRMTo+eee04FBQVlfSkAAPA6fp7o9NChQ4qJiTlj+4cffqgDBw5o8eLFKiwsVFxcnOrUqaNKlSqdtZ0VK1bohhtu0FtvvaVffvlFn3zyidq2bavhw4dr9OjRql+/vvbs2aNBgwZp+fLlkiS73a6OHTuqVatWGjlypPbs2aPatWsrNTVVGzdu1NKlS5Wfn6/Y2Fi1adNGu3fv1kcffaSkpCRVqFBBU6dO1ezZs/XEE0+U6TUCAMDbeCR0VKtWTYsWLTptW2hoqDZs2KDY2Fj5+vqqUqVKioqK0rp16876DIgkNWnSRC+//LIyMzN13333adCgQcrLy9P27ds1cuRI93EnTpzQ4cOHZVmWvv76a40bN04VK1ZU69atlZSUpISEBK1du1bh4eEqX768ypcvr3bt2kn6c5YlLS1N3bt3lyQVFRWpfv36ZXRlAADwXh4JHcVxuVyn/W5ZlpxOp2w2myzLcm8vKiqSJN1888369NNP9dVXX+nLL7/U//73P3388ccqX778aaHm4MGDCggI0Jw5c2RZlrp16yZJOnnypIqKijRs2DD5+Pic0b8kOZ1OhYeHKyEhQZKUl5cnp9NZ6mMHAMDbXVLPdISFhSk5OVlOp1P5+flasmSJmjVrpsDAQKWnp6ugoEBHjhzRxo0bJUkffPCBZs6cqfDwcI0ZM0Y5OTmyLEs333yzO3R888036t27tyRpwYIFmjRpklJTU5Wamqqvv/5aVapUUUpKilq2bKnPP/9chYWFys3N1apVq2Sz2dSsWTOtWLFC2dnZsixLY8eO1Zw5czx2jQAAuFxdUjMdPXr00N69exUTE6OioiJFR0fr/vvvlyS1atVKERERuuGGG3THHXdIkjp37qynn35aUVFR8vPzU3x8vCpXrqzJkydr7Nixeuedd1SuXDlNmzZNP/74ow4fPuxuT5J8fHzUt29fJSUl6aOPPtKmTZsUGxurKlWqqFq1aqpQoYLq1q2r+Ph49e3bVy6XS/Xq1dPAgQM9cn0AALic2ay/rltcwTZv3qy9e/cqNjZWRUVF6tGjhyZOnKi6deteVLupuzKUX+S44PMjGtysrKzjF1WDKSEh11w2tZYGxuvdGK93Y7xlw8fHpuBg/2L3X1IzHZ5Us2ZNvfrqq3r33XdlWZY6d+580YEDAAD8f4SO/ycgIECzZ8/2dBkAAHitS+pBUgAA4L0IHQAAwAhCBwAAMILQAQAAjCB0AAAAIwgdAADACEIHAAAwgtABAACMIHQAAAAjCB0AAMAIQgcAADCC0AEAAIwgdAAAACMIHQAAwAi+2r6MtalT46LOL3I4S6kSAAA8i9BRxrKzc+VyWZ4uAwAAj2N5BQAAGEHoAAAARhA6AACAEYQOAABgBKEDAAAYQegAAABGEDoAAIARhA4AAGAEHw5WxoKD/d0/FzmcOnL4hAerAQDAcwgdZSx1V4byixySpIgGN3u2GAAAPIjlFQAAYAShAwAAGEHoAAAARhA6AACAEYQOAABgBKEDAAAYQegAAABGEDoAAIARhA4AAGAEoQMAABhB6AAAAEYQOgAAgBGEDgAAYAShAwAAGEHoAAAARhA6AACAEYQOAABgRJmHjl27dik0NFTLly+/oPNnzpypli1bKiYmRtHR0YqKitKXX375j9qw2+0aMWLEBfUPAABKh19Zd2C329WhQwclJSWpQ4cOF9RGz5499eSTT0qSduzYoUceeUTr1q0rzTIBAEAZK9PQ4XA4tHjxYs2dO1c9e/bUvn37NHfuXFWrVk39+/eXJA0ePFiRkZFq2rSpRo8erYMHD8pms+mZZ55RixYtzmjz+PHjqlq1qvv35ORkzZkzRy6XSw0aNNCYMWNUoUIFJScn64033pC/v79uuOEGXXXVVZKkNm3aqFGjRtqxY4cmT56s559/XjfeeKN27dql2267TXfddZcWLlyoo0eP6rXXXlOtWrX00ksv6ZtvvpGvr6/atm2r+Pj4srxsAAB4pTJdXlm1apWuv/561axZU+3atVNSUpJiYmK0bNkySVJubq42bdqk++67TxMmTFDXrl1lt9v1xhtvaPTo0crNzZUk93nh4eHq16+f+vbtK0navXu3PvroIyUlJWnRokUKDg7W7NmzlZmZqSlTpmju3LmaP3++8vLyTqvr3nvv1fLlyxUUFKSdO3fqiSee0GeffaZt27Zp//79mj9/viIjIzV//nzt379fa9as0eLFi5WUlKS9e/eqoKCgLC8bAABeqUxnOux2uyIjIyVJnTp10rBhwzRkyBAVFhYqLS1NmzdvVuvWrVW+fHmtXbtWv/76q2bMmCHpz1mS9PR0Sacvr2RkZKh79+6qWbOmduzYobS0NHXv3l2SVFRUpPr162vz5s1q0qSJe0YkKipK69evd9d1++23u3+uWrWq6tevL0m69tpr1bx5c0nS9ddfr4yMDFWvXl0VKlRQz5491bp1aw0ZMkQVKlQoy8sGAIBXKrPQkZ2drTVr1mj79u167733ZFmWjh07ps8//1zR0dFKSUnR5s2bNWDAAEmSy+XSnDlzFBAQIEnKzMxU1apVtXLlytParVGjhpo0aaItW7bIz89P4eHhSkhIkCTl5eXJ6XRq3bp1crlc/3+QfqcP86+hoXz58qft8/X1Pe13Pz8/ffzxx/r222+1Zs0a9ezZU++//75q1qx5cRcIAIArTJktryxevFhhYWFas2aNUlNT9eWXX+qxxx7T/PnzFRUVpZSUFKWlpenOO++UJIWFhWnevHmSpD179ig6Olr5+flntHvs2DH99NNPql+/vpo1a6YVK1YoOztblmVp7NixmjNnju644w798MMPyszMlMvlUkpKygWP46efftJDDz2kf//73xo+fLhq1aql33777YLbAwDgSlVmMx12u11Dhw49bVuvXr30zjvv6MSJEwoMDFTjxo1ls9kkSQkJCRo9erSioqIkSYmJifL395f05zMdK1eulM1mU15enh544AH3Mkh8fLz69u0rl8ulevXqaeDAgapQoYISEhLUr18/VapUSbVr177gcdSvX1+NGzdWZGSkKlWqpHr16unee++94PYAALhS2SzLsjxdhDdL3ZWh/CKHJCmiwc3Kyjru4YrKTkjINV49vr9jvN6N8Xo3xls2fHxsCg72L35/mVcAAAAgQgcAADCE0AEAAIwgdAAAACMIHQAAwAhCBwAAMILQAQAAjCB0AAAAIwgdAADACEIHAAAwgtABAACMIHQAAAAjCB0AAMAIQgcAADCC0AEAAIwgdAAAACP8PF2At2tTp4b75yKH04OVAADgWYSOMpadnSuXy/J0GQAAeBzLKwAAwAhCBwAAMILllTLm42PzdAlGMV7vxni9G+P1bibGW1IfNsuyeOAAAACUOZZXAACAEYQOAABgBKEDAAAYQegAAABGEDoAAIARhA4AAGAEoQMAABhB6AAAAEYQOgAAgBGEDgAAYAShoxQsWbJEnTp10v3336+5c+eesX/Hjh3q2rWrOnTooFGjRsnhcHigytJT0nhXrlypmJgYRUdH64knntDRo0c9UGXpKWm8p6xatUpt2rQxWFnZKGm8v/76q+Li4hQdHa3+/ft7/ev7448/qmvXroqOjtajjz6qY8eOeaDK0pWbm6vIyEhlZGScsc/b7lfSucfrbfcr6dzjPcVj9ysLF+XgwYNW69atrcOHD1t5eXlWVFSUtXv37tOOiYiIsDZv3mxZlmWNHDnSmjt3rgcqLR0ljff48eNWy5YtrYMHD1qWZVnTp0+3xo0b56lyL9r5vL6WZVlZWVlWx44drdatW3ugytJT0nhdLpfVvn17a/Xq1ZZlWdbkyZOtxMRET5V70c7n9X3wwQetVatWWZZlWS+++KL18ssve6LUUrNlyxYrMjLSatCggZWenn7Gfm+6X1nWucfrbfcryyr59bUsz96vmOm4SGvXrlVYWJgCAgJ01VVXqUOHDvrss8/c+/fv36+TJ0+qcePGkqQuXbqctv9yU9J4i4qKNHbsWFWvXl2SFBoaqgMHDniq3ItW0nhPSUhIUHx8vAcqLF0ljffHH3/UVVddpXvvvVeS9Nhjj6l3796eKveinc/r63K5lJeXJ0nKz89XxYoVPVFqqfnoo480ZswYVatW7Yx93na/ks49Xm+7X0nnHu8pnrxf8dX2F+nQoUMKCQlx/16tWjVt3bq12P0hISHKzMw0WmNpKmm8gYGBateunSTp5MmTeuuttxQXF2e8ztJS0ngl6b333lP9+vV1++23my6v1JU03n379qlq1aoaPny4fvrpJ9WpU0fPP/+8J0otFefz+o4YMUIPP/ywJk6cqEqVKumjjz4yXWapmjBhQrH7vO1+JZ17vN52v5LOPV7J8/crZjoukmVZZ2yz2Wznvf9yc77jOX78uAYMGKC6desqNjbWRGlloqTx7tq1S59//rmeeOIJk2WVmZLG63A49O233+qhhx7SkiVLdOONN2rSpEkmSyxVJY335MmTGjVqlObMmaOvv/5avXr10vDhw02WaJS33a/Ol7fcr0pyKdyvCB0XqXr16vrjjz/cvx86dOi0aa2/78/KyjrntNelrqTxntrWq1cv1a1bt8TUfakrabyfffaZsrKy1LVrVw0cONA99stVSeMNCQnRTTfdpIYNG0qSIiMjz5gZuJyUNN5du3apQoUKatSokSSpR48e+vbbb43XaYq33a/Ohzfdr0pyKdyvCB0XqUWLFlq3bp1ycnKUn5+vzz//3L3eLUk33HCDKlSooI0bN0qSkpOTT9t/uSlpvE6nU4899pjCw8M1atSoy/5fSSWNd/DgwVq+fLkWLVqkt956S9WqVdO8efM8WPHFKWm8TZo0UU5Ojn7++WdJUmpqqho0aOCpci9aSeO96aabdPDgQf3666+SpC+++MIduLyRt92vSuJt96uSXAr3K57puEjVq1fX0KFD1adPHxUVFalbt25q1KiRBgwYoMGDB6thw4aaMmWKEhISlJeXp/r166tPnz6eLvuClTTegwcP6qeffpLT6dTy5cslSbfddttl+y+I83l9vcn5jPe1115TQkKC8vPzde211yoxMdHTZV+w8xnviy++qCFDhsiyLAUHB2vixImeLrvUeev9qjjeer8qzqV0v7JZZ1vEAwAAKGUsrwAAACMIHQAAwAhCBwAAMILQAQAAjCB0AAAAIwgdAC4br7zyipKTkyX9+T0ZOTk5stvtevTRR0s8NyEhQdu3b5ckjRo1SmvXri3LUgGcBZ/TAeCy8dRTT13wuWvXrlWPHj0klfz9FADKBqEDgBHz58/X+++/Lx8fH1WtWlXPP/+8srOzNWnSJLlcLknSo48+qg4dOigvL0/jx4/Xpk2b5Ovrq3bt2mno0KEaOXKkbr31VvXv3/+sfWzZskWTJ09WYWGhsrKy1KJFC02cOFHTpk3ToUOHNGzYMCUmJmrKlCnq3bu3OnbsqJUrV+rVV1+V0+mUv7+/Ro4cqUaNGmnmzJnav3+/srKytH//fgUFBWnatGmqXr265s2bp6SkJJUrV04VKlTQCy+8oNq1a5u8nMBlidABoMytW7dO77zzjubPn6+goCDZ7XYNGjRIISEhevjhhxUREaGff/5Z8+fPV4cOHTRjxgwVFBQoJSVFTqdTjzzyyHl958l7772nwYMHq1mzZsrLy1Pbtm21fft2DR06VEuWLNGUKVNO+1TGX375RWPGjFFSUpJuvPFGrVu3Tk888YT769y///57JScny9/fX4899pjmz5+vQYMGaeLEiUpNTVW1atWUnJysjRs3EjqA88AzHQDK3FdffaVOnTopKChIktSlSxdlZmYqPDxcL7zwgp555hn9+OOPevrppyX9uRTSrVs3+fr6qnz58vrggw/UrFmzEvuZNGmSjh8/rlmzZum///2vTp48qRMnThR7/Pr16xUWFqYbb7xRktS8eXMFBQW5n/2466675O/vL0mqX7++jh49Kl9fX3Xs2FE9e/bUCy+8oGuuuUbdunW7qOsDXCkIHQDK3Nm+bcGyLDVr1kyLFy9Wy5Yt9fXXXys6OlrHjx+Xn5/faV++deDAAR0+fLjEfnr37q3Vq1frlltu0aBBg1S9evWz9l1SXQ6HQ5JUsWJF93abzeY+fsqUKZo1a5b+9a9/6e2331Z8fHyJtQEgdAAw4O6771ZKSopycnIkSQsWLFBAQIBGjhypHTt2qEuXLho3bpyOHTumo0ePqnnz5lq4cKFcLpcKCws1ePBgfffdd+fs4+jRo9q+fbuGDRum9u3bKzMzU/v27XM/L+Lr6+sOE6eEhYXpm2++UXp6uqQ/l4EOHDig22+/vdh+cnJy1KpVKwUEBKhfv34aMmSIdu7ceTGXB7hi8EwHgDLXsmVL9evXT3379pXL5VJQUJDefPNNHT16VBMnTtT06dPl4+Oj+Ph41ahRQ/Hx8ZowYYJiYmLkdDrVqVMntW/fXqmpqcX2UaVKFQ0cOFCxsbEKCAhQYGCgmjZtqrS0NDVv3tz9MOr48ePd59SuXVtjxoxRfHy8nE6nKlasqFmzZumaa64ptp+goCA9/vjj6tevnypWrChfX9/T2gRQPL5lFgAAGMHyCgAAMILQAQAAjCB0AAAAIwgdAADACEIHAAAwgtABAACMIHQAAAAj/i/lwslBOW8lWAAAAABJRU5ErkJggg==\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "data_emp = pd.DataFrame([(k, sum(v)) for k, v in cp_oscillations_emp.items()])\n", - "data_emp.columns = ['var', 'oscillations']\n", - "sns.barplot(x=\"oscillations\", y=\"var\", data=data_emp.sort_values(by=['oscillations'], ascending=False, axis=0), color='lightblue')\n", - "_ = plt.title(\"cp oscillations for empirical distribution\")\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "id": "36accce6", - "metadata": {}, - "source": [ - "## Model level exploration/explanation \n", - "Next to the instance level explanation methods, there also are model level explanation methods. These explanation methods aim to explain the entire model." - ] - }, - { - "cell_type": "markdown", - "id": "a82ddcf7", - "metadata": {}, - "source": [ - "## Variable importance methods \n", - "[Variable importance methods](https://ema.drwhy.ai/featureImportance.html) are methods to assess the importance of a variable in a model. Permutation-based variable importance randomly shuffles the values for one predictor variable around and then predicts the outcome variable. If the predictor variable was really important, the model will perform badly after the permutation and the loss will rise. If the predictor that has been permtated was not important for the prediction, the loss will rise relatively little. The difference in loss between predictions made with the original data, and predictions made with permutated data, can be used as a quantification for variable importance in the model." - ] - }, - { - "cell_type": "code", - "execution_count": 46, - "id": "031f3b1d", - "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "displaylogo": false, - "modeBarButtonsToRemove": [ - "sendDataToCloud", - "lasso2d", - "autoScale2d", - "select2d", - "zoom2d", - "pan2d", - "zoomIn2d", - "zoomOut2d", - "resetScale2d", - "toggleSpikelines", - "hoverCompareCartesian", - "hoverClosestCartesian" - ], - "plotlyServerURL": "https://plot.ly", - "staticPlot": false, - "toImageButtonOptions": { - "height": null, - "width": null - } - }, - "data": [ - { - "base": 0.18930783085146646, - "hoverinfo": "text", - "hoverlabel": { - "bgcolor": "rgba(0,0,0,0.8)" - }, - "hovertext": [ - "Model: RandomForestRegressor loss after
variable: MedInc is permuted: 1.13
Drop-out loss change: +0.941", - "Model: RandomForestRegressor loss after
variable: Latitude is permuted: 0.832
Drop-out loss change: +0.642", - "Model: RandomForestRegressor loss after
variable: Longitude is permuted: 0.746
Drop-out loss change: +0.557", - "Model: RandomForestRegressor loss after
variable: AveOccup is permuted: 0.648
Drop-out loss change: +0.459", - "Model: RandomForestRegressor loss after
variable: HouseAge is permuted: 0.448
Drop-out loss change: +0.259", - "Model: RandomForestRegressor loss after
variable: AveRooms is permuted: 0.381
Drop-out loss change: +0.191", - "Model: RandomForestRegressor loss after
variable: AveBedrms is permuted: 0.292
Drop-out loss change: +0.102", - "Model: RandomForestRegressor loss after
variable: Population is permuted: 0.287
Drop-out loss change: +0.098" - ], - "marker": { - "color": "#46bac2" - }, - "orientation": "h", - "showlegend": false, - "text": [ - "+0.941", - "+0.642", - "+0.557", - "+0.459", - "+0.259", - "+0.191", - "+0.102", - "+0.098" - ], - "textposition": "outside", - "type": "bar", - "x": [ - 0.9408374045266543, - 0.6423783703385553, - 0.5570883913485727, - 0.45877082339521486, - 0.25874050950388794, - 0.19137352467316548, - 0.10227224906235782, - 0.09776121425144263 - ], - "xaxis": "x", - "y": [ - "MedInc", - "Latitude", - "Longitude", - "AveOccup", - "HouseAge", - "AveRooms", - "AveBedrms", - "Population" - ], - "yaxis": "y" - } - ], - "layout": { - "annotations": [ - { - "font": { - "size": 16 - }, - "showarrow": false, - "text": "RandomForestRegressor", - "x": 0.5, - "xanchor": "center", - "xref": "paper", - "y": 1, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 16 - }, - "showarrow": false, - "text": "drop-out loss", - "x": 0.5, - "xanchor": "center", - "xref": "paper", - "y": 0, - "yanchor": "top", - "yref": "paper", - "yshift": -30 - } - ], - "font": { - "color": "#371ea3" - }, - "height": 343, - "margin": { - "b": 71, - "r": 30, - "t": 78 - }, - "shapes": [ - { - "line": { - "color": "#371ea3", - "dash": "dot", - "width": 1.5 - }, - "type": "line", - "x0": 0.18930783085146646, - "x1": 0.18930783085146646, - "xref": "x", - "y0": -1, - "y1": 8, - "yref": "y" - } - ], - "template": { - "data": { - "scatter": [ - { - "type": "scatter" - } - ] - } - }, - "title": { - "text": "Variable Importance", - "x": 0.15 - }, - "xaxis": { - "anchor": "y", - "automargin": true, - "domain": [ - 0, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "range": [ - 0.048182220172468315, - 1.271270846057119 - ], - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "type": "linear", - "zeroline": false - }, - "yaxis": { - "anchor": "x", - "automargin": true, - "autorange": "reversed", - "domain": [ - 0, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "tickcolor": "white", - "ticklen": 10, - "ticks": "outside", - "type": "category" - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "mp_rf = exp.model_parts()\n", - "mp_rf.plot()" - ] - }, - { - "cell_type": "code", - "execution_count": 47, - "id": "3971a507", - "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "displaylogo": false, - "modeBarButtonsToRemove": [ - "sendDataToCloud", - "lasso2d", - "autoScale2d", - "select2d", - "zoom2d", - "pan2d", - "zoomIn2d", - "zoomOut2d", - "resetScale2d", - "toggleSpikelines", - "hoverCompareCartesian", - "hoverClosestCartesian" - ], - "plotlyServerURL": "https://plot.ly", - "staticPlot": false, - "toImageButtonOptions": { - "height": null, - "width": null - } - }, - "data": [ - { - "base": 0.18924802621391706, - "hoverinfo": "text", - "hoverlabel": { - "bgcolor": "rgba(0,0,0,0.8)" - }, - "hovertext": [ - "Model: RandomForestRegressor loss after
variable: People is permuted: 1.24
Drop-out loss change: +1.05", - "Model: RandomForestRegressor loss after
variable: Location is permuted: 0.757
Drop-out loss change: +0.567", - "Model: RandomForestRegressor loss after
variable: House is permuted: 0.564
Drop-out loss change: +0.374" - ], - "marker": { - "color": "#46bac2" - }, - "orientation": "h", - "showlegend": false, - "text": [ - "+1.05", - "+0.567", - "+0.374" - ], - "textposition": "outside", - "type": "bar", - "x": [ - 1.0504834459081507, - 0.5672807528718242, - 0.3742946072141559 - ], - "xaxis": "x", - "y": [ - "People", - "Location", - "House" - ], - "yaxis": "y" - } - ], - "layout": { - "annotations": [ - { - "font": { - "size": 16 - }, - "showarrow": false, - "text": "RandomForestRegressor", - "x": 0.5, - "xanchor": "center", - "xref": "paper", - "y": 1, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 16 - }, - "showarrow": false, - "text": "drop-out loss", - "x": 0.5, - "xanchor": "center", - "xref": "paper", - "y": 0, - "yanchor": "top", - "yref": "paper", - "yshift": -30 - } - ], - "font": { - "color": "#371ea3" - }, - "height": 243, - "margin": { - "b": 71, - "r": 30, - "t": 78 - }, - "shapes": [ - { - "line": { - "color": "#371ea3", - "dash": "dot", - "width": 1.5 - }, - "type": "line", - "x0": 0.18924802621391706, - "x1": 0.18924802621391706, - "xref": "x", - "y0": -1, - "y1": 3, - "yref": "y" - } - ], - "template": { - "data": { - "scatter": [ - { - "type": "scatter" - } - ] - } - }, - "title": { - "text": "Variable Importance", - "x": 0.15 - }, - "xaxis": { - "anchor": "y", - "automargin": true, - "domain": [ - 0, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "range": [ - 0.03167550932769447, - 1.3973039890082903 - ], - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "type": "linear", - "zeroline": false - }, - "yaxis": { - "anchor": "x", - "automargin": true, - "autorange": "reversed", - "domain": [ - 0, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "tickcolor": "white", - "ticklen": 10, - "ticks": "outside", - "type": "category" - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "mp_rf_grouped = exp.model_parts(variable_groups={'Location': ['Latitude', 'Longitude'],\n", - " 'House': ['AveBedrms', 'AveRooms', 'HouseAge'],\n", - " 'People': ['Population', 'MedInc', 'AveOccup']})\n", - "mp_rf_grouped.plot()" - ] - }, - { - "cell_type": "markdown", - "id": "ae03d98a", - "metadata": {}, - "source": [ - "## Partial dependence \n", - "[Partial dependence plots](https://ema.drwhy.ai/partialDependenceProfiles.html) are in a way summaries of ceteris-paribus profiles. In the plots below, the partial dependence profile (cyan line) is plotted alongside the individual ceteris-paribus profiles (grey lines). The partial dependence profile is a good summary of the ceteris-paribus profiles." - ] - }, - { - "cell_type": "code", - "execution_count": 48, - "id": "3dd5041d", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Calculating ceteris paribus: 100%|██████████| 2/2 [00:00<00:00, 7.49it/s]\n" - ] - }, - { - "data": { - "application/vnd.plotly.v1+json": { - "config": { - "displaylogo": false, - "modeBarButtonsToRemove": [ - "sendDataToCloud", - "lasso2d", - "autoScale2d", - "select2d", - "zoom2d", - "pan2d", - "zoomIn2d", - "zoomOut2d", - "resetScale2d", - "toggleSpikelines", - "hoverCompareCartesian", - "hoverClosestCartesian" - ], - "plotlyServerURL": "https://plot.ly", - "staticPlot": false, - "toImageButtonOptions": { - "height": null, - "width": null - } - }, - "data": [ - { - "customdata": [ - [ - "
id: 7237
prediction: 2.2
MedInc: 0.4999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.716
MedInc: 0.644902

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.387
MedInc: 0.7899039999999999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.387
MedInc: 0.934906

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.388
MedInc: 1.079908

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.385
MedInc: 1.22491

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.4
MedInc: 1.369912

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.416
MedInc: 1.5149139999999999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.411
MedInc: 1.659916

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.407
MedInc: 1.804918

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.418
MedInc: 1.9499199999999999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.438
MedInc: 2.094922

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.546
MedInc: 2.2399240000000002

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.581
MedInc: 2.384926

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.726
MedInc: 2.529928

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.728
MedInc: 2.67493

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.73
MedInc: 2.8199319999999997

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.775
MedInc: 2.9649339999999995

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.967
MedInc: 3.1099360000000003

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.864
MedInc: 3.254938

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.89
MedInc: 3.39994

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.863
MedInc: 3.544942

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.894
MedInc: 3.6899439999999997

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.917
MedInc: 3.8349459999999995

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.915
MedInc: 3.9799480000000003

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.089
MedInc: 4.12495

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.073
MedInc: 4.269952

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.108
MedInc: 4.414954

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.161
MedInc: 4.559956

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.238
MedInc: 4.704958

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.242
MedInc: 4.84996

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.32
MedInc: 4.994962

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.502
MedInc: 5.139964

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.561
MedInc: 5.284966

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.63
MedInc: 5.429968

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.652
MedInc: 5.5749699999999995

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 3.39
MedInc: 5.719972

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.024
MedInc: 5.864974

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 3.959
MedInc: 6.009976

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.002
MedInc: 6.154978

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.114
MedInc: 6.29998

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.203
MedInc: 6.4449819999999995

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.071
MedInc: 6.589984

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.001
MedInc: 6.734986

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 3.739
MedInc: 6.879988

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.126
MedInc: 7.02499

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.17
MedInc: 7.169992

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.194
MedInc: 7.3149939999999996

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.228
MedInc: 7.459996

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.186
MedInc: 7.604998

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.385
MedInc: 7.75

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.509
MedInc: 7.895002

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.511
MedInc: 8.040004

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.494
MedInc: 8.185006

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.37
MedInc: 8.330008

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.334
MedInc: 8.47501

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.275
MedInc: 8.620012

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.246
MedInc: 8.765013999999999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.175
MedInc: 8.910016

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.23
MedInc: 9.055018

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.267
MedInc: 9.20002

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.246
MedInc: 9.345022

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.252
MedInc: 9.490024

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.166
MedInc: 9.635026

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.333
MedInc: 9.780028

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.308
MedInc: 9.92503

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.311
MedInc: 10.070032

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.33
MedInc: 10.215034

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.33
MedInc: 10.360036

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.33
MedInc: 10.505037999999999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.33
MedInc: 10.650039999999999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.33
MedInc: 10.795042

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.33
MedInc: 10.940044

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.33
MedInc: 11.085046

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.33
MedInc: 11.230048

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 11.37505

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 11.520052

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 11.665054

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 11.810056

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 11.955058

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 12.10006

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 12.245061999999999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 12.390063999999999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 12.535065999999999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 12.680068

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 12.82507

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 12.970072

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 13.115074

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 13.260076

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 13.405078

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 13.55008

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 13.695082

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 13.840084

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 13.985085999999999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 14.130087999999999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 14.275089999999999

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 14.420092

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 14.565094

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 14.710096

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 14.855098

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 4.335
MedInc: 15.0001

HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
AveOccup: 2.9206349206349205
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": true, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.2000719000000006, - 1.7162106000000004, - 1.3874800000000003, - 1.3874800000000003, - 1.3875100000000002, - 1.3849400000000003, - 1.39965, - 1.4156800000000005, - 1.41067, - 1.4071100000000003, - 1.4179900000000005, - 1.43767, - 1.5456000000000003, - 1.5807499999999997, - 1.7264599999999992, - 1.728449999999999, - 1.729739999999999, - 1.7749399999999989, - 1.9672599999999991, - 1.8636399999999997, - 1.89025, - 1.86274, - 1.8940200000000005, - 1.9166800000000006, - 1.914530000000001, - 2.0892399999999998, - 2.0732500000000003, - 2.1083200000000004, - 2.161110000000001, - 2.2384900000000005, - 2.2416700000000005, - 2.319560000000001, - 2.5020400999999994, - 2.5605701999999995, - 2.6300602999999985, - 2.651850199999999, - 3.390211599999999, - 4.023922099999997, - 3.959031999999998, - 4.001992999999998, - 4.113613699999998, - 4.202674199999995, - 4.071253399999997, - 4.001071900000001, - 3.738601500000001, - 4.1260321999999965, - 4.169792299999997, - 4.194492299999997, - 4.228152499999996, - 4.186372399999995, - 4.3854034999999945, - 4.509214399999997, - 4.511434499999996, - 4.4940041999999965, - 4.369913699999997, - 4.333963599999997, - 4.275233499999996, - 4.246103399999996, - 4.174783799999997, - 4.230345499999996, - 4.266575899999995, - 4.245925799999996, - 4.251575799999995, - 4.165575199999996, - 4.332777099999994, - 4.308107099999994, - 4.310897199999993, - 4.329607399999993, - 4.329607399999993, - 4.329607399999993, - 4.329607399999993, - 4.329607399999993, - 4.329607399999993, - 4.329607399999993, - 4.329607399999993, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994, - 4.335207399999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 16623
prediction: 1.578
MedInc: 0.4999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.58
MedInc: 0.644902

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.58
MedInc: 0.7899039999999999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.58
MedInc: 0.934906

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.58
MedInc: 1.079908

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.58
MedInc: 1.22491

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.562
MedInc: 1.369912

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.562
MedInc: 1.5149139999999999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.583
MedInc: 1.659916

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.584
MedInc: 1.804918

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.589
MedInc: 1.9499199999999999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.595
MedInc: 2.094922

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.601
MedInc: 2.2399240000000002

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.863
MedInc: 2.384926

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.335
MedInc: 2.529928

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.377
MedInc: 2.67493

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.415
MedInc: 2.8199319999999997

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.359
MedInc: 2.9649339999999995

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.14
MedInc: 3.1099360000000003

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.154
MedInc: 3.254938

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.114
MedInc: 3.39994

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.193
MedInc: 3.544942

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.286
MedInc: 3.6899439999999997

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.395
MedInc: 3.8349459999999995

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.017
MedInc: 3.9799480000000003

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.533
MedInc: 4.12495

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.705
MedInc: 4.269952

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.616
MedInc: 4.414954

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.59
MedInc: 4.559956

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.634
MedInc: 4.704958

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.622
MedInc: 4.84996

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.566
MedInc: 4.994962

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.441
MedInc: 5.139964

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.404
MedInc: 5.284966

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.414
MedInc: 5.429968

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.674
MedInc: 5.5749699999999995

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 3.903
MedInc: 5.719972

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.058
MedInc: 5.864974

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.007
MedInc: 6.009976

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.27
MedInc: 6.154978

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.437
MedInc: 6.29998

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.533
MedInc: 6.4449819999999995

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.532
MedInc: 6.589984

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.591
MedInc: 6.734986

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.502
MedInc: 6.879988

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.592
MedInc: 7.02499

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.557
MedInc: 7.169992

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.608
MedInc: 7.3149939999999996

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.623
MedInc: 7.459996

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.575
MedInc: 7.604998

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.663
MedInc: 7.75

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.734
MedInc: 7.895002

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.72
MedInc: 8.040004

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.713
MedInc: 8.185006

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.712
MedInc: 8.330008

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.778
MedInc: 8.47501

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.772
MedInc: 8.620012

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.775
MedInc: 8.765013999999999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.817
MedInc: 8.910016

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.815
MedInc: 9.055018

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.878
MedInc: 9.20002

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.859
MedInc: 9.345022

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.864
MedInc: 9.490024

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.741
MedInc: 9.635026

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.92
MedInc: 9.780028

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.92
MedInc: 9.92503

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.921
MedInc: 10.070032

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.945
MedInc: 10.215034

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.952
MedInc: 10.360036

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.952
MedInc: 10.505037999999999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.952
MedInc: 10.650039999999999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.952
MedInc: 10.795042

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 10.940044

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 11.085046

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 11.230048

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 11.37505

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 11.520052

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 11.665054

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 11.810056

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 11.955058

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 12.10006

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 12.245061999999999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 12.390063999999999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 12.535065999999999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 12.680068

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 12.82507

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 12.970072

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 13.115074

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 13.260076

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 13.405078

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 13.55008

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 13.695082

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 13.840084

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 13.985085999999999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 14.130087999999999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 14.275089999999999

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 14.420092

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 14.565094

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 14.710096

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 14.855098

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 4.972
MedInc: 15.0001

HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
AveOccup: 2.3404255319148937
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.5783800000000001, - 1.5797800000000002, - 1.5797800000000002, - 1.5797800000000002, - 1.5797800000000002, - 1.5797800000000002, - 1.56156, - 1.5620500000000002, - 1.5830199999999999, - 1.584, - 1.5885900000000002, - 1.5949500000000003, - 1.6010000000000009, - 1.8628700000000018, - 2.334560000000003, - 2.3767200000000024, - 2.414850100000003, - 2.3592801000000025, - 2.140000000000002, - 2.15439, - 2.1143500000000004, - 2.1930300000000007, - 2.2862500000000012, - 2.394520100000001, - 3.0168305, - 3.5328714999999993, - 3.7053319000000005, - 3.615611500000002, - 3.5901214000000015, - 3.6335714000000023, - 3.6216513000000017, - 3.5659311000000025, - 3.4412808, - 3.4042008, - 3.414280799999999, - 3.673781399999998, - 3.902732199999998, - 4.0580523999999984, - 4.006922499999998, - 4.269883999999998, - 4.4374743999999975, - 4.532784499999996, - 4.5319242999999965, - 4.591014399999995, - 4.5019838999999955, - 4.592454699999998, - 4.556504399999997, - 4.607824499999995, - 4.623144999999996, - 4.575195099999994, - 4.6629551999999945, - 4.733995899999996, - 4.720025899999995, - 4.713316099999996, - 4.711966399999994, - 4.778137099999993, - 4.771617399999994, - 4.774617599999992, - 4.817057899999992, - 4.814518299999992, - 4.8780886999999895, - 4.85873859999999, - 4.864388599999989, - 4.7409074999999925, - 4.920099399999989, - 4.920099399999989, - 4.921109399999989, - 4.944659599999989, - 4.952059699999989, - 4.952059699999989, - 4.952059699999989, - 4.952059699999989, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988, - 4.972059699999988 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 4521
prediction: 1.799
MedInc: 0.4999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.437
MedInc: 0.644902

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.437
MedInc: 0.7899039999999999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.415
MedInc: 0.934906

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.35
MedInc: 1.079908

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.345
MedInc: 1.22491

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.364
MedInc: 1.369912

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.368
MedInc: 1.5149139999999999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.365
MedInc: 1.659916

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.371
MedInc: 1.804918

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.39
MedInc: 1.9499199999999999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.388
MedInc: 2.094922

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.379
MedInc: 2.2399240000000002

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.397
MedInc: 2.384926

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.433
MedInc: 2.529928

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.444
MedInc: 2.67493

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.443
MedInc: 2.8199319999999997

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.448
MedInc: 2.9649339999999995

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.492
MedInc: 3.1099360000000003

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.534
MedInc: 3.254938

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.531
MedInc: 3.39994

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.544
MedInc: 3.544942

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.551
MedInc: 3.6899439999999997

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.558
MedInc: 3.8349459999999995

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.587
MedInc: 3.9799480000000003

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.657
MedInc: 4.12495

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.676
MedInc: 4.269952

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.673
MedInc: 4.414954

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.717
MedInc: 4.559956

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.732
MedInc: 4.704958

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.793
MedInc: 4.84996

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.887
MedInc: 4.994962

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 2.001
MedInc: 5.139964

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.972
MedInc: 5.284966

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.991
MedInc: 5.429968

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.999
MedInc: 5.5749699999999995

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 2.24
MedInc: 5.719972

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 2.393
MedInc: 5.864974

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 2.442
MedInc: 6.009976

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 2.664
MedInc: 6.154978

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 2.719
MedInc: 6.29998

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 2.832
MedInc: 6.4449819999999995

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 2.946
MedInc: 6.589984

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 3.082
MedInc: 6.734986

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 3.19
MedInc: 6.879988

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 3.595
MedInc: 7.02499

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 3.645
MedInc: 7.169992

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 3.609
MedInc: 7.3149939999999996

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 3.569
MedInc: 7.459996

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 3.555
MedInc: 7.604998

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 3.851
MedInc: 7.75

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.039
MedInc: 7.895002

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.037
MedInc: 8.040004

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.042
MedInc: 8.185006

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.086
MedInc: 8.330008

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.152
MedInc: 8.47501

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.151
MedInc: 8.620012

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.183
MedInc: 8.765013999999999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.188
MedInc: 8.910016

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.268
MedInc: 9.055018

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 9.20002

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.279
MedInc: 9.345022

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.285
MedInc: 9.490024

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.206
MedInc: 9.635026

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.31
MedInc: 9.780028

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.271
MedInc: 9.92503

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.274
MedInc: 10.070032

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.299
MedInc: 10.215034

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.299
MedInc: 10.360036

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.299
MedInc: 10.505037999999999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.299
MedInc: 10.650039999999999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.299
MedInc: 10.795042

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.299
MedInc: 10.940044

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.299
MedInc: 11.085046

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.299
MedInc: 11.230048

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 11.37505

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 11.520052

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 11.665054

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 11.810056

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 11.955058

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 12.10006

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 12.245061999999999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 12.390063999999999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 12.535065999999999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 12.680068

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 12.82507

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.304
MedInc: 12.970072

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.306
MedInc: 13.115074

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.306
MedInc: 13.260076

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.306
MedInc: 13.405078

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.306
MedInc: 13.55008

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.314
MedInc: 13.695082

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.314
MedInc: 13.840084

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.314
MedInc: 13.985085999999999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.314
MedInc: 14.130087999999999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.314
MedInc: 14.275089999999999

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.314
MedInc: 14.420092

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.314
MedInc: 14.565094

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.314
MedInc: 14.710096

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.314
MedInc: 14.855098

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 4.314
MedInc: 15.0001

HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
AveOccup: 4.36875
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.798791, - 1.4374999999999998, - 1.4374999999999998, - 1.4152599999999995, - 1.3496099999999995, - 1.3451599999999997, - 1.3640499999999998, - 1.3680499999999995, - 1.3653299999999993, - 1.3710499999999997, - 1.3895499999999996, - 1.3875199999999992, - 1.379149999999999, - 1.3968899999999993, - 1.4334699999999998, - 1.4439199999999996, - 1.4430499999999995, - 1.4484999999999997, - 1.4924199999999996, - 1.5344199999999992, - 1.5306999999999993, - 1.5438099999999992, - 1.5512899999999994, - 1.557879999999999, - 1.587359999999999, - 1.6566699999999996, - 1.6761099999999993, - 1.672829999999999, - 1.7172399999999994, - 1.7319799999999992, - 1.7926699999999989, - 1.8871400000000003, - 2.001329999999999, - 1.9722699999999995, - 1.9913699999999994, - 1.9994, - 2.24003, - 2.3925299999999994, - 2.4416699999999993, - 2.6640500999999994, - 2.7189401, - 2.8324905000000014, - 2.9455705000000005, - 3.0817205000000008, - 3.1901705, - 3.5949612999999987, - 3.645331599999998, - 3.608901399999998, - 3.568551599999998, - 3.554531399999998, - 3.8506820999999967, - 4.039032499999997, - 4.036602699999996, - 4.041822599999996, - 4.085623099999997, - 4.152033399999997, - 4.150673799999997, - 4.1829740999999965, - 4.188394599999996, - 4.267675499999995, - 4.303765899999996, - 4.2791757999999955, - 4.284825799999996, - 4.205785299999997, - 4.310236599999995, - 4.2714864999999955, - 4.274276599999996, - 4.298766899999995, - 4.298766899999995, - 4.298766899999995, - 4.298766899999995, - 4.298766899999995, - 4.298766899999995, - 4.298766899999995, - 4.298766899999995, - 4.3043668999999944, - 4.3043668999999944, - 4.3043668999999944, - 4.3043668999999944, - 4.3043668999999944, - 4.3043668999999944, - 4.3043668999999944, - 4.3043668999999944, - 4.3043668999999944, - 4.3043668999999944, - 4.3043668999999944, - 4.3043668999999944, - 4.305646999999995, - 4.305646999999995, - 4.305646999999995, - 4.305646999999995, - 4.313977099999995, - 4.313977099999995, - 4.313977099999995, - 4.313977099999995, - 4.313977099999995, - 4.313977099999995, - 4.313977099999995, - 4.313977099999995, - 4.313977099999995, - 4.313977099999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 924
prediction: 1.868
MedInc: 0.4999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.877
MedInc: 0.644902

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.877
MedInc: 0.7899039999999999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.877
MedInc: 0.934906

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.877
MedInc: 1.079908

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.877
MedInc: 1.22491

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.881
MedInc: 1.369912

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.875
MedInc: 1.5149139999999999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.876
MedInc: 1.659916

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.851
MedInc: 1.804918

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.8
MedInc: 1.9499199999999999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.789
MedInc: 2.094922

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.802
MedInc: 2.2399240000000002

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.949
MedInc: 2.384926

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 1.983
MedInc: 2.529928

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.018
MedInc: 2.67493

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.083
MedInc: 2.8199319999999997

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.101
MedInc: 2.9649339999999995

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.229
MedInc: 3.1099360000000003

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.244
MedInc: 3.254938

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.306
MedInc: 3.39994

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.349
MedInc: 3.544942

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.343
MedInc: 3.6899439999999997

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.285
MedInc: 3.8349459999999995

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.282
MedInc: 3.9799480000000003

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.327
MedInc: 4.12495

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.274
MedInc: 4.269952

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.286
MedInc: 4.414954

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.259
MedInc: 4.559956

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.321
MedInc: 4.704958

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.379
MedInc: 4.84996

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.398
MedInc: 4.994962

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.514
MedInc: 5.139964

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.372
MedInc: 5.284966

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.664
MedInc: 5.429968

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.791
MedInc: 5.5749699999999995

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.147
MedInc: 5.719972

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.708
MedInc: 5.864974

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.431
MedInc: 6.009976

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.465
MedInc: 6.154978

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.588
MedInc: 6.29998

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.68
MedInc: 6.4449819999999995

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.836
MedInc: 6.589984

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.925
MedInc: 6.734986

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.87
MedInc: 6.879988

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.808
MedInc: 7.02499

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.798
MedInc: 7.169992

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.919
MedInc: 7.3149939999999996

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.974
MedInc: 7.459996

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.928
MedInc: 7.604998

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.973
MedInc: 7.75

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.109
MedInc: 7.895002

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.146
MedInc: 8.040004

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.148
MedInc: 8.185006

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.253
MedInc: 8.330008

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.328
MedInc: 8.47501

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.343
MedInc: 8.620012

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.247
MedInc: 8.765013999999999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.239
MedInc: 8.910016

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.131
MedInc: 9.055018

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.47
MedInc: 9.20002

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.495
MedInc: 9.345022

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.498
MedInc: 9.490024

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.484
MedInc: 9.635026

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.499
MedInc: 9.780028

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.5
MedInc: 9.92503

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.534
MedInc: 10.070032

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.502
MedInc: 10.215034

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.522
MedInc: 10.360036

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.437
MedInc: 10.505037999999999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.376
MedInc: 10.650039999999999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.637
MedInc: 10.795042

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.634
MedInc: 10.940044

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.64
MedInc: 11.085046

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.648
MedInc: 11.230048

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.654
MedInc: 11.37505

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.658
MedInc: 11.520052

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.669
MedInc: 11.665054

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.669
MedInc: 11.810056

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.669
MedInc: 11.955058

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 12.10006

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 12.245061999999999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 12.390063999999999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 12.535065999999999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 12.680068

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 12.82507

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 12.970072

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 13.115074

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 13.260076

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 13.405078

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 13.55008

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 13.695082

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 13.840084

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 13.985085999999999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 14.130087999999999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 14.275089999999999

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 14.420092

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 14.565094

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 14.710096

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 14.855098

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 4.673
MedInc: 15.0001

HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
AveOccup: 2.4358799454297406
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.8680800000000004, - 1.8771200000000006, - 1.8771200000000006, - 1.8771200000000006, - 1.8771200000000006, - 1.8771200000000006, - 1.8806200000000004, - 1.8749300000000002, - 1.8757100000000002, - 1.8512300000000002, - 1.8003800000000003, - 1.7892600000000005, - 1.8021400000000005, - 1.94888, - 1.98323, - 2.0181199999999997, - 2.0830599999999997, - 2.10056, - 2.229370000000001, - 2.24399, - 2.30639, - 2.34947, - 2.3431000000000006, - 2.2849600000000017, - 2.2819800000000017, - 2.326940000000001, - 2.2740299999999998, - 2.28638, - 2.2594600000000007, - 2.3206900999999998, - 2.3793300999999993, - 2.3981401000000004, - 2.5139705000000023, - 2.372460100000001, - 2.6635305000000007, - 2.791020300000001, - 3.1467310000000004, - 3.7075328999999986, - 3.4309011999999997, - 3.4649310999999994, - 3.5875108999999994, - 3.6796012999999976, - 3.8358420999999976, - 3.9246222999999976, - 3.870081799999998, - 3.8075917999999973, - 3.7982019999999967, - 3.9190824999999974, - 3.9736628999999972, - 3.9277924999999976, - 3.9729617999999967, - 4.108981399999999, - 4.145851199999998, - 4.1483811, - 4.253311099999999, - 4.3281513999999985, - 4.343231999999999, - 4.246612199999998, - 4.239082899999997, - 4.130572499999996, - 4.469644899999993, - 4.495475099999994, - 4.498275199999994, - 4.4840350999999945, - 4.499305499999993, - 4.499815499999993, - 4.534185799999992, - 4.502045399999993, - 4.5219256999999935, - 4.437075499999994, - 4.375855099999994, - 4.6367269999999925, - 4.634306899999992, - 4.639956699999993, - 4.648307199999992, - 4.653907199999992, - 4.657877299999992, - 4.668617399999992, - 4.668617399999992, - 4.668617399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992, - 4.672597399999992 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 16112
prediction: 1.714
MedInc: 0.4999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 1.728
MedInc: 0.644902

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 1.736
MedInc: 0.7899039999999999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 1.74
MedInc: 0.934906

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 1.737
MedInc: 1.079908

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 1.766
MedInc: 1.22491

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 1.83
MedInc: 1.369912

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 1.82
MedInc: 1.5149139999999999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 1.815
MedInc: 1.659916

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 1.792
MedInc: 1.804918

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 1.869
MedInc: 1.9499199999999999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 1.866
MedInc: 2.094922

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 1.882
MedInc: 2.2399240000000002

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.05
MedInc: 2.384926

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.287
MedInc: 2.529928

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.34
MedInc: 2.67493

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.369
MedInc: 2.8199319999999997

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.397
MedInc: 2.9649339999999995

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.621
MedInc: 3.1099360000000003

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.698
MedInc: 3.254938

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.735
MedInc: 3.39994

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.734
MedInc: 3.544942

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.825
MedInc: 3.6899439999999997

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.803
MedInc: 3.8349459999999995

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.761
MedInc: 3.9799480000000003

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.675
MedInc: 4.12495

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.644
MedInc: 4.269952

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.66
MedInc: 4.414954

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.659
MedInc: 4.559956

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.64
MedInc: 4.704958

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.685
MedInc: 4.84996

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.71
MedInc: 4.994962

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.849
MedInc: 5.139964

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.91
MedInc: 5.284966

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.956
MedInc: 5.429968

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.973
MedInc: 5.5749699999999995

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 3.184
MedInc: 5.719972

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 3.466
MedInc: 5.864974

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 3.431
MedInc: 6.009976

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 3.423
MedInc: 6.154978

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 3.393
MedInc: 6.29998

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 3.532
MedInc: 6.4449819999999995

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 3.563
MedInc: 6.589984

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 3.665
MedInc: 6.734986

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 3.84
MedInc: 6.879988

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.215
MedInc: 7.02499

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.253
MedInc: 7.169992

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.19
MedInc: 7.3149939999999996

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.159
MedInc: 7.459996

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.195
MedInc: 7.604998

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.226
MedInc: 7.75

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.372
MedInc: 7.895002

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.364
MedInc: 8.040004

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.359
MedInc: 8.185006

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.432
MedInc: 8.330008

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.545
MedInc: 8.47501

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.536
MedInc: 8.620012

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.56
MedInc: 8.765013999999999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.592
MedInc: 8.910016

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.756
MedInc: 9.055018

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.783
MedInc: 9.20002

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.769
MedInc: 9.345022

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.775
MedInc: 9.490024

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.668
MedInc: 9.635026

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.852
MedInc: 9.780028

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.865
MedInc: 9.92503

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.849
MedInc: 10.070032

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.883
MedInc: 10.215034

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.89
MedInc: 10.360036

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.89
MedInc: 10.505037999999999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.897
MedInc: 10.650039999999999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.897
MedInc: 10.795042

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.897
MedInc: 10.940044

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.897
MedInc: 11.085046

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.897
MedInc: 11.230048

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.897
MedInc: 11.37505

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.897
MedInc: 11.520052

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.908
MedInc: 11.665054

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.908
MedInc: 11.810056

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.908
MedInc: 11.955058

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.908
MedInc: 12.10006

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.908
MedInc: 12.245061999999999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.908
MedInc: 12.390063999999999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.908
MedInc: 12.535065999999999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.908
MedInc: 12.680068

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.908
MedInc: 12.82507

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.908
MedInc: 12.970072

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 13.115074

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 13.260076

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 13.405078

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 13.55008

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 13.695082

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 13.840084

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 13.985085999999999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 14.130087999999999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 14.275089999999999

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 14.420092

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 14.565094

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 14.710096

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 14.855098

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.909
MedInc: 15.0001

HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
AveOccup: 3.22972972972973
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.7135700000000003, - 1.7275000000000003, - 1.7362800000000005, - 1.7404700000000002, - 1.7371, - 1.7664099999999998, - 1.8300199999999998, - 1.8202799999999997, - 1.8147499999999994, - 1.7924299999999993, - 1.8691199999999997, - 1.8658899999999992, - 1.8816199999999994, - 2.049649999999999, - 2.286579999999999, - 2.3400699999999985, - 2.3694399999999987, - 2.397489999999998, - 2.6212300000000006, - 2.697970000000002, - 2.734540000000002, - 2.7340800000000023, - 2.8252500000000014, - 2.803390000000002, - 2.760700000000002, - 2.6750600000000007, - 2.644230000000001, - 2.6603800000000013, - 2.6589300000000016, - 2.6398700000000015, - 2.685180000000001, - 2.7103301000000006, - 2.8494102, - 2.910140300000001, - 2.9561103000000006, - 2.9725503000000004, - 3.1838605999999983, - 3.466020399999999, - 3.4309502999999983, - 3.4230605999999995, - 3.3928208999999985, - 3.5319608999999987, - 3.5632111999999982, - 3.6648009999999998, - 3.8398311, - 4.214832099999998, - 4.252712499999998, - 4.189572599999996, - 4.159382599999997, - 4.195242599999997, - 4.226243099999996, - 4.371543399999996, - 4.363613399999995, - 4.359203199999995, - 4.431533799999996, - 4.545454699999994, - 4.535974899999994, - 4.560265099999993, - 4.592135499999994, - 4.755736999999992, - 4.783027199999991, - 4.769337099999992, - 4.774987099999992, - 4.6680061999999936, - 4.851687999999992, - 4.8645781999999915, - 4.848867999999992, - 4.882638599999991, - 4.890038699999991, - 4.890038699999991, - 4.89742879999999, - 4.89742879999999, - 4.89742879999999, - 4.89742879999999, - 4.89742879999999, - 4.89742879999999, - 4.89742879999999, - 4.90816889999999, - 4.90816889999999, - 4.90816889999999, - 4.90816889999999, - 4.90816889999999, - 4.90816889999999, - 4.90816889999999, - 4.90816889999999, - 4.90816889999999, - 4.90816889999999, - 4.90944899999999, - 4.90944899999999, - 4.90944899999999, - 4.90944899999999, - 4.90944899999999, - 4.90944899999999, - 4.90944899999999, - 4.90944899999999, - 4.90944899999999, - 4.90944899999999, - 4.90944899999999, - 4.90944899999999, - 4.90944899999999, - 4.90944899999999 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 7623
prediction: 2.305
MedInc: 0.4999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.621
MedInc: 0.644902

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.325
MedInc: 0.7899039999999999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.328
MedInc: 0.934906

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.328
MedInc: 1.079908

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.327
MedInc: 1.22491

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.325
MedInc: 1.369912

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.319
MedInc: 1.5149139999999999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.325
MedInc: 1.659916

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.264
MedInc: 1.804918

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.265
MedInc: 1.9499199999999999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.308
MedInc: 2.094922

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.403
MedInc: 2.2399240000000002

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.523
MedInc: 2.384926

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.612
MedInc: 2.529928

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.637
MedInc: 2.67493

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.632
MedInc: 2.8199319999999997

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.672
MedInc: 2.9649339999999995

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.709
MedInc: 3.1099360000000003

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.804
MedInc: 3.254938

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.883
MedInc: 3.39994

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.908
MedInc: 3.544942

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.916
MedInc: 3.6899439999999997

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 1.943
MedInc: 3.8349459999999995

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.106
MedInc: 3.9799480000000003

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.539
MedInc: 4.12495

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.806
MedInc: 4.269952

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.821
MedInc: 4.414954

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.983
MedInc: 4.559956

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.934
MedInc: 4.704958

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.963
MedInc: 4.84996

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.049
MedInc: 4.994962

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.52
MedInc: 5.139964

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.29
MedInc: 5.284966

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.342
MedInc: 5.429968

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.389
MedInc: 5.5749699999999995

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.472
MedInc: 5.719972

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.514
MedInc: 5.864974

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.519
MedInc: 6.009976

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.778
MedInc: 6.154978

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.853
MedInc: 6.29998

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.873
MedInc: 6.4449819999999995

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.03
MedInc: 6.589984

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.071
MedInc: 6.734986

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.34
MedInc: 6.879988

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.294
MedInc: 7.02499

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.365
MedInc: 7.169992

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.447
MedInc: 7.3149939999999996

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.488
MedInc: 7.459996

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.495
MedInc: 7.604998

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.869
MedInc: 7.75

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.959
MedInc: 7.895002

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.002
MedInc: 8.040004

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.006
MedInc: 8.185006

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.206
MedInc: 8.330008

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.351
MedInc: 8.47501

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.402
MedInc: 8.620012

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.419
MedInc: 8.765013999999999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.502
MedInc: 8.910016

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.755
MedInc: 9.055018

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.811
MedInc: 9.20002

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.831
MedInc: 9.345022

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.835
MedInc: 9.490024

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.701
MedInc: 9.635026

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.885
MedInc: 9.780028

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.885
MedInc: 9.92503

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.891
MedInc: 10.070032

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.918
MedInc: 10.215034

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.918
MedInc: 10.360036

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.918
MedInc: 10.505037999999999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.925
MedInc: 10.650039999999999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.925
MedInc: 10.795042

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.925
MedInc: 10.940044

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.925
MedInc: 11.085046

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 11.230048

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 11.37505

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 11.520052

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 11.665054

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 11.810056

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 11.955058

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 12.10006

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 12.245061999999999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 12.390063999999999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 12.535065999999999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 12.680068

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 12.82507

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.923
MedInc: 12.970072

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 13.115074

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 13.260076

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 13.405078

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 13.55008

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 13.695082

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 13.840084

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 13.985085999999999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 14.130087999999999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 14.275089999999999

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 14.420092

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 14.565094

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 14.710096

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 14.855098

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.924
MedInc: 15.0001

HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
AveOccup: 3.3140243902439024
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.3049424000000003, - 1.6209306, - 1.3252701000000002, - 1.3284501, - 1.3284501, - 1.3272301, - 1.3249901, - 1.3190301, - 1.3248100999999999, - 1.2644800000000003, - 1.26493, - 1.3084800000000003, - 1.4032000000000002, - 1.5229100000000002, - 1.61209, - 1.6367900000000004, - 1.63208, - 1.6721399999999997, - 1.7092899999999995, - 1.80417, - 1.8828799999999992, - 1.9081499999999998, - 1.9156299999999988, - 1.9426399999999986, - 2.105560399999999, - 2.5388513, - 2.806451799999999, - 2.8211418999999993, - 2.9829121999999986, - 2.9342919999999992, - 2.963412099999999, - 3.048852099999998, - 2.519770699999998, - 2.2898900999999974, - 2.341709999999998, - 2.3890399999999983, - 2.471849999999999, - 2.513899999999999, - 2.5185099999999996, - 2.7778099999999997, - 2.853319999999999, - 2.8728, - 3.03013, - 3.0711899999999996, - 3.3401100999999995, - 3.293630000000001, - 3.365330100000001, - 3.4468502000000014, - 3.4880703, - 3.495260300000001, - 3.8688117, - 3.959141699999998, - 4.0024818999999985, - 4.006102099999998, - 4.206112799999998, - 4.350843899999996, - 4.4020439999999965, - 4.4190244999999955, - 4.502495199999996, - 4.754766899999995, - 4.810767399999994, - 4.830637599999994, - 4.834507699999993, - 4.700756299999995, - 4.885158299999993, - 4.885158299999993, - 4.891228399999994, - 4.918078799999992, - 4.918078799999992, - 4.918078799999992, - 4.925228899999992, - 4.925228899999992, - 4.925228899999992, - 4.925228899999992, - 4.922868899999991, - 4.922868899999991, - 4.922868899999991, - 4.922868899999991, - 4.922868899999991, - 4.922868899999991, - 4.922868899999991, - 4.922868899999991, - 4.922868899999991, - 4.922868899999991, - 4.922868899999991, - 4.922868899999991, - 4.922868899999991, - 4.924148999999991, - 4.924148999999991, - 4.924148999999991, - 4.924148999999991, - 4.924148999999991, - 4.924148999999991, - 4.924148999999991, - 4.924148999999991, - 4.924148999999991, - 4.924148999999991, - 4.924148999999991, - 4.924148999999991, - 4.924148999999991, - 4.924148999999991 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 14488
prediction: 2.27
MedInc: 0.4999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 2.066
MedInc: 0.644902

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 2.107
MedInc: 0.7899039999999999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 2.109
MedInc: 0.934906

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 2.051
MedInc: 1.079908

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 2.024
MedInc: 1.22491

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 1.998
MedInc: 1.369912

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 2.006
MedInc: 1.5149139999999999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 1.911
MedInc: 1.659916

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 1.923
MedInc: 1.804918

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 1.953
MedInc: 1.9499199999999999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 1.997
MedInc: 2.094922

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 2.056
MedInc: 2.2399240000000002

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 2.162
MedInc: 2.384926

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 2.36
MedInc: 2.529928

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 2.434
MedInc: 2.67493

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 2.566
MedInc: 2.8199319999999997

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 2.56
MedInc: 2.9649339999999995

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.027
MedInc: 3.1099360000000003

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.726
MedInc: 3.254938

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.865
MedInc: 3.39994

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.15
MedInc: 3.544942

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.497
MedInc: 3.6899439999999997

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.611
MedInc: 3.8349459999999995

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.627
MedInc: 3.9799480000000003

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.605
MedInc: 4.12495

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.617
MedInc: 4.269952

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.615
MedInc: 4.414954

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.629
MedInc: 4.559956

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.602
MedInc: 4.704958

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.586
MedInc: 4.84996

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.543
MedInc: 4.994962

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.358
MedInc: 5.139964

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.482
MedInc: 5.284966

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.494
MedInc: 5.429968

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.619
MedInc: 5.5749699999999995

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.731
MedInc: 5.719972

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.725
MedInc: 5.864974

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.726
MedInc: 6.009976

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.724
MedInc: 6.154978

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.706
MedInc: 6.29998

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.721
MedInc: 6.4449819999999995

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.754
MedInc: 6.589984

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.773
MedInc: 6.734986

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.797
MedInc: 6.879988

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.865
MedInc: 7.02499

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.845
MedInc: 7.169992

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.884
MedInc: 7.3149939999999996

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.878
MedInc: 7.459996

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.815
MedInc: 7.604998

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.753
MedInc: 7.75

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.588
MedInc: 7.895002

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.532
MedInc: 8.040004

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.513
MedInc: 8.185006

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.553
MedInc: 8.330008

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.558
MedInc: 8.47501

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.438
MedInc: 8.620012

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.393
MedInc: 8.765013999999999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.513
MedInc: 8.910016

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.715
MedInc: 9.055018

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.768
MedInc: 9.20002

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.774
MedInc: 9.345022

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.77
MedInc: 9.490024

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.618
MedInc: 9.635026

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.891
MedInc: 9.780028

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.911
MedInc: 9.92503

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.928
MedInc: 10.070032

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.991
MedInc: 10.215034

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.995
MedInc: 10.360036

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.995
MedInc: 10.505037999999999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 10.650039999999999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 10.795042

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 10.940044

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 11.085046

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 11.230048

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 11.37505

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 11.520052

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 11.665054

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 11.810056

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 11.955058

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 12.10006

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 12.245061999999999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 12.390063999999999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 12.535065999999999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.994
MedInc: 12.680068

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 12.82507

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 12.970072

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 13.115074

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 13.260076

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 13.405078

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 13.55008

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 13.695082

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 13.840084

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 13.985085999999999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 14.130087999999999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 14.275089999999999

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 14.420092

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 14.565094

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 14.710096

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 14.855098

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.993
MedInc: 15.0001

HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
AveOccup: 1.822085889570552
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.270381, - 2.0656204, - 2.1066604, - 2.1091104999999994, - 2.0505604999999996, - 2.0243904999999995, - 1.9980504999999997, - 2.0061504999999995, - 1.9110703, - 1.9226403000000007, - 1.9525803000000002, - 1.9972403000000003, - 2.0556404, - 2.1620003, - 2.3602502, - 2.4343604, - 2.565840399999999, - 2.560170599999999, - 3.0266316999999994, - 3.726083799999999, - 3.864653899999999, - 4.149574599999998, - 4.497215799999996, - 4.611405699999995, - 4.627405399999996, - 4.605385199999996, - 4.616635099999996, - 4.615364999999996, - 4.628764699999998, - 4.6015644999999985, - 4.586224399999999, - 4.542574299999999, - 4.358444499999994, - 4.482065899999992, - 4.494416199999993, - 4.618577399999991, - 4.73065789999999, - 4.72545799999999, - 4.7258879999999905, - 4.72426789999999, - 4.70553769999999, - 4.72149759999999, - 4.75410769999999, - 4.77347749999999, - 4.796937199999992, - 4.865017899999992, - 4.845437699999992, - 4.884298399999992, - 4.877827899999991, - 4.815367299999991, - 4.753316999999992, - 4.588195699999993, - 4.531865499999993, - 4.513195399999994, - 4.5526055999999935, - 4.5577354999999935, - 4.438404999999994, - 4.392724899999994, - 4.513435499999995, - 4.714517199999992, - 4.767567699999992, - 4.774467799999992, - 4.770157699999992, - 4.618075999999995, - 4.8911986999999915, - 4.91099889999999, - 4.92771909999999, - 4.990669699999989, - 4.99523979999999, - 4.994539699999989, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99383959999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999, - 4.99253949999999 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 13090
prediction: 0.97
MedInc: 0.4999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 0.966
MedInc: 0.644902

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 0.929
MedInc: 0.7899039999999999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 0.917
MedInc: 0.934906

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 0.918
MedInc: 1.079908

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 0.909
MedInc: 1.22491

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 0.904
MedInc: 1.369912

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 0.907
MedInc: 1.5149139999999999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 0.909
MedInc: 1.659916

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 0.918
MedInc: 1.804918

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 0.952
MedInc: 1.9499199999999999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 0.982
MedInc: 2.094922

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.007
MedInc: 2.2399240000000002

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.05
MedInc: 2.384926

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.022
MedInc: 2.529928

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.035
MedInc: 2.67493

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.141
MedInc: 2.8199319999999997

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.159
MedInc: 2.9649339999999995

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.104
MedInc: 3.1099360000000003

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.152
MedInc: 3.254938

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.134
MedInc: 3.39994

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.155
MedInc: 3.544942

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.251
MedInc: 3.6899439999999997

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.304
MedInc: 3.8349459999999995

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.436
MedInc: 3.9799480000000003

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.55
MedInc: 4.12495

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.564
MedInc: 4.269952

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.529
MedInc: 4.414954

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.548
MedInc: 4.559956

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.606
MedInc: 4.704958

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.617
MedInc: 4.84996

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.61
MedInc: 4.994962

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.903
MedInc: 5.139964

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.933
MedInc: 5.284966

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.922
MedInc: 5.429968

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.913
MedInc: 5.5749699999999995

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 2.135
MedInc: 5.719972

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 2.416
MedInc: 5.864974

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 2.356
MedInc: 6.009976

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 2.501
MedInc: 6.154978

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 2.617
MedInc: 6.29998

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 2.653
MedInc: 6.4449819999999995

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 2.858
MedInc: 6.589984

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 2.956
MedInc: 6.734986

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.167
MedInc: 6.879988

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.285
MedInc: 7.02499

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.348
MedInc: 7.169992

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.359
MedInc: 7.3149939999999996

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.34
MedInc: 7.459996

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.47
MedInc: 7.604998

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.598
MedInc: 7.75

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.948
MedInc: 7.895002

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.951
MedInc: 8.040004

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.947
MedInc: 8.185006

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.91
MedInc: 8.330008

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.867
MedInc: 8.47501

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.851
MedInc: 8.620012

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.849
MedInc: 8.765013999999999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.757
MedInc: 8.910016

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.641
MedInc: 9.055018

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.602
MedInc: 9.20002

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.594
MedInc: 9.345022

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.594
MedInc: 9.490024

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.577
MedInc: 9.635026

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.601
MedInc: 9.780028

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.604
MedInc: 9.92503

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.597
MedInc: 10.070032

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.673
MedInc: 10.215034

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.68
MedInc: 10.360036

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.702
MedInc: 10.505037999999999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 10.650039999999999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 10.795042

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 10.940044

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 11.085046

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 11.230048

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 11.37505

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 11.520052

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 11.665054

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 11.810056

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 11.955058

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 12.10006

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 12.245061999999999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 12.390063999999999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 12.535065999999999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 12.680068

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 12.82507

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 12.970072

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 13.115074

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 13.260076

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 13.405078

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 13.55008

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 13.695082

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 13.840084

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 13.985085999999999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 14.130087999999999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 14.275089999999999

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 14.420092

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 14.565094

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 14.710096

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 14.855098

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 3.701
MedInc: 15.0001

HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
AveOccup: 2.900523560209424
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.9696100000000001, - 0.9656100000000001, - 0.9285900000000001, - 0.91717, - 0.91765, - 0.9091800000000001, - 0.9042000000000001, - 0.9069600000000002, - 0.9085900000000002, - 0.9183000000000001, - 0.9515, - 0.9818900000000003, - 1.0074000000000007, - 1.049780000000001, - 1.0218400000000012, - 1.0347800000000016, - 1.1406100000000012, - 1.158910000000001, - 1.1036100000000002, - 1.1520000000000004, - 1.1340800000000002, - 1.1552300000000002, - 1.2509400000000002, - 1.30354, - 1.4363400000000006, - 1.5498500000000002, - 1.5643200000000004, - 1.5291600000000003, - 1.5476100000000002, - 1.60602, - 1.6166800000000001, - 1.60988, - 1.9033199999999997, - 1.9326599999999996, - 1.9217999999999997, - 1.91303, - 2.1351600000000004, - 2.4157100000000007, - 2.355780000000001, - 2.5014100000000012, - 2.6170801000000017, - 2.6528700000000014, - 2.8584000000000014, - 2.956090300000002, - 3.167450000000001, - 3.2845301000000005, - 3.3476703000000017, - 3.359330400000001, - 3.3401603000000004, - 3.4697703000000013, - 3.5975702000000007, - 3.9480306000000014, - 3.951370400000002, - 3.9471604000000013, - 3.909920500000001, - 3.867061100000001, - 3.8510512000000006, - 3.8485213000000003, - 3.7573516000000002, - 3.641442199999998, - 3.601692499999998, - 3.5939524999999986, - 3.5939524999999986, - 3.576652299999999, - 3.6013525999999985, - 3.604412699999999, - 3.597262599999999, - 3.672653299999999, - 3.680053399999999, - 3.702103499999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999, - 3.701413599999999 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 9023
prediction: 2.49
MedInc: 0.4999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 2.136
MedInc: 0.644902

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 1.842
MedInc: 0.7899039999999999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 1.842
MedInc: 0.934906

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 1.842
MedInc: 1.079908

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 1.842
MedInc: 1.22491

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 1.84
MedInc: 1.369912

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 1.836
MedInc: 1.5149139999999999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 1.869
MedInc: 1.659916

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 1.863
MedInc: 1.804918

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 1.868
MedInc: 1.9499199999999999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 1.938
MedInc: 2.094922

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 2.017
MedInc: 2.2399240000000002

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 2.132
MedInc: 2.384926

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 2.425
MedInc: 2.529928

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 2.494
MedInc: 2.67493

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 2.512
MedInc: 2.8199319999999997

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 2.577
MedInc: 2.9649339999999995

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 2.96
MedInc: 3.1099360000000003

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.279
MedInc: 3.254938

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.262
MedInc: 3.39994

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.224
MedInc: 3.544942

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.149
MedInc: 3.6899439999999997

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.238
MedInc: 3.8349459999999995

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.466
MedInc: 3.9799480000000003

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.319
MedInc: 4.12495

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.257
MedInc: 4.269952

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.3
MedInc: 4.414954

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.316
MedInc: 4.559956

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.4
MedInc: 4.704958

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.428
MedInc: 4.84996

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.439
MedInc: 4.994962

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.703
MedInc: 5.139964

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.687
MedInc: 5.284966

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.727
MedInc: 5.429968

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.863
MedInc: 5.5749699999999995

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.849
MedInc: 5.719972

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.881
MedInc: 5.864974

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.771
MedInc: 6.009976

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.73
MedInc: 6.154978

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.849
MedInc: 6.29998

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.056
MedInc: 6.4449819999999995

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.153
MedInc: 6.589984

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.118
MedInc: 6.734986

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.975
MedInc: 6.879988

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.999
MedInc: 7.02499

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.948
MedInc: 7.169992

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.096
MedInc: 7.3149939999999996

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.138
MedInc: 7.459996

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.145
MedInc: 7.604998

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.3
MedInc: 7.75

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.497
MedInc: 7.895002

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.502
MedInc: 8.040004

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.524
MedInc: 8.185006

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.554
MedInc: 8.330008

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.655
MedInc: 8.47501

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.695
MedInc: 8.620012

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.648
MedInc: 8.765013999999999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.719
MedInc: 8.910016

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.869
MedInc: 9.055018

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.881
MedInc: 9.20002

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.882
MedInc: 9.345022

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.886
MedInc: 9.490024

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.771
MedInc: 9.635026

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.976
MedInc: 9.780028

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.984
MedInc: 9.92503

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.991
MedInc: 10.070032

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 10.215034

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 10.360036

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 10.505037999999999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 10.650039999999999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 10.795042

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 10.940044

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 11.085046

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 11.230048

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 11.37505

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 11.520052

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 11.665054

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 11.810056

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 11.955058

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 12.10006

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 12.245061999999999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 12.390063999999999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 12.535065999999999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 12.680068

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 12.82507

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 12.970072

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 13.115074

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 13.260076

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 13.405078

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 13.55008

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 13.695082

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 13.840084

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 13.985085999999999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 14.130087999999999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 14.275089999999999

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 14.420092

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 14.565094

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 14.710096

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 14.855098

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 5.0
MedInc: 15.0001

HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
AveOccup: 2.4260921603830043
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.4904617, - 2.1355606999999996, - 1.8420200999999998, - 1.8420200999999998, - 1.8420200999999998, - 1.8420200999999998, - 1.8397301, - 1.8362701, - 1.8686500999999995, - 1.8629600999999996, - 1.8675600999999995, - 1.9375001000000003, - 2.0167201000000006, - 2.1320001000000004, - 2.424930099999999, - 2.4940400999999985, - 2.511540099999998, - 2.5772601999999982, - 2.9599209999999987, - 3.2787713999999992, - 3.2615212999999996, - 3.224361199999999, - 3.149240699999999, - 3.2381207999999986, - 3.4658207999999977, - 3.3192508, - 3.2573505, - 3.3004004999999994, - 3.3159004, - 3.4004007, - 3.4275706999999995, - 3.4393607, - 3.7027314999999983, - 3.686731799999998, - 3.7265620999999975, - 3.8625117999999974, - 3.8486714999999965, - 3.881111299999997, - 3.771141199999998, - 3.7301411, - 3.8494514, - 4.0561526999999975, - 4.152553199999999, - 4.117632599999998, - 3.9748716, - 3.9988317, - 3.947871800000001, - 4.095632799999999, - 4.138063099999999, - 4.145483099999999, - 4.300363699999999, - 4.497354699999997, - 4.501934399999996, - 4.523944599999996, - 4.553564899999994, - 4.654956399999993, - 4.694546999999993, - 4.648037199999993, - 4.719217599999993, - 4.869248299999992, - 4.8810880999999915, - 4.881998199999991, - 4.885758199999991, - 4.771157099999993, - 4.97627939999999, - 4.9842695999999895, - 4.991089699999989, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 18361
prediction: 1.89
MedInc: 0.4999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.896
MedInc: 0.644902

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.896
MedInc: 0.7899039999999999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.896
MedInc: 0.934906

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.896
MedInc: 1.079908

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.897
MedInc: 1.22491

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.897
MedInc: 1.369912

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.891
MedInc: 1.5149139999999999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.888
MedInc: 1.659916

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.869
MedInc: 1.804918

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.856
MedInc: 1.9499199999999999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.84
MedInc: 2.094922

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.836
MedInc: 2.2399240000000002

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.874
MedInc: 2.384926

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.914
MedInc: 2.529928

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.943
MedInc: 2.67493

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.964
MedInc: 2.8199319999999997

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 1.986
MedInc: 2.9649339999999995

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 2.306
MedInc: 3.1099360000000003

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 2.624
MedInc: 3.254938

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 2.706
MedInc: 3.39994

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 2.714
MedInc: 3.544942

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 2.689
MedInc: 3.6899439999999997

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 2.737
MedInc: 3.8349459999999995

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 2.788
MedInc: 3.9799480000000003

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 2.901
MedInc: 4.12495

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 2.91
MedInc: 4.269952

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 2.871
MedInc: 4.414954

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.024
MedInc: 4.559956

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.071
MedInc: 4.704958

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.08
MedInc: 4.84996

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.051
MedInc: 4.994962

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 2.906
MedInc: 5.139964

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 2.943
MedInc: 5.284966

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.02
MedInc: 5.429968

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.09
MedInc: 5.5749699999999995

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.196
MedInc: 5.719972

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.227
MedInc: 5.864974

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.196
MedInc: 6.009976

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.275
MedInc: 6.154978

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.268
MedInc: 6.29998

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.487
MedInc: 6.4449819999999995

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.73
MedInc: 6.589984

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.721
MedInc: 6.734986

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.919
MedInc: 6.879988

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.981
MedInc: 7.02499

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 3.992
MedInc: 7.169992

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.051
MedInc: 7.3149939999999996

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.134
MedInc: 7.459996

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.089
MedInc: 7.604998

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.213
MedInc: 7.75

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.269
MedInc: 7.895002

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.297
MedInc: 8.040004

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.276
MedInc: 8.185006

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.441
MedInc: 8.330008

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.605
MedInc: 8.47501

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.67
MedInc: 8.620012

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.654
MedInc: 8.765013999999999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.728
MedInc: 8.910016

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.875
MedInc: 9.055018

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.916
MedInc: 9.20002

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.916
MedInc: 9.345022

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.917
MedInc: 9.490024

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.806
MedInc: 9.635026

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.975
MedInc: 9.780028

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.978
MedInc: 9.92503

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.981
MedInc: 10.070032

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 10.215034

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 10.360036

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 10.505037999999999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 10.650039999999999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 10.795042

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 10.940044

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 11.085046

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 11.230048

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 11.37505

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 11.520052

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 11.665054

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 11.810056

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 11.955058

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 12.10006

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 12.245061999999999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 12.390063999999999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 12.535065999999999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 12.680068

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 12.82507

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 12.970072

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 13.115074

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 13.260076

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 13.405078

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 13.55008

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 13.695082

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 13.840084

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 13.985085999999999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 14.130087999999999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 14.275089999999999

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 14.420092

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 14.565094

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 14.710096

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 14.855098

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
MedInc: 15.0001

HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
AveOccup: 2.809070958302853
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.88995, - 1.8955200000000003, - 1.8955200000000003, - 1.8955200000000003, - 1.8955200000000003, - 1.8965000000000003, - 1.8965000000000003, - 1.8914800000000003, - 1.8875100000000002, - 1.8687, - 1.8558500000000004, - 1.8399600000000007, - 1.8357500000000002, - 1.8740599999999998, - 1.9141900000000005, - 1.9434500000000003, - 1.9638499999999999, - 1.9855099999999999, - 2.3055600000000003, - 2.6242100000000006, - 2.7063999999999995, - 2.7138499999999994, - 2.6893801, - 2.7368203000000006, - 2.7877603000000004, - 2.9008005000000003, - 2.910120600000001, - 2.8705506, - 3.0238009, - 3.0705908999999996, - 3.0801008999999997, - 3.0510707999999997, - 2.9055703999999984, - 2.942930499999999, - 3.0197502999999988, - 3.0900102999999994, - 3.1962203, - 3.2273004, - 3.1957603999999993, - 3.2746805999999986, - 3.268220500000001, - 3.4873706999999996, - 3.7300510000000004, - 3.7209613999999993, - 3.919192, - 3.981242799999998, - 3.9920828999999984, - 4.0512929999999985, - 4.133563299999998, - 4.088552599999998, - 4.213351999999998, - 4.268671799999996, - 4.296781699999997, - 4.2756418999999966, - 4.4409629999999956, - 4.604914999999995, - 4.669775499999996, - 4.653735899999996, - 4.727596699999993, - 4.874767899999992, - 4.91614839999999, - 4.91614839999999, - 4.91684829999999, - 4.805667099999993, - 4.97467939999999, - 4.9777394999999895, - 4.980799599999989, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 7466
prediction: 2.387
MedInc: 0.4999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.675
MedInc: 0.644902

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.349
MedInc: 0.7899039999999999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.349
MedInc: 0.934906

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.349
MedInc: 1.079908

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.35
MedInc: 1.22491

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.361
MedInc: 1.369912

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.361
MedInc: 1.5149139999999999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.359
MedInc: 1.659916

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.355
MedInc: 1.804918

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.334
MedInc: 1.9499199999999999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.367
MedInc: 2.094922

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.374
MedInc: 2.2399240000000002

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.358
MedInc: 2.384926

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.245
MedInc: 2.529928

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.242
MedInc: 2.67493

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.27
MedInc: 2.8199319999999997

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.375
MedInc: 2.9649339999999995

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.511
MedInc: 3.1099360000000003

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.546
MedInc: 3.254938

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.557
MedInc: 3.39994

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.57
MedInc: 3.544942

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.571
MedInc: 3.6899439999999997

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.619
MedInc: 3.8349459999999995

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.594
MedInc: 3.9799480000000003

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.671
MedInc: 4.12495

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.706
MedInc: 4.269952

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.716
MedInc: 4.414954

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.771
MedInc: 4.559956

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.749
MedInc: 4.704958

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.742
MedInc: 4.84996

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.893
MedInc: 4.994962

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.024
MedInc: 5.139964

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.041
MedInc: 5.284966

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.038
MedInc: 5.429968

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.092
MedInc: 5.5749699999999995

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.533
MedInc: 5.719972

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.991
MedInc: 5.864974

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.955
MedInc: 6.009976

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.979
MedInc: 6.154978

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.975
MedInc: 6.29998

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.034
MedInc: 6.4449819999999995

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.979
MedInc: 6.589984

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.142
MedInc: 6.734986

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.303
MedInc: 6.879988

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.726
MedInc: 7.02499

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.799
MedInc: 7.169992

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.754
MedInc: 7.3149939999999996

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.771
MedInc: 7.459996

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.761
MedInc: 7.604998

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.903
MedInc: 7.75

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.998
MedInc: 7.895002

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.99
MedInc: 8.040004

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.002
MedInc: 8.185006

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.012
MedInc: 8.330008

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.098
MedInc: 8.47501

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.074
MedInc: 8.620012

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.107
MedInc: 8.765013999999999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.128
MedInc: 8.910016

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.271
MedInc: 9.055018

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.329
MedInc: 9.20002

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.329
MedInc: 9.345022

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.334
MedInc: 9.490024

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.25
MedInc: 9.635026

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.369
MedInc: 9.780028

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.345
MedInc: 9.92503

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.348
MedInc: 10.070032

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.364
MedInc: 10.215034

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.364
MedInc: 10.360036

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.364
MedInc: 10.505037999999999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.364
MedInc: 10.650039999999999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.364
MedInc: 10.795042

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.364
MedInc: 10.940044

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.364
MedInc: 11.085046

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.364
MedInc: 11.230048

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.37
MedInc: 11.37505

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.37
MedInc: 11.520052

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.37
MedInc: 11.665054

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.37
MedInc: 11.810056

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.37
MedInc: 11.955058

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.37
MedInc: 12.10006

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.37
MedInc: 12.245061999999999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.37
MedInc: 12.390063999999999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.37
MedInc: 12.535065999999999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.37
MedInc: 12.680068

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.37
MedInc: 12.82507

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.37
MedInc: 12.970072

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.371
MedInc: 13.115074

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.371
MedInc: 13.260076

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.371
MedInc: 13.405078

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.371
MedInc: 13.55008

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.379
MedInc: 13.695082

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.379
MedInc: 13.840084

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.379
MedInc: 13.985085999999999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.379
MedInc: 14.130087999999999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.379
MedInc: 14.275089999999999

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.379
MedInc: 14.420092

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.379
MedInc: 14.565094

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.379
MedInc: 14.710096

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.379
MedInc: 14.855098

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 4.379
MedInc: 15.0001

HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
AveOccup: 3.587719298245614
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.3869425, - 1.6752506, - 1.3491499999999998, - 1.3491499999999998, - 1.3491799999999998, - 1.34952, - 1.3606599999999998, - 1.3612199999999999, - 1.3590500000000003, - 1.3550400000000002, - 1.3339899999999998, - 1.3666399999999996, - 1.3735299999999995, - 1.3583999999999994, - 1.2452599999999994, - 1.2423499999999992, - 1.2704099999999994, - 1.3748999999999998, - 1.510729999999999, - 1.5462199999999988, - 1.5572299999999992, - 1.5703099999999992, - 1.5711599999999992, - 1.6192199999999992, - 1.5939699999999994, - 1.6714100000000005, - 1.7062000000000013, - 1.7162500000000016, - 1.7705900000000012, - 1.7486300000000012, - 1.7417000000000007, - 1.892500000000001, - 2.0238999999999994, - 2.041, - 2.0378, - 2.0923899999999995, - 2.5330500000000002, - 2.9913000999999997, - 2.955270099999999, - 2.979120499999999, - 2.9748506999999993, - 3.033830999999999, - 2.9793808999999993, - 3.1421007, - 3.303380600000001, - 3.726431799999998, - 3.7988619999999975, - 3.7542615999999978, - 3.7714517999999977, - 3.7609316999999978, - 3.903021999999998, - 3.997652399999998, - 3.9903524999999975, - 4.002212399999998, - 4.012442699999998, - 4.098352799999997, - 4.074282999999998, - 4.106993299999997, - 4.1280138999999965, - 4.271015499999995, - 4.329336099999995, - 4.328556199999995, - 4.334206199999995, - 4.249925499999996, - 4.3691868999999945, - 4.345436899999995, - 4.348226999999994, - 4.364177199999993, - 4.364177199999993, - 4.364177199999993, - 4.364177199999993, - 4.364177199999993, - 4.364177199999993, - 4.364177199999993, - 4.364177199999993, - 4.3697771999999935, - 4.3697771999999935, - 4.3697771999999935, - 4.3697771999999935, - 4.3697771999999935, - 4.3697771999999935, - 4.3697771999999935, - 4.3697771999999935, - 4.3697771999999935, - 4.3697771999999935, - 4.3697771999999935, - 4.3697771999999935, - 4.371057299999993, - 4.371057299999993, - 4.371057299999993, - 4.371057299999993, - 4.3793873999999935, - 4.3793873999999935, - 4.3793873999999935, - 4.3793873999999935, - 4.3793873999999935, - 4.3793873999999935, - 4.3793873999999935, - 4.3793873999999935, - 4.3793873999999935, - 4.3793873999999935 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 15862
prediction: 2.153
MedInc: 0.4999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.167
MedInc: 0.644902

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.171
MedInc: 0.7899039999999999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.17
MedInc: 0.934906

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.17
MedInc: 1.079908

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.17
MedInc: 1.22491

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.168
MedInc: 1.369912

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.168
MedInc: 1.5149139999999999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.185
MedInc: 1.659916

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.237
MedInc: 1.804918

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.289
MedInc: 1.9499199999999999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.305
MedInc: 2.094922

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.303
MedInc: 2.2399240000000002

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.348
MedInc: 2.384926

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.592
MedInc: 2.529928

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.597
MedInc: 2.67493

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.581
MedInc: 2.8199319999999997

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.625
MedInc: 2.9649339999999995

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.89
MedInc: 3.1099360000000003

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.041
MedInc: 3.254938

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.129
MedInc: 3.39994

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.167
MedInc: 3.544942

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.129
MedInc: 3.6899439999999997

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.089
MedInc: 3.8349459999999995

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.141
MedInc: 3.9799480000000003

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.194
MedInc: 4.12495

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.307
MedInc: 4.269952

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.39
MedInc: 4.414954

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.374
MedInc: 4.559956

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.386
MedInc: 4.704958

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.372
MedInc: 4.84996

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.321
MedInc: 4.994962

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.33
MedInc: 5.139964

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.364
MedInc: 5.284966

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.42
MedInc: 5.429968

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.464
MedInc: 5.5749699999999995

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.585
MedInc: 5.719972

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.565
MedInc: 5.864974

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.55
MedInc: 6.009976

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.747
MedInc: 6.154978

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.888
MedInc: 6.29998

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.961
MedInc: 6.4449819999999995

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.029
MedInc: 6.589984

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.133
MedInc: 6.734986

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.2
MedInc: 6.879988

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.299
MedInc: 7.02499

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.288
MedInc: 7.169992

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.285
MedInc: 7.3149939999999996

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.259
MedInc: 7.459996

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.261
MedInc: 7.604998

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.432
MedInc: 7.75

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.655
MedInc: 7.895002

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.664
MedInc: 8.040004

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.631
MedInc: 8.185006

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.698
MedInc: 8.330008

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.663
MedInc: 8.47501

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.697
MedInc: 8.620012

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.693
MedInc: 8.765013999999999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.664
MedInc: 8.910016

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.678
MedInc: 9.055018

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.699
MedInc: 9.20002

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.689
MedInc: 9.345022

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.694
MedInc: 9.490024

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.556
MedInc: 9.635026

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.72
MedInc: 9.780028

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.726
MedInc: 9.92503

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.717
MedInc: 10.070032

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.749
MedInc: 10.215034

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.757
MedInc: 10.360036

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.757
MedInc: 10.505037999999999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.757
MedInc: 10.650039999999999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.757
MedInc: 10.795042

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.757
MedInc: 10.940044

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.757
MedInc: 11.085046

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.757
MedInc: 11.230048

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 11.37505

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 11.520052

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 11.665054

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 11.810056

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 11.955058

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 12.10006

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 12.245061999999999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 12.390063999999999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 12.535065999999999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 12.680068

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 12.82507

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 12.970072

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 13.115074

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 13.260076

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 13.405078

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 13.55008

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 13.695082

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 13.840084

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 13.985085999999999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 14.130087999999999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 14.275089999999999

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 14.420092

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 14.565094

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 14.710096

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 14.855098

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 4.762
MedInc: 15.0001

HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
AveOccup: 2.363702096890817
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.15301, - 2.16662, - 2.17101, - 2.1702099999999995, - 2.1702099999999995, - 2.17046, - 2.16787, - 2.16787, - 2.18462, - 2.2371299999999996, - 2.28938, - 2.3047899999999997, - 2.3032899999999996, - 2.3484099999999986, - 2.592060199999998, - 2.596880199999997, - 2.5811101999999977, - 2.625420199999998, - 2.8901101999999987, - 3.041140099999999, - 3.128989999999999, - 3.1671100999999986, - 3.129150099999998, - 3.088590099999999, - 3.140980199999999, - 3.1944103000000013, - 3.3069805000000003, - 3.3900007999999993, - 3.3744207999999998, - 3.385580799999999, - 3.3724005999999993, - 3.3209504999999995, - 3.330340300000001, - 3.363770400000001, - 3.4195904000000015, - 3.463620300000001, - 3.585110500000001, - 3.564520500000001, - 3.5501206000000014, - 3.7468313999999996, - 3.888311799999997, - 3.9609219999999987, - 4.029221899999999, - 4.1333919, - 4.200362000000001, - 4.299402799999998, - 4.287902999999997, - 4.284763099999997, - 4.259162999999997, - 4.260732799999997, - 4.431604199999996, - 4.655105499999994, - 4.663835699999995, - 4.631315399999995, - 4.697665899999995, - 4.663106099999995, - 4.697066599999994, - 4.692506799999993, - 4.664416799999994, - 4.677517299999993, - 4.699247099999992, - 4.688627099999992, - 4.694277099999992, - 4.555715899999994, - 4.719627699999991, - 4.725747899999991, - 4.717427799999992, - 4.7491683999999905, - 4.756568499999991, - 4.756568499999991, - 4.756568499999991, - 4.756568499999991, - 4.756568499999991, - 4.756568499999991, - 4.756568499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991, - 4.762168499999991 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 20576
prediction: 0.997
MedInc: 0.4999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.991
MedInc: 0.644902

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.987
MedInc: 0.7899039999999999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.984
MedInc: 0.934906

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.984
MedInc: 1.079908

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.986
MedInc: 1.22491

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.987
MedInc: 1.369912

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.989
MedInc: 1.5149139999999999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.99
MedInc: 1.659916

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.991
MedInc: 1.804918

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.012
MedInc: 1.9499199999999999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.049
MedInc: 2.094922

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.033
MedInc: 2.2399240000000002

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.07
MedInc: 2.384926

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.943
MedInc: 2.529928

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.938
MedInc: 2.67493

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.976
MedInc: 2.8199319999999997

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.017
MedInc: 2.9649339999999995

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.005
MedInc: 3.1099360000000003

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.952
MedInc: 3.254938

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 0.984
MedInc: 3.39994

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.035
MedInc: 3.544942

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.111
MedInc: 3.6899439999999997

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.118
MedInc: 3.8349459999999995

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.194
MedInc: 3.9799480000000003

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.165
MedInc: 4.12495

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.243
MedInc: 4.269952

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.288
MedInc: 4.414954

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.352
MedInc: 4.559956

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.451
MedInc: 4.704958

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.518
MedInc: 4.84996

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.683
MedInc: 4.994962

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.338
MedInc: 5.139964

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.445
MedInc: 5.284966

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.409
MedInc: 5.429968

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.394
MedInc: 5.5749699999999995

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.197
MedInc: 5.719972

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.04
MedInc: 5.864974

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.039
MedInc: 6.009976

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.159
MedInc: 6.154978

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.232
MedInc: 6.29998

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.347
MedInc: 6.4449819999999995

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.629
MedInc: 6.589984

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.725
MedInc: 6.734986

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.98
MedInc: 6.879988

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.01
MedInc: 7.02499

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.968
MedInc: 7.169992

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.967
MedInc: 7.3149939999999996

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.936
MedInc: 7.459996

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 2.991
MedInc: 7.604998

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.113
MedInc: 7.75

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.421
MedInc: 7.895002

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.441
MedInc: 8.040004

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.431
MedInc: 8.185006

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.48
MedInc: 8.330008

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.45
MedInc: 8.47501

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.465
MedInc: 8.620012

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.451
MedInc: 8.765013999999999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.511
MedInc: 8.910016

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.526
MedInc: 9.055018

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.54
MedInc: 9.20002

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.537
MedInc: 9.345022

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.535
MedInc: 9.490024

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.531
MedInc: 9.635026

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.573
MedInc: 9.780028

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.576
MedInc: 9.92503

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.559
MedInc: 10.070032

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.611
MedInc: 10.215034

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.611
MedInc: 10.360036

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.626
MedInc: 10.505037999999999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 10.650039999999999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 10.795042

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 10.940044

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 11.085046

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 11.230048

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 11.37505

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 11.520052

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 11.665054

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 11.810056

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 11.955058

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 12.10006

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 12.245061999999999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 12.390063999999999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 12.535065999999999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 12.680068

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 12.82507

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.63
MedInc: 12.970072

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 13.115074

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 13.260076

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 13.405078

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 13.55008

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 13.695082

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 13.840084

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 13.985085999999999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 14.130087999999999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 14.275089999999999

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 14.420092

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 14.565094

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 14.710096

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 14.855098

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 3.632
MedInc: 15.0001

HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
AveOccup: 3.730769230769231
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.9968299999999995, - 0.9908299999999994, - 0.9874099999999995, - 0.9839999999999995, - 0.9843899999999995, - 0.9861299999999996, - 0.9869699999999996, - 0.9893799999999996, - 0.9903599999999995, - 0.9908099999999994, - 1.01161, - 1.04924, - 1.0334599999999998, - 1.0696, - 0.9427400000000001, - 0.9377999999999997, - 0.97608, - 1.0166899999999999, - 1.004709999999999, - 0.9524199999999987, - 0.9836799999999988, - 1.0353499999999993, - 1.110659999999999, - 1.1175299999999995, - 1.1941300000000004, - 1.164720000000001, - 1.2425700000000006, - 1.2881100000000003, - 1.3517599999999999, - 1.4512199999999995, - 1.51788, - 1.6829999999999992, - 2.3376608, - 2.4449309, - 2.4086006999999996, - 2.3939207, - 2.1967103, - 2.04015, - 2.03894, - 2.15861, - 2.23166, - 2.3473701000000005, - 2.629110300000001, - 2.7254102000000007, - 2.979520299999999, - 3.0099205999999987, - 2.9675605999999983, - 2.9667304999999984, - 2.9361604999999993, - 2.9908203999999987, - 3.1133102000000004, - 3.4207103000000005, - 3.4405502000000006, - 3.4313002, - 3.4804701999999996, - 3.4502503999999994, - 3.4654005, - 3.4507605, - 3.511241, - 3.5262413999999995, - 3.5397215, - 3.5369416, - 3.5351216000000005, - 3.5306717000000005, - 3.572802000000001, - 3.575862100000001, - 3.5586221000000013, - 3.6108324, - 3.6108324, - 3.6260025000000002, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6303726, - 3.6316527, - 3.6316527, - 3.6316527, - 3.6316527, - 3.6316527, - 3.6316527, - 3.6316527, - 3.6316527, - 3.6316527, - 3.6316527, - 3.6316527, - 3.6316527, - 3.6316527, - 3.6316527 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 13167
prediction: 1.162
MedInc: 0.4999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.16
MedInc: 0.644902

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.144
MedInc: 0.7899039999999999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.139
MedInc: 0.934906

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.121
MedInc: 1.079908

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.122
MedInc: 1.22491

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.13
MedInc: 1.369912

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.13
MedInc: 1.5149139999999999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.16
MedInc: 1.659916

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.155
MedInc: 1.804918

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.155
MedInc: 1.9499199999999999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.152
MedInc: 2.094922

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.172
MedInc: 2.2399240000000002

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.271
MedInc: 2.384926

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.413
MedInc: 2.529928

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.497
MedInc: 2.67493

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.487
MedInc: 2.8199319999999997

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.5
MedInc: 2.9649339999999995

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 1.867
MedInc: 3.1099360000000003

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.293
MedInc: 3.254938

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.304
MedInc: 3.39994

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.329
MedInc: 3.544942

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.301
MedInc: 3.6899439999999997

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.248
MedInc: 3.8349459999999995

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.156
MedInc: 3.9799480000000003

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.225
MedInc: 4.12495

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.107
MedInc: 4.269952

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.096
MedInc: 4.414954

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.119
MedInc: 4.559956

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.174
MedInc: 4.704958

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.163
MedInc: 4.84996

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.168
MedInc: 4.994962

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.075
MedInc: 5.139964

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.133
MedInc: 5.284966

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.196
MedInc: 5.429968

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.288
MedInc: 5.5749699999999995

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.518
MedInc: 5.719972

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.751
MedInc: 5.864974

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.791
MedInc: 6.009976

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.819
MedInc: 6.154978

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.733
MedInc: 6.29998

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.776
MedInc: 6.4449819999999995

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.005
MedInc: 6.589984

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.982
MedInc: 6.734986

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.468
MedInc: 6.879988

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.371
MedInc: 7.02499

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.371
MedInc: 7.169992

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.362
MedInc: 7.3149939999999996

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.362
MedInc: 7.459996

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.391
MedInc: 7.604998

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.521
MedInc: 7.75

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.675
MedInc: 7.895002

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.673
MedInc: 8.040004

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.563
MedInc: 8.185006

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.599
MedInc: 8.330008

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.742
MedInc: 8.47501

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.74
MedInc: 8.620012

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.697
MedInc: 8.765013999999999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.727
MedInc: 8.910016

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 3.778
MedInc: 9.055018

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.285
MedInc: 9.20002

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.318
MedInc: 9.345022

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.328
MedInc: 9.490024

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.316
MedInc: 9.635026

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.466
MedInc: 9.780028

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.453
MedInc: 9.92503

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.526
MedInc: 10.070032

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.538
MedInc: 10.215034

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.544
MedInc: 10.360036

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.402
MedInc: 10.505037999999999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.36
MedInc: 10.650039999999999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.732
MedInc: 10.795042

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.729
MedInc: 10.940044

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.747
MedInc: 11.085046

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.756
MedInc: 11.230048

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.756
MedInc: 11.37505

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.757
MedInc: 11.520052

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.767
MedInc: 11.665054

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.767
MedInc: 11.810056

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 11.955058

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 12.10006

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 12.245061999999999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 12.390063999999999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 12.535065999999999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 12.680068

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 12.82507

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 12.970072

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 13.115074

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 13.260076

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 13.405078

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 13.55008

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 13.695082

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 13.840084

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 13.985085999999999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 14.130087999999999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 14.275089999999999

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 14.420092

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 14.565094

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 14.710096

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 14.855098

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 4.783
MedInc: 15.0001

HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
AveOccup: 3.2516666666666665
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.1618899999999999, - 1.15955, - 1.14387, - 1.1388899999999997, - 1.1206699999999998, - 1.1215299999999997, - 1.1297699999999997, - 1.1297699999999997, - 1.1600599999999996, - 1.1549199999999997, - 1.15505, - 1.15161, - 1.17204, - 1.2706, - 1.41293, - 1.4974200000000004, - 1.4866499999999996, - 1.50018, - 1.8671099999999996, - 2.2928299999999986, - 2.304219999999999, - 2.3288899999999995, - 2.3012999999999995, - 2.2482499999999996, - 2.156009999999999, - 2.225029999999999, - 2.107389999999999, - 2.0961899999999996, - 2.119249999999999, - 2.1737199999999985, - 2.162879999999999, - 2.168149999999999, - 2.07451, - 2.13323, - 2.1964300000000008, - 2.2878600000000002, - 2.5184699999999998, - 2.7512000999999997, - 2.7906700000000013, - 2.8192900000000005, - 2.7326000000000015, - 2.77617, - 3.0050002000000005, - 2.98233, - 3.4677111, - 3.3710107999999996, - 3.371310799999999, - 3.3616707999999993, - 3.361620700000001, - 3.390940700000001, - 3.520890800000001, - 3.6747603000000013, - 3.6730901, - 3.5634303, - 3.5987902999999983, - 3.7423803999999983, - 3.740280699999998, - 3.697050799999998, - 3.727310999999998, - 3.7780812999999966, - 4.2852836999999955, - 4.3180738999999955, - 4.328174099999996, - 4.315604099999995, - 4.4662449999999945, - 4.4528249999999945, - 4.526425399999995, - 4.537935299999994, - 4.543645399999994, - 4.402354999999995, - 4.360354799999995, - 4.731667299999993, - 4.7292471999999925, - 4.746926999999994, - 4.755737599999993, - 4.755737599999993, - 4.756607599999993, - 4.767347699999992, - 4.767347699999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992, - 4.782757799999992 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 3672
prediction: 2.448
MedInc: 0.4999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.034
MedInc: 0.644902

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.735
MedInc: 0.7899039999999999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.735
MedInc: 0.934906

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.735
MedInc: 1.079908

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.743
MedInc: 1.22491

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.744
MedInc: 1.369912

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.738
MedInc: 1.5149139999999999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.715
MedInc: 1.659916

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.742
MedInc: 1.804918

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.751
MedInc: 1.9499199999999999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.78
MedInc: 2.094922

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.877
MedInc: 2.2399240000000002

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.964
MedInc: 2.384926

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.06
MedInc: 2.529928

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.108
MedInc: 2.67493

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.103
MedInc: 2.8199319999999997

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.109
MedInc: 2.9649339999999995

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.115
MedInc: 3.1099360000000003

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.833
MedInc: 3.254938

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.928
MedInc: 3.39994

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.955
MedInc: 3.544942

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.919
MedInc: 3.6899439999999997

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.907
MedInc: 3.8349459999999995

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 1.929
MedInc: 3.9799480000000003

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.051
MedInc: 4.12495

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.09
MedInc: 4.269952

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.164
MedInc: 4.414954

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.141
MedInc: 4.559956

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.223
MedInc: 4.704958

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.209
MedInc: 4.84996

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.349
MedInc: 4.994962

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.303
MedInc: 5.139964

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.28
MedInc: 5.284966

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.387
MedInc: 5.429968

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.445
MedInc: 5.5749699999999995

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.533
MedInc: 5.719972

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.651
MedInc: 5.864974

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.72
MedInc: 6.009976

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.922
MedInc: 6.154978

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 3.02
MedInc: 6.29998

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 3.151
MedInc: 6.4449819999999995

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 3.315
MedInc: 6.589984

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 3.631
MedInc: 6.734986

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 3.891
MedInc: 6.879988

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.565
MedInc: 7.02499

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.654
MedInc: 7.169992

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.648
MedInc: 7.3149939999999996

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.597
MedInc: 7.459996

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.532
MedInc: 7.604998

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.483
MedInc: 7.75

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.458
MedInc: 7.895002

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.459
MedInc: 8.040004

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.519
MedInc: 8.185006

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.592
MedInc: 8.330008

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.644
MedInc: 8.47501

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.651
MedInc: 8.620012

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.669
MedInc: 8.765013999999999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.791
MedInc: 8.910016

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.863
MedInc: 9.055018

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.922
MedInc: 9.20002

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.939
MedInc: 9.345022

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.947
MedInc: 9.490024

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.758
MedInc: 9.635026

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.9
MedInc: 9.780028

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.899
MedInc: 9.92503

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.893
MedInc: 10.070032

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.904
MedInc: 10.215034

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.912
MedInc: 10.360036

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.912
MedInc: 10.505037999999999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.919
MedInc: 10.650039999999999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.919
MedInc: 10.795042

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.919
MedInc: 10.940044

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.919
MedInc: 11.085046

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 11.230048

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 11.37505

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 11.520052

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 11.665054

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 11.810056

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 11.955058

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 12.10006

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 12.245061999999999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 12.390063999999999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 12.535065999999999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 12.680068

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 12.82507

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.918
MedInc: 12.970072

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.919
MedInc: 13.115074

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.919
MedInc: 13.260076

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.919
MedInc: 13.405078

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.919
MedInc: 13.55008

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.927
MedInc: 13.695082

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.927
MedInc: 13.840084

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.927
MedInc: 13.985085999999999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.927
MedInc: 14.130087999999999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.927
MedInc: 14.275089999999999

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.927
MedInc: 14.420092

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.927
MedInc: 14.565094

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.927
MedInc: 14.710096

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.927
MedInc: 14.855098

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.927
MedInc: 15.0001

HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
AveOccup: 3.359550561797753
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.448012, - 2.0339807999999997, - 1.7352901999999992, - 1.7352901999999992, - 1.7352901999999992, - 1.7433101999999991, - 1.7436801999999991, - 1.7382201999999993, - 1.7148201999999992, - 1.741570199999999, - 1.7514601999999995, - 1.7803001999999999, - 1.8766402, - 1.9644802, - 2.0602902, - 2.1075201999999997, - 2.1031502, - 2.1090401999999995, - 2.115070200000001, - 1.8331000000000004, - 1.9276899999999995, - 1.955349999999999, - 1.9188999999999998, - 1.9074899999999995, - 1.9288899999999993, - 2.050960099999999, - 2.0904300999999994, - 2.1642000999999986, - 2.140930099999999, - 2.223250099999999, - 2.2091801, - 2.348620200000001, - 2.30277, - 2.2802299999999995, - 2.38677, - 2.4452499999999997, - 2.5328400000000006, - 2.6509400000000003, - 2.7204200000000003, - 2.9220600000000014, - 3.0201705000000003, - 3.1512405999999995, - 3.3145306999999997, - 3.6305411000000003, - 3.8910615000000006, - 4.564954099999993, - 4.654385299999992, - 4.647865499999992, - 4.597285499999992, - 4.531864999999993, - 4.482874999999994, - 4.458445099999995, - 4.459365199999994, - 4.519115399999993, - 4.592225299999994, - 4.643975399999993, - 4.651495699999993, - 4.669116099999993, - 4.790677099999991, - 4.863408199999991, - 4.922428599999991, - 4.938988799999991, - 4.947108899999991, - 4.757947099999993, - 4.899878599999991, - 4.898958599999991, - 4.893378499999991, - 4.904168699999991, - 4.911568799999991, - 4.911568799999991, - 4.91871889999999, - 4.91871889999999, - 4.91871889999999, - 4.91871889999999, - 4.91753889999999, - 4.91753889999999, - 4.91753889999999, - 4.91753889999999, - 4.91753889999999, - 4.91753889999999, - 4.91753889999999, - 4.91753889999999, - 4.91753889999999, - 4.91753889999999, - 4.91753889999999, - 4.91753889999999, - 4.91753889999999, - 4.9188189999999885, - 4.9188189999999885, - 4.9188189999999885, - 4.9188189999999885, - 4.927149099999989, - 4.927149099999989, - 4.927149099999989, - 4.927149099999989, - 4.927149099999989, - 4.927149099999989, - 4.927149099999989, - 4.927149099999989, - 4.927149099999989, - 4.927149099999989 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 6209
prediction: 2.389
MedInc: 0.4999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.944
MedInc: 0.644902

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.617
MedInc: 0.7899039999999999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.617
MedInc: 0.934906

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.617
MedInc: 1.079908

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.617
MedInc: 1.22491

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.621
MedInc: 1.369912

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.627
MedInc: 1.5149139999999999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.641
MedInc: 1.659916

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.658
MedInc: 1.804918

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.667
MedInc: 1.9499199999999999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.704
MedInc: 2.094922

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.741
MedInc: 2.2399240000000002

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.769
MedInc: 2.384926

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.946
MedInc: 2.529928

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.965
MedInc: 2.67493

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.006
MedInc: 2.8199319999999997

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.022
MedInc: 2.9649339999999995

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.043
MedInc: 3.1099360000000003

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.921
MedInc: 3.254938

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.972
MedInc: 3.39994

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.982
MedInc: 3.544942

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.942
MedInc: 3.6899439999999997

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.917
MedInc: 3.8349459999999995

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.913
MedInc: 3.9799480000000003

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.951
MedInc: 4.12495

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.948
MedInc: 4.269952

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.949
MedInc: 4.414954

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.977
MedInc: 4.559956

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.074
MedInc: 4.704958

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.053
MedInc: 4.84996

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.105
MedInc: 4.994962

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.144
MedInc: 5.139964

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.167
MedInc: 5.284966

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.274
MedInc: 5.429968

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.22
MedInc: 5.5749699999999995

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.464
MedInc: 5.719972

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.548
MedInc: 5.864974

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.536
MedInc: 6.009976

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.699
MedInc: 6.154978

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.825
MedInc: 6.29998

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.879
MedInc: 6.4449819999999995

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.936
MedInc: 6.589984

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.147
MedInc: 6.734986

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.276
MedInc: 6.879988

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.459
MedInc: 7.02499

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.448
MedInc: 7.169992

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.451
MedInc: 7.3149939999999996

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.437
MedInc: 7.459996

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.514
MedInc: 7.604998

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.715
MedInc: 7.75

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.205
MedInc: 7.895002

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.209
MedInc: 8.040004

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.229
MedInc: 8.185006

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.313
MedInc: 8.330008

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.339
MedInc: 8.47501

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.304
MedInc: 8.620012

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.257
MedInc: 8.765013999999999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.22
MedInc: 8.910016

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.335
MedInc: 9.055018

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.406
MedInc: 9.20002

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.385
MedInc: 9.345022

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.399
MedInc: 9.490024

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.339
MedInc: 9.635026

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.599
MedInc: 9.780028

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.643
MedInc: 9.92503

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.652
MedInc: 10.070032

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.753
MedInc: 10.215034

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.761
MedInc: 10.360036

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.76
MedInc: 10.505037999999999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 10.650039999999999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 10.795042

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 10.940044

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 11.085046

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 11.230048

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 11.37505

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 11.520052

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 11.665054

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 11.810056

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 11.955058

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 12.10006

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 12.245061999999999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 12.390063999999999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 12.535065999999999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 12.680068

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 12.82507

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 12.970072

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 13.115074

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 13.260076

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 13.405078

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 13.55008

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 13.695082

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 13.840084

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 13.985085999999999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 14.130087999999999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 14.275089999999999

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 14.420092

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 14.565094

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 14.710096

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 14.855098

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 4.772
MedInc: 15.0001

HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
AveOccup: 2.9667896678966788
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.388832, - 1.9439406999999995, - 1.6171999999999997, - 1.6171999999999997, - 1.6171999999999997, - 1.6169099999999998, - 1.6211999999999998, - 1.6273799999999996, - 1.6406599999999998, - 1.6581699999999995, - 1.6671899999999993, - 1.70387, - 1.74125, - 1.7691099999999995, - 1.9463699999999995, - 1.9652899999999993, - 2.006230099999999, - 2.022100099999999, - 2.0430701, - 1.9212400000000003, - 1.97237, - 1.9816599999999998, - 1.9415599999999997, - 1.9165199999999993, - 1.912639999999999, - 1.9508999999999992, - 1.9482099999999993, - 1.9490299999999996, - 1.9773399999999999, - 2.0735399999999995, - 2.0531499999999996, - 2.1046100000000005, - 2.14394, - 2.16692, - 2.2739800000000003, - 2.22006, - 2.4645, - 2.547950000000001, - 2.536150000000001, - 2.6991401999999995, - 2.8251603000000007, - 2.8785305000000005, - 2.9362506000000006, - 3.1468208, - 3.2761207999999993, - 3.4590806000000005, - 3.4483906000000006, - 3.4509408000000006, - 3.437100900000001, - 3.5137910000000003, - 3.7152815000000006, - 4.2047032, - 4.209243499999997, - 4.229263299999999, - 4.312573399999997, - 4.338963599999996, - 4.304073499999997, - 4.2572531999999965, - 4.219813099999997, - 4.335294299999996, - 4.406094599999996, - 4.385184499999996, - 4.3986844999999954, - 4.339014199999996, - 4.598666399999993, - 4.643006599999992, - 4.651866599999992, - 4.753247699999991, - 4.760647799999991, - 4.759947699999992, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991, - 4.772407799999991 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 16912
prediction: 1.761
MedInc: 0.4999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.766
MedInc: 0.644902

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.766
MedInc: 0.7899039999999999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.766
MedInc: 0.934906

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.765
MedInc: 1.079908

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.779
MedInc: 1.22491

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.811
MedInc: 1.369912

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.798
MedInc: 1.5149139999999999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.809
MedInc: 1.659916

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.764
MedInc: 1.804918

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.776
MedInc: 1.9499199999999999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.768
MedInc: 2.094922

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.791
MedInc: 2.2399240000000002

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 1.911
MedInc: 2.384926

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.027
MedInc: 2.529928

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.097
MedInc: 2.67493

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.127
MedInc: 2.8199319999999997

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.088
MedInc: 2.9649339999999995

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.174
MedInc: 3.1099360000000003

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.391
MedInc: 3.254938

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.447
MedInc: 3.39994

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.456
MedInc: 3.544942

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.523
MedInc: 3.6899439999999997

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.604
MedInc: 3.8349459999999995

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.788
MedInc: 3.9799480000000003

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.868
MedInc: 4.12495

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.797
MedInc: 4.269952

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.773
MedInc: 4.414954

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.788
MedInc: 4.559956

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.849
MedInc: 4.704958

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.884
MedInc: 4.84996

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 2.845
MedInc: 4.994962

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 3.099
MedInc: 5.139964

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 3.125
MedInc: 5.284966

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 3.299
MedInc: 5.429968

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 3.314
MedInc: 5.5749699999999995

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 3.523
MedInc: 5.719972

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 3.795
MedInc: 5.864974

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 3.743
MedInc: 6.009976

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 3.926
MedInc: 6.154978

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.036
MedInc: 6.29998

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.056
MedInc: 6.4449819999999995

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.101
MedInc: 6.589984

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.257
MedInc: 6.734986

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.216
MedInc: 6.879988

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.609
MedInc: 7.02499

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.712
MedInc: 7.169992

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.709
MedInc: 7.3149939999999996

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.689
MedInc: 7.459996

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.649
MedInc: 7.604998

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.681
MedInc: 7.75

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.767
MedInc: 7.895002

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.762
MedInc: 8.040004

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.758
MedInc: 8.185006

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.768
MedInc: 8.330008

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.774
MedInc: 8.47501

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.803
MedInc: 8.620012

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.778
MedInc: 8.765013999999999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.782
MedInc: 8.910016

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.867
MedInc: 9.055018

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.908
MedInc: 9.20002

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.908
MedInc: 9.345022

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.908
MedInc: 9.490024

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.801
MedInc: 9.635026

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.964
MedInc: 9.780028

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.973
MedInc: 9.92503

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.971
MedInc: 10.070032

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.989
MedInc: 10.215034

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.989
MedInc: 10.360036

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.989
MedInc: 10.505037999999999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 10.650039999999999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 10.795042

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 10.940044

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 11.085046

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 11.230048

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 11.37505

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 11.520052

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 11.665054

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 11.810056

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 11.955058

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 12.10006

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 12.245061999999999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 12.390063999999999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 12.535065999999999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 12.680068

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 12.82507

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 12.970072

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 13.115074

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 13.260076

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 13.405078

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 13.55008

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 13.695082

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 13.840084

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 13.985085999999999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 14.130087999999999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 14.275089999999999

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 14.420092

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 14.565094

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 14.710096

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 14.855098

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
MedInc: 15.0001

HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
AveOccup: 2.9130434782608696
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.760539999999999, - 1.7661099999999994, - 1.7661099999999994, - 1.7661099999999994, - 1.7650899999999994, - 1.779099999999999, - 1.810589999999999, - 1.797639999999999, - 1.8086699999999991, - 1.764139999999999, - 1.776069999999999, - 1.7677199999999988, - 1.7909299999999988, - 1.9106099999999993, - 2.02749, - 2.0967299999999995, - 2.1273699999999987, - 2.087969999999999, - 2.1744600000000003, - 2.391420000000001, - 2.4474400000000007, - 2.456200000000001, - 2.5228501000000008, - 2.6042903000000006, - 2.7884007000000013, - 2.868220900000001, - 2.797150900000001, - 2.7725508000000008, - 2.7877509000000007, - 2.8493909000000017, - 2.883821000000002, - 2.8450207000000023, - 3.0989705000000005, - 3.1252802999999996, - 3.2994602, - 3.3137004000000005, - 3.5225005000000005, - 3.7946006999999997, - 3.743250699999999, - 3.925541099999998, - 4.036111499999998, - 4.055951999999998, - 4.101162199999997, - 4.256713099999999, - 4.216142899999999, - 4.608775099999994, - 4.711865699999993, - 4.7092951999999935, - 4.689135199999993, - 4.649294999999994, - 4.680985299999993, - 4.7669563999999935, - 4.762196399999993, - 4.758376499999994, - 4.767977199999993, - 4.774077199999992, - 4.802657499999992, - 4.777517499999992, - 4.782297499999992, - 4.866958499999991, - 4.9084189999999905, - 4.9084189999999905, - 4.9084189999999905, - 4.8010776999999925, - 4.96412959999999, - 4.973099699999989, - 4.97140959999999, - 4.989349799999989, - 4.989349799999989, - 4.989349799999989, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 12386
prediction: 1.382
MedInc: 0.4999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.162
MedInc: 0.644902

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.132
MedInc: 0.7899039999999999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.041
MedInc: 0.934906

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.027
MedInc: 1.079908

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.027
MedInc: 1.22491

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.045
MedInc: 1.369912

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.084
MedInc: 1.5149139999999999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.079
MedInc: 1.659916

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.079
MedInc: 1.804918

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.093
MedInc: 1.9499199999999999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.085
MedInc: 2.094922

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.164
MedInc: 2.2399240000000002

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.269
MedInc: 2.384926

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.484
MedInc: 2.529928

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.527
MedInc: 2.67493

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.714
MedInc: 2.8199319999999997

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.758
MedInc: 2.9649339999999995

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.895
MedInc: 3.1099360000000003

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.694
MedInc: 3.254938

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.872
MedInc: 3.39994

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.881
MedInc: 3.544942

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.855
MedInc: 3.6899439999999997

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 1.943
MedInc: 3.8349459999999995

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.037
MedInc: 3.9799480000000003

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.107
MedInc: 4.12495

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.182
MedInc: 4.269952

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.42
MedInc: 4.414954

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.394
MedInc: 4.559956

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.722
MedInc: 4.704958

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.779
MedInc: 4.84996

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.188
MedInc: 4.994962

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.991
MedInc: 5.139964

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.846
MedInc: 5.284966

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.033
MedInc: 5.429968

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.038
MedInc: 5.5749699999999995

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.254
MedInc: 5.719972

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.12
MedInc: 5.864974

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.006
MedInc: 6.009976

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.035
MedInc: 6.154978

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.128
MedInc: 6.29998

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.182
MedInc: 6.4449819999999995

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.277
MedInc: 6.589984

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.174
MedInc: 6.734986

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.93
MedInc: 6.879988

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.821
MedInc: 7.02499

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.836
MedInc: 7.169992

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.97
MedInc: 7.3149939999999996

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.146
MedInc: 7.459996

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.157
MedInc: 7.604998

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.355
MedInc: 7.75

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.768
MedInc: 7.895002

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.828
MedInc: 8.040004

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.863
MedInc: 8.185006

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.951
MedInc: 8.330008

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.08
MedInc: 8.47501

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.192
MedInc: 8.620012

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.198
MedInc: 8.765013999999999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.267
MedInc: 8.910016

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.251
MedInc: 9.055018

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.202
MedInc: 9.20002

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.193
MedInc: 9.345022

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.185
MedInc: 9.490024

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.149
MedInc: 9.635026

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.143
MedInc: 9.780028

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.14
MedInc: 9.92503

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.151
MedInc: 10.070032

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.174
MedInc: 10.215034

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.176
MedInc: 10.360036

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.211
MedInc: 10.505037999999999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.172
MedInc: 10.650039999999999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.378
MedInc: 10.795042

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.378
MedInc: 10.940044

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.378
MedInc: 11.085046

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.379
MedInc: 11.230048

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.381
MedInc: 11.37505

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.383
MedInc: 11.520052

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.394
MedInc: 11.665054

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 11.810056

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 11.955058

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 12.10006

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 12.245061999999999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 12.390063999999999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 12.535065999999999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 12.680068

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 12.82507

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 12.970072

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 13.115074

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 13.260076

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 13.405078

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 13.55008

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 13.695082

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 13.840084

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 13.985085999999999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 14.130087999999999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 14.275089999999999

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 14.420092

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 14.565094

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 14.710096

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 14.855098

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 4.389
MedInc: 15.0001

HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
AveOccup: 2.018467220683287
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.3820806, - 1.1623000999999997, - 1.1323999999999999, - 1.0408899999999999, - 1.02714, - 1.02714, - 1.04531, - 1.08365, - 1.0789900000000001, - 1.07942, - 1.09298, - 1.0845900000000002, - 1.1635599999999997, - 1.2686799999999996, - 1.4841399999999996, - 1.5265599999999995, - 1.71372, - 1.7577399999999996, - 1.8954499999999996, - 1.6940700000000004, - 1.8718800999999998, - 1.8810401999999997, - 1.8551100999999994, - 1.9434900999999993, - 2.037249999999999, - 2.1071899999999992, - 2.1819099999999993, - 2.4199300999999998, - 2.3939900999999995, - 2.721700199999999, - 2.779420199999999, - 3.188080699999998, - 2.9908214, - 2.846211299999999, - 3.033421699999999, - 3.0382016999999992, - 3.2541426999999974, - 3.1199817999999984, - 3.0062715999999985, - 3.034991699999998, - 3.1281116999999985, - 3.181531899999998, - 3.2771022999999975, - 3.1737519999999977, - 2.9297906999999994, - 2.820560500000001, - 2.8357105000000007, - 2.9695005999999995, - 3.145540599999998, - 3.1565503999999978, - 3.355000699999997, - 3.767910599999998, - 3.8281106999999968, - 3.8626506999999966, - 3.951240699999996, - 4.079940699999996, - 4.192370799999997, - 4.1976606999999975, - 4.267420900000001, - 4.250600800000002, - 4.202481100000003, - 4.193301100000003, - 4.184581100000003, - 4.148831000000002, - 4.1428410000000016, - 4.139831100000002, - 4.150521200000001, - 4.173791300000001, - 4.176261400000001, - 4.2110815000000015, - 4.171551100000001, - 4.377801500000001, - 4.377801500000001, - 4.378271300000002, - 4.379191500000002, - 4.380861600000001, - 4.382981700000001, - 4.393721800000002, - 4.3886318000000015, - 4.3886318000000015, - 4.3886318000000015, - 4.3886318000000015, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001, - 4.389091900000001 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 12164
prediction: 1.673
MedInc: 0.4999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.242
MedInc: 0.644902

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.227
MedInc: 0.7899039999999999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.199
MedInc: 0.934906

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.172
MedInc: 1.079908

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.182
MedInc: 1.22491

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.186
MedInc: 1.369912

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.123
MedInc: 1.5149139999999999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.096
MedInc: 1.659916

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.087
MedInc: 1.804918

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.075
MedInc: 1.9499199999999999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.076
MedInc: 2.094922

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.134
MedInc: 2.2399240000000002

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.167
MedInc: 2.384926

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.133
MedInc: 2.529928

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.173
MedInc: 2.67493

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.185
MedInc: 2.8199319999999997

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.212
MedInc: 2.9649339999999995

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.264
MedInc: 3.1099360000000003

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.41
MedInc: 3.254938

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.443
MedInc: 3.39994

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.451
MedInc: 3.544942

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.433
MedInc: 3.6899439999999997

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.467
MedInc: 3.8349459999999995

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.536
MedInc: 3.9799480000000003

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 2.003
MedInc: 4.12495

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.84
MedInc: 4.269952

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.846
MedInc: 4.414954

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.879
MedInc: 4.559956

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.912
MedInc: 4.704958

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.925
MedInc: 4.84996

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.963
MedInc: 4.994962

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 2.208
MedInc: 5.139964

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 2.288
MedInc: 5.284966

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 2.369
MedInc: 5.429968

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 2.389
MedInc: 5.5749699999999995

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 2.506
MedInc: 5.719972

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 2.812
MedInc: 5.864974

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 2.706
MedInc: 6.009976

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 2.759
MedInc: 6.154978

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 2.972
MedInc: 6.29998

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.055
MedInc: 6.4449819999999995

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.153
MedInc: 6.589984

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.091
MedInc: 6.734986

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.137
MedInc: 6.879988

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 2.988
MedInc: 7.02499

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 2.999
MedInc: 7.169992

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.039
MedInc: 7.3149939999999996

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.044
MedInc: 7.459996

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.068
MedInc: 7.604998

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.154
MedInc: 7.75

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.401
MedInc: 7.895002

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.491
MedInc: 8.040004

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.53
MedInc: 8.185006

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.628
MedInc: 8.330008

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.806
MedInc: 8.47501

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.84
MedInc: 8.620012

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.822
MedInc: 8.765013999999999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.782
MedInc: 8.910016

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 3.899
MedInc: 9.055018

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.098
MedInc: 9.20002

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.124
MedInc: 9.345022

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.118
MedInc: 9.490024

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.073
MedInc: 9.635026

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.072
MedInc: 9.780028

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.122
MedInc: 9.92503

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.142
MedInc: 10.070032

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.271
MedInc: 10.215034

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.279
MedInc: 10.360036

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.239
MedInc: 10.505037999999999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.198
MedInc: 10.650039999999999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.497
MedInc: 10.795042

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.497
MedInc: 10.940044

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.519
MedInc: 11.085046

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.528
MedInc: 11.230048

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.528
MedInc: 11.37505

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.534
MedInc: 11.520052

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 11.665054

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 11.810056

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 11.955058

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 12.10006

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 12.245061999999999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 12.390063999999999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 12.535065999999999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 12.680068

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 12.82507

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 12.970072

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 13.115074

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 13.260076

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 13.405078

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 13.55008

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 13.695082

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 13.840084

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 13.985085999999999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 14.130087999999999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 14.275089999999999

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 14.420092

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 14.565094

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 14.710096

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 14.855098

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 4.545
MedInc: 15.0001

HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
AveOccup: 2.6225352112676057
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.6732612000000002, - 1.2424101, - 1.2273000000000003, - 1.1990800000000001, - 1.1716300000000002, - 1.1819200000000003, - 1.18594, - 1.1226800000000003, - 1.0961699999999999, - 1.08668, - 1.0753000000000001, - 1.07614, - 1.1344400000000006, - 1.1667999999999998, - 1.1330899999999993, - 1.1727699999999992, - 1.1853599999999997, - 1.21182, - 1.2642799999999998, - 1.4101500000000002, - 1.4429999999999998, - 1.4505500000000005, - 1.4333099999999999, - 1.4670600000000003, - 1.53635, - 2.0027999999999997, - 1.83951, - 1.8455500000000002, - 1.8787500000000004, - 1.9121600000000003, - 1.9249, - 1.9627700000000001, - 2.2078801, - 2.288440000000001, - 2.3685801000000013, - 2.389260000000001, - 2.5058101, - 2.8115405000000004, - 2.7061002000000003, - 2.7593402000000014, - 2.9720502, - 3.055260199999999, - 3.1530704, - 3.091300499999999, - 3.137430499999999, - 2.9883702999999997, - 2.9992004000000003, - 3.0394702999999996, - 3.0439902, - 3.068470199999999, - 3.153700399999999, - 3.4012501999999993, - 3.490870199999999, - 3.5296401999999985, - 3.627780399999998, - 3.805690299999996, - 3.840220399999996, - 3.8217903999999963, - 3.7817405999999982, - 3.8989612999999967, - 4.098111399999997, - 4.123711399999997, - 4.117751399999997, - 4.073431199999998, - 4.072121499999997, - 4.1215518999999965, - 4.1423219999999965, - 4.270752599999995, - 4.278872799999996, - 4.238522599999997, - 4.198172399999997, - 4.4972736999999965, - 4.4972736999999965, - 4.5194936999999955, - 4.527604199999995, - 4.527604199999995, - 4.534264299999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995, - 4.545004399999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 6936
prediction: 2.309
MedInc: 0.4999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.684
MedInc: 0.644902

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.352
MedInc: 0.7899039999999999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.352
MedInc: 0.934906

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.352
MedInc: 1.079908

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.352
MedInc: 1.22491

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.369
MedInc: 1.369912

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.371
MedInc: 1.5149139999999999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.376
MedInc: 1.659916

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.379
MedInc: 1.804918

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.367
MedInc: 1.9499199999999999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.376
MedInc: 2.094922

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.483
MedInc: 2.2399240000000002

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.522
MedInc: 2.384926

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.631
MedInc: 2.529928

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.655
MedInc: 2.67493

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.641
MedInc: 2.8199319999999997

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.638
MedInc: 2.9649339999999995

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.741
MedInc: 3.1099360000000003

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.676
MedInc: 3.254938

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.688
MedInc: 3.39994

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.719
MedInc: 3.544942

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.746
MedInc: 3.6899439999999997

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.737
MedInc: 3.8349459999999995

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.766
MedInc: 3.9799480000000003

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.856
MedInc: 4.12495

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.8
MedInc: 4.269952

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.811
MedInc: 4.414954

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.773
MedInc: 4.559956

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.749
MedInc: 4.704958

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.759
MedInc: 4.84996

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.828
MedInc: 4.994962

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.917
MedInc: 5.139964

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.931
MedInc: 5.284966

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.9
MedInc: 5.429968

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.941
MedInc: 5.5749699999999995

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.227
MedInc: 5.719972

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.509
MedInc: 5.864974

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.523
MedInc: 6.009976

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.727
MedInc: 6.154978

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.813
MedInc: 6.29998

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.919
MedInc: 6.4449819999999995

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 3.053
MedInc: 6.589984

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 3.259
MedInc: 6.734986

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 3.501
MedInc: 6.879988

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.019
MedInc: 7.02499

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.037
MedInc: 7.169992

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.029
MedInc: 7.3149939999999996

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.042
MedInc: 7.459996

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 3.989
MedInc: 7.604998

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.126
MedInc: 7.75

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.117
MedInc: 7.895002

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.118
MedInc: 8.040004

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.149
MedInc: 8.185006

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.273
MedInc: 8.330008

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.278
MedInc: 8.47501

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.267
MedInc: 8.620012

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.312
MedInc: 8.765013999999999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.349
MedInc: 8.910016

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.559
MedInc: 9.055018

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.613
MedInc: 9.20002

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.606
MedInc: 9.345022

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.615
MedInc: 9.490024

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.508
MedInc: 9.635026

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.683
MedInc: 9.780028

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.683
MedInc: 9.92503

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.671
MedInc: 10.070032

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.687
MedInc: 10.215034

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.694
MedInc: 10.360036

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.694
MedInc: 10.505037999999999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 10.650039999999999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 10.795042

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 10.940044

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 11.085046

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 11.230048

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 11.37505

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 11.520052

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 11.665054

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 11.810056

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 11.955058

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 12.10006

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 12.245061999999999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 12.390063999999999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 12.535065999999999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 12.680068

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 12.82507

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.701
MedInc: 12.970072

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.703
MedInc: 13.115074

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.703
MedInc: 13.260076

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.703
MedInc: 13.405078

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.703
MedInc: 13.55008

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.711
MedInc: 13.695082

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.711
MedInc: 13.840084

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.711
MedInc: 13.985085999999999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.711
MedInc: 14.130087999999999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.711
MedInc: 14.275089999999999

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.711
MedInc: 14.420092

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.711
MedInc: 14.565094

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.711
MedInc: 14.710096

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.711
MedInc: 14.855098

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 4.711
MedInc: 15.0001

HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
AveOccup: 3.5044776119402985
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.3090122999999996, - 1.683880599999999, - 1.3519099999999997, - 1.3519099999999997, - 1.3519399999999997, - 1.3519399999999997, - 1.3689599999999995, - 1.3707199999999995, - 1.3760999999999997, - 1.3787499999999995, - 1.3672299999999993, - 1.3755099999999996, - 1.4834499999999997, - 1.5215799999999995, - 1.6312799999999987, - 1.6546699999999988, - 1.640869999999999, - 1.6381499999999987, - 1.741449999999999, - 1.6762599999999999, - 1.6884500000000002, - 1.7186699999999997, - 1.7464100000000002, - 1.73694, - 1.76621, - 1.8559599999999998, - 1.7995200000000011, - 1.8110200000000014, - 1.7734500000000009, - 1.74916, - 1.7593399999999997, - 1.8282101000000004, - 1.91749, - 1.9312999999999994, - 1.8998100000000004, - 1.9406800000000006, - 2.227370000000001, - 2.509270000000001, - 2.522770000000001, - 2.7270201000000016, - 2.8134504000000016, - 2.918790700000002, - 3.0526307000000004, - 3.258650999999999, - 3.5009306999999996, - 4.018511299999996, - 4.036601499999996, - 4.028911599999997, - 4.042031899999997, - 3.9893615999999965, - 4.125682199999996, - 4.116942799999999, - 4.118242799999998, - 4.1489927999999985, - 4.272933399999997, - 4.278493399999997, - 4.266703499999997, - 4.312283899999995, - 4.348664599999995, - 4.559266299999994, - 4.613456699999993, - 4.605796799999994, - 4.615316899999994, - 4.507525999999995, - 4.682537699999992, - 4.682537699999992, - 4.670777599999993, - 4.6868077999999915, - 4.694207899999992, - 4.694207899999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.701357999999992, - 4.702638099999992, - 4.702638099999992, - 4.702638099999992, - 4.702638099999992, - 4.710968199999992, - 4.710968199999992, - 4.710968199999992, - 4.710968199999992, - 4.710968199999992, - 4.710968199999992, - 4.710968199999992, - 4.710968199999992, - 4.710968199999992, - 4.710968199999992 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 11404
prediction: 2.535
MedInc: 0.4999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.124
MedInc: 0.644902

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.925
MedInc: 0.7899039999999999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.925
MedInc: 0.934906

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.925
MedInc: 1.079908

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.925
MedInc: 1.22491

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.924
MedInc: 1.369912

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.919
MedInc: 1.5149139999999999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.92
MedInc: 1.659916

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.847
MedInc: 1.804918

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.837
MedInc: 1.9499199999999999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.837
MedInc: 2.094922

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.865
MedInc: 2.2399240000000002

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.956
MedInc: 2.384926

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.884
MedInc: 2.529928

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.902
MedInc: 2.67493

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.894
MedInc: 2.8199319999999997

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 1.919
MedInc: 2.9649339999999995

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.311
MedInc: 3.1099360000000003

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.393
MedInc: 3.254938

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.439
MedInc: 3.39994

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.439
MedInc: 3.544942

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.427
MedInc: 3.6899439999999997

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.432
MedInc: 3.8349459999999995

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.431
MedInc: 3.9799480000000003

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.422
MedInc: 4.12495

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.484
MedInc: 4.269952

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.518
MedInc: 4.414954

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.463
MedInc: 4.559956

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.408
MedInc: 4.704958

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.44
MedInc: 4.84996

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.506
MedInc: 4.994962

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.676
MedInc: 5.139964

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.512
MedInc: 5.284966

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.627
MedInc: 5.429968

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.701
MedInc: 5.5749699999999995

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.659
MedInc: 5.719972

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.67
MedInc: 5.864974

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.683
MedInc: 6.009976

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.828
MedInc: 6.154978

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.913
MedInc: 6.29998

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.959
MedInc: 6.4449819999999995

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.118
MedInc: 6.589984

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.153
MedInc: 6.734986

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.371
MedInc: 6.879988

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.292
MedInc: 7.02499

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.375
MedInc: 7.169992

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.398
MedInc: 7.3149939999999996

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.401
MedInc: 7.459996

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.454
MedInc: 7.604998

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.56
MedInc: 7.75

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.609
MedInc: 7.895002

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.678
MedInc: 8.040004

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.643
MedInc: 8.185006

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.727
MedInc: 8.330008

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.828
MedInc: 8.47501

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.839
MedInc: 8.620012

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.822
MedInc: 8.765013999999999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.912
MedInc: 8.910016

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.065
MedInc: 9.055018

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.457
MedInc: 9.20002

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.474
MedInc: 9.345022

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.484
MedInc: 9.490024

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.469
MedInc: 9.635026

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.617
MedInc: 9.780028

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.687
MedInc: 9.92503

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.713
MedInc: 10.070032

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.816
MedInc: 10.215034

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.826
MedInc: 10.360036

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.651
MedInc: 10.505037999999999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.547
MedInc: 10.650039999999999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.878
MedInc: 10.795042

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.875
MedInc: 10.940044

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.901
MedInc: 11.085046

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.909
MedInc: 11.230048

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.909
MedInc: 11.37505

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.899
MedInc: 11.520052

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 11.665054

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 11.810056

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 11.955058

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 12.10006

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 12.245061999999999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 12.390063999999999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 12.535065999999999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 12.680068

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 12.82507

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 12.970072

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 13.115074

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 13.260076

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 13.405078

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 13.55008

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 13.695082

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 13.840084

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 13.985085999999999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 14.130087999999999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 14.275089999999999

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 14.420092

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 14.565094

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 14.710096

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 14.855098

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 4.91
MedInc: 15.0001

HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
AveOccup: 3.0522088353413657
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.5349519, - 2.1241606999999996, - 1.9249303999999996, - 1.9249303999999996, - 1.9249303999999996, - 1.9246403999999995, - 1.9242803999999996, - 1.9187003999999996, - 1.9204803999999995, - 1.8467002999999997, - 1.8372502999999996, - 1.8366801999999995, - 1.8652900999999995, - 1.9562101, - 1.8835000999999993, - 1.9023800999999994, - 1.8936600999999993, - 1.9188200999999996, - 2.3105100999999992, - 2.3931800000000005, - 2.43867, - 2.4390000000000005, - 2.4265799999999995, - 2.431719999999999, - 2.430919999999999, - 2.4218399999999987, - 2.4836899999999993, - 2.5179199999999993, - 2.46345, - 2.40818, - 2.4397700000000007, - 2.5061400000000007, - 2.676219999999999, - 2.5124099999999996, - 2.6270099999999985, - 2.7008699999999988, - 2.6585299999999994, - 2.6698999999999997, - 2.6826500000000006, - 2.8276499999999993, - 2.912730099999999, - 2.9585400999999996, - 3.118340300000001, - 3.1528000999999994, - 3.3706009, - 3.2923902000000016, - 3.375390200000002, - 3.3980402000000014, - 3.4007002000000006, - 3.454430400000001, - 3.5597608, - 3.6093810999999993, - 3.6783610999999983, - 3.642780999999998, - 3.7274912999999987, - 3.827870899999999, - 3.8394509000000006, - 3.8219109999999987, - 3.912231299999998, - 4.064552199999997, - 4.456693799999996, - 4.474443999999996, - 4.484074299999995, - 4.4691543999999945, - 4.616985599999994, - 4.686516199999993, - 4.712676699999992, - 4.815837199999992, - 4.825907299999992, - 4.651096499999994, - 4.546825399999994, - 4.877747799999991, - 4.875327699999991, - 4.900727599999993, - 4.909318099999991, - 4.909318099999991, - 4.899278099999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991, - 4.910018199999991 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 1922
prediction: 1.042
MedInc: 0.4999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.039
MedInc: 0.644902

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.034
MedInc: 0.7899039999999999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.034
MedInc: 0.934906

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.035
MedInc: 1.079908

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.035
MedInc: 1.22491

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.043
MedInc: 1.369912

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.041
MedInc: 1.5149139999999999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.053
MedInc: 1.659916

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.06
MedInc: 1.804918

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.11
MedInc: 1.9499199999999999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.174
MedInc: 2.094922

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.172
MedInc: 2.2399240000000002

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.222
MedInc: 2.384926

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.216
MedInc: 2.529928

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.226
MedInc: 2.67493

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.214
MedInc: 2.8199319999999997

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.213
MedInc: 2.9649339999999995

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.29
MedInc: 3.1099360000000003

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.316
MedInc: 3.254938

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.324
MedInc: 3.39994

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.341
MedInc: 3.544942

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.348
MedInc: 3.6899439999999997

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.384
MedInc: 3.8349459999999995

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.417
MedInc: 3.9799480000000003

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.53
MedInc: 4.12495

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.675
MedInc: 4.269952

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.647
MedInc: 4.414954

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.698
MedInc: 4.559956

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.691
MedInc: 4.704958

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.709
MedInc: 4.84996

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.764
MedInc: 4.994962

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 2.355
MedInc: 5.139964

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 2.537
MedInc: 5.284966

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 2.837
MedInc: 5.429968

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 2.865
MedInc: 5.5749699999999995

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 2.959
MedInc: 5.719972

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.105
MedInc: 5.864974

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 2.95
MedInc: 6.009976

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.046
MedInc: 6.154978

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.143
MedInc: 6.29998

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.19
MedInc: 6.4449819999999995

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.216
MedInc: 6.589984

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.34
MedInc: 6.734986

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.406
MedInc: 6.879988

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.389
MedInc: 7.02499

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.397
MedInc: 7.169992

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.472
MedInc: 7.3149939999999996

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.52
MedInc: 7.459996

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.502
MedInc: 7.604998

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.602
MedInc: 7.75

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.918
MedInc: 7.895002

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.89
MedInc: 8.040004

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.94
MedInc: 8.185006

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.911
MedInc: 8.330008

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.947
MedInc: 8.47501

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.907
MedInc: 8.620012

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.891
MedInc: 8.765013999999999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.859
MedInc: 8.910016

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.634
MedInc: 9.055018

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.271
MedInc: 9.20002

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.27
MedInc: 9.345022

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.271
MedInc: 9.490024

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.257
MedInc: 9.635026

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.255
MedInc: 9.780028

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.253
MedInc: 9.92503

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.295
MedInc: 10.070032

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.276
MedInc: 10.215034

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.29
MedInc: 10.360036

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.334
MedInc: 10.505037999999999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.268
MedInc: 10.650039999999999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.345
MedInc: 10.795042

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.343
MedInc: 10.940044

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.347
MedInc: 11.085046

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 11.230048

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 11.37505

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 11.520052

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 11.665054

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 11.810056

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 11.955058

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 12.10006

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 12.245061999999999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 12.390063999999999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 12.535065999999999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 12.680068

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 12.82507

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 12.970072

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 13.115074

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 13.260076

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 13.405078

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 13.55008

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 13.695082

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 13.840084

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.349
MedInc: 13.985085999999999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.352
MedInc: 14.130087999999999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.352
MedInc: 14.275089999999999

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.352
MedInc: 14.420092

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.352
MedInc: 14.565094

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.352
MedInc: 14.710096

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.352
MedInc: 14.855098

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 3.352
MedInc: 15.0001

HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
AveOccup: 2.5186567164179103
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.0417200000000004, - 1.0387200000000005, - 1.0338800000000006, - 1.0338800000000006, - 1.0351200000000005, - 1.0353100000000004, - 1.0426600000000001, - 1.0414000000000003, - 1.0526200000000008, - 1.0602300000000004, - 1.1101300000000007, - 1.1738400000000007, - 1.1722900000000005, - 1.2218700000000005, - 1.2157200000000001, - 1.2262599999999997, - 1.2142799999999996, - 1.2132499999999993, - 1.2903299999999995, - 1.3157899999999996, - 1.3238299999999998, - 1.3410199999999997, - 1.3479199999999998, - 1.3841899999999996, - 1.4165200000000002, - 1.5301099999999994, - 1.67488, - 1.64726, - 1.6982899999999999, - 1.6914599999999995, - 1.7094, - 1.7638400000000005, - 2.3546502000000014, - 2.536990000000002, - 2.836700200000002, - 2.864650200000001, - 2.9588405000000004, - 3.1049911, - 2.9499505000000013, - 3.0459505, - 3.1427206, - 3.1901303999999997, - 3.2155606999999997, - 3.3397808999999983, - 3.406451199999999, - 3.3894613999999983, - 3.396701499999998, - 3.472482099999998, - 3.519812099999998, - 3.502291699999998, - 3.6021615999999987, - 3.9180916999999993, - 3.8900014999999994, - 3.9398516999999997, - 3.9114218999999992, - 3.9471320999999993, - 3.9072822999999994, - 3.891212699999999, - 3.8592526000000005, - 3.6336021999999986, - 3.271251599999997, - 3.2702615999999964, - 3.2712415999999966, - 3.257001499999997, - 3.254511699999997, - 3.2526216999999975, - 3.294751999999997, - 3.275641699999997, - 3.2904418999999967, - 3.3339920999999975, - 3.2678818999999972, - 3.3453120999999975, - 3.3428919999999978, - 3.347491899999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.348892099999998, - 3.3521321999999976, - 3.3521321999999976, - 3.3521321999999976, - 3.3521321999999976, - 3.3521321999999976, - 3.3521321999999976, - 3.3521321999999976 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 6943
prediction: 2.371
MedInc: 0.4999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.71
MedInc: 0.644902

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.38
MedInc: 0.7899039999999999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.38
MedInc: 0.934906

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.38
MedInc: 1.079908

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.381
MedInc: 1.22491

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.389
MedInc: 1.369912

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.39
MedInc: 1.5149139999999999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.391
MedInc: 1.659916

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.395
MedInc: 1.804918

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.399
MedInc: 1.9499199999999999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.445
MedInc: 2.094922

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.536
MedInc: 2.2399240000000002

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.569
MedInc: 2.384926

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.606
MedInc: 2.529928

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.606
MedInc: 2.67493

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.592
MedInc: 2.8199319999999997

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.623
MedInc: 2.9649339999999995

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.635
MedInc: 3.1099360000000003

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.611
MedInc: 3.254938

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.608
MedInc: 3.39994

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.603
MedInc: 3.544942

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.581
MedInc: 3.6899439999999997

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.626
MedInc: 3.8349459999999995

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.641
MedInc: 3.9799480000000003

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.674
MedInc: 4.12495

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.711
MedInc: 4.269952

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.722
MedInc: 4.414954

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.743
MedInc: 4.559956

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.778
MedInc: 4.704958

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.809
MedInc: 4.84996

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.897
MedInc: 4.994962

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.993
MedInc: 5.139964

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.983
MedInc: 5.284966

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.99
MedInc: 5.429968

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.013
MedInc: 5.5749699999999995

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.316
MedInc: 5.719972

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.556
MedInc: 5.864974

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.528
MedInc: 6.009976

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.593
MedInc: 6.154978

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.602
MedInc: 6.29998

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.663
MedInc: 6.4449819999999995

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.778
MedInc: 6.589984

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.983
MedInc: 6.734986

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.226
MedInc: 6.879988

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.646
MedInc: 7.02499

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.677
MedInc: 7.169992

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.647
MedInc: 7.3149939999999996

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.647
MedInc: 7.459996

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.61
MedInc: 7.604998

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.857
MedInc: 7.75

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.047
MedInc: 7.895002

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.045
MedInc: 8.040004

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.053
MedInc: 8.185006

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.091
MedInc: 8.330008

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.126
MedInc: 8.47501

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.095
MedInc: 8.620012

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.113
MedInc: 8.765013999999999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.063
MedInc: 8.910016

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.181
MedInc: 9.055018

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.244
MedInc: 9.20002

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.242
MedInc: 9.345022

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.247
MedInc: 9.490024

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.165
MedInc: 9.635026

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.29
MedInc: 9.780028

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.266
MedInc: 9.92503

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.262
MedInc: 10.070032

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.293
MedInc: 10.215034

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.293
MedInc: 10.360036

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.293
MedInc: 10.505037999999999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.293
MedInc: 10.650039999999999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.293
MedInc: 10.795042

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.293
MedInc: 10.940044

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.293
MedInc: 11.085046

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.293
MedInc: 11.230048

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.299
MedInc: 11.37505

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.299
MedInc: 11.520052

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.299
MedInc: 11.665054

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.299
MedInc: 11.810056

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.299
MedInc: 11.955058

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.299
MedInc: 12.10006

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.299
MedInc: 12.245061999999999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.299
MedInc: 12.390063999999999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.299
MedInc: 12.535065999999999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.299
MedInc: 12.680068

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.299
MedInc: 12.82507

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.299
MedInc: 12.970072

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.3
MedInc: 13.115074

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.3
MedInc: 13.260076

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.3
MedInc: 13.405078

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.3
MedInc: 13.55008

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.309
MedInc: 13.695082

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.309
MedInc: 13.840084

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.309
MedInc: 13.985085999999999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.309
MedInc: 14.130087999999999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.309
MedInc: 14.275089999999999

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.309
MedInc: 14.420092

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.309
MedInc: 14.565094

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.309
MedInc: 14.710096

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.309
MedInc: 14.855098

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 4.309
MedInc: 15.0001

HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
AveOccup: 3.7850877192982457
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.3709724, - 1.7096905999999992, - 1.3803899999999998, - 1.3803899999999998, - 1.38042, - 1.38076, - 1.38939, - 1.39009, - 1.3912900000000001, - 1.39478, - 1.3991999999999996, - 1.4453199999999993, - 1.5363699999999991, - 1.5692799999999998, - 1.6063399999999999, - 1.60559, - 1.5915300000000001, - 1.6232599999999993, - 1.6348799999999997, - 1.610510000000001, - 1.608410000000001, - 1.602780000000001, - 1.5814300000000012, - 1.6259700000000006, - 1.6405400000000006, - 1.6741400000000002, - 1.7113500000000004, - 1.7215000000000003, - 1.74252, - 1.7785, - 1.808629999999999, - 1.8968701000000001, - 1.9934499999999997, - 1.9834399999999996, - 1.9897999999999996, - 2.01284, - 2.3155401000000007, - 2.5562701000000017, - 2.5284401000000014, - 2.593060100000001, - 2.6022201000000007, - 2.662890400000001, - 2.7782105000000006, - 2.983020599999999, - 3.2260808999999995, - 3.6459411999999993, - 3.6773112999999977, - 3.6472311999999985, - 3.6471113999999982, - 3.6102009999999978, - 3.856961499999997, - 4.0474020999999984, - 4.045202199999997, - 4.053252099999997, - 4.090952399999997, - 4.126172499999998, - 4.095162699999998, - 4.112602899999996, - 4.063233399999997, - 4.181254799999995, - 4.243585399999995, - 4.241565499999996, - 4.246515499999996, - 4.1650148999999965, - 4.289676199999995, - 4.265926199999996, - 4.261566199999995, - 4.293486599999993, - 4.293486599999993, - 4.293486599999993, - 4.293486599999993, - 4.293486599999993, - 4.293486599999993, - 4.293486599999993, - 4.293486599999993, - 4.299086599999994, - 4.299086599999994, - 4.299086599999994, - 4.299086599999994, - 4.299086599999994, - 4.299086599999994, - 4.299086599999994, - 4.299086599999994, - 4.299086599999994, - 4.299086599999994, - 4.299086599999994, - 4.299086599999994, - 4.300366699999994, - 4.300366699999994, - 4.300366699999994, - 4.300366699999994, - 4.308696799999994, - 4.308696799999994, - 4.308696799999994, - 4.308696799999994, - 4.308696799999994, - 4.308696799999994, - 4.308696799999994, - 4.308696799999994, - 4.308696799999994, - 4.308696799999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 13806
prediction: 0.848
MedInc: 0.4999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.668
MedInc: 0.644902

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.668
MedInc: 0.7899039999999999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.636
MedInc: 0.934906

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.646
MedInc: 1.079908

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.601
MedInc: 1.22491

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.605
MedInc: 1.369912

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.61
MedInc: 1.5149139999999999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.607
MedInc: 1.659916

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.609
MedInc: 1.804918

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.624
MedInc: 1.9499199999999999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.618
MedInc: 2.094922

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.623
MedInc: 2.2399240000000002

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.669
MedInc: 2.384926

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.761
MedInc: 2.529928

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.781
MedInc: 2.67493

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.835
MedInc: 2.8199319999999997

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.864
MedInc: 2.9649339999999995

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.885
MedInc: 3.1099360000000003

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.951
MedInc: 3.254938

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.965
MedInc: 3.39994

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.98
MedInc: 3.544942

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.001
MedInc: 3.6899439999999997

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.042
MedInc: 3.8349459999999995

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.983
MedInc: 3.9799480000000003

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.03
MedInc: 4.12495

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.125
MedInc: 4.269952

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.169
MedInc: 4.414954

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.222
MedInc: 4.559956

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.28
MedInc: 4.704958

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.309
MedInc: 4.84996

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.371
MedInc: 4.994962

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.979
MedInc: 5.139964

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 2.066
MedInc: 5.284966

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 2.214
MedInc: 5.429968

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 2.278
MedInc: 5.5749699999999995

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 2.421
MedInc: 5.719972

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 2.541
MedInc: 5.864974

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 2.529
MedInc: 6.009976

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 2.63
MedInc: 6.154978

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 2.758
MedInc: 6.29998

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 2.886
MedInc: 6.4449819999999995

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.056
MedInc: 6.589984

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.327
MedInc: 6.734986

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.634
MedInc: 6.879988

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.988
MedInc: 7.02499

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.966
MedInc: 7.169992

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.989
MedInc: 7.3149939999999996

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.995
MedInc: 7.459996

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.022
MedInc: 7.604998

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.13
MedInc: 7.75

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.23
MedInc: 7.895002

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.235
MedInc: 8.040004

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.229
MedInc: 8.185006

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.214
MedInc: 8.330008

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.159
MedInc: 8.47501

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.041
MedInc: 8.620012

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.007
MedInc: 8.765013999999999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.937
MedInc: 8.910016

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.943
MedInc: 9.055018

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.987
MedInc: 9.20002

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.949
MedInc: 9.345022

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.946
MedInc: 9.490024

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 3.836
MedInc: 9.635026

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.03
MedInc: 9.780028

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.002
MedInc: 9.92503

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.017
MedInc: 10.070032

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.044
MedInc: 10.215034

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.051
MedInc: 10.360036

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.051
MedInc: 10.505037999999999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.062
MedInc: 10.650039999999999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.062
MedInc: 10.795042

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.062
MedInc: 10.940044

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.062
MedInc: 11.085046

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.062
MedInc: 11.230048

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.068
MedInc: 11.37505

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.068
MedInc: 11.520052

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.068
MedInc: 11.665054

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.068
MedInc: 11.810056

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.068
MedInc: 11.955058

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.068
MedInc: 12.10006

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.068
MedInc: 12.245061999999999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.068
MedInc: 12.390063999999999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.068
MedInc: 12.535065999999999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.068
MedInc: 12.680068

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 12.82507

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 12.970072

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 13.115074

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 13.260076

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 13.405078

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 13.55008

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 13.695082

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 13.840084

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 13.985085999999999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 14.130087999999999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 14.275089999999999

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 14.420092

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 14.565094

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 14.710096

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 14.855098

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 4.066
MedInc: 15.0001

HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
AveOccup: 2.8536585365853657
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.8475904000000001, - 0.6675399999999998, - 0.6675399999999998, - 0.6364599999999997, - 0.6464999999999997, - 0.6012899999999998, - 0.6045699999999998, - 0.6101499999999997, - 0.6072699999999999, - 0.6092099999999998, - 0.6242399999999997, - 0.6178499999999996, - 0.6234699999999997, - 0.66896, - 0.7609400000000001, - 0.78097, - 0.83514, - 0.8642999999999997, - 0.8848199999999999, - 0.95075, - 0.9652499999999999, - 0.9801200000000001, - 1.0006700000000004, - 1.0419000000000007, - 0.9830500000000005, - 1.0304200000000003, - 1.1252100000000003, - 1.1692900000000002, - 1.2224800000000002, - 1.2797400000000003, - 1.3091000000000002, - 1.3714100000000005, - 1.9789400999999998, - 2.0656601999999995, - 2.2144802000000006, - 2.2776202000000008, - 2.420610400000001, - 2.5407504000000016, - 2.529380500000001, - 2.630080500000002, - 2.7582209000000013, - 2.8859313, - 3.0555912999999997, - 3.3266018999999982, - 3.633981799999998, - 3.9877625999999946, - 3.9660725999999955, - 3.9885626999999952, - 3.9947223999999952, - 4.022492299999997, - 4.130252899999996, - 4.229552599999998, - 4.235362799999997, - 4.228532699999997, - 4.2135925999999975, - 4.158762399999997, - 4.040961999999998, - 4.006811899999998, - 3.9372623999999985, - 3.9433633999999977, - 3.987373699999998, - 3.948973499999998, - 3.945803399999998, - 3.836002499999999, - 4.0298140999999985, - 4.002214099999999, - 4.017264199999999, - 4.044094499999997, - 4.051244599999998, - 4.051244599999998, - 4.062114699999998, - 4.062114699999998, - 4.062114699999998, - 4.062114699999998, - 4.062114699999998, - 4.067714699999997, - 4.067714699999997, - 4.067714699999997, - 4.067714699999997, - 4.067714699999997, - 4.067714699999997, - 4.067714699999997, - 4.067714699999997, - 4.067714699999997, - 4.067714699999997, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998, - 4.066414599999998 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 9592
prediction: 0.997
MedInc: 0.4999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 0.995
MedInc: 0.644902

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 0.976
MedInc: 0.7899039999999999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 0.966
MedInc: 0.934906

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 0.958
MedInc: 1.079908

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 0.958
MedInc: 1.22491

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 0.962
MedInc: 1.369912

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 0.962
MedInc: 1.5149139999999999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 0.954
MedInc: 1.659916

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 0.968
MedInc: 1.804918

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 0.992
MedInc: 1.9499199999999999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 0.993
MedInc: 2.094922

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.028
MedInc: 2.2399240000000002

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.159
MedInc: 2.384926

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.183
MedInc: 2.529928

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.18
MedInc: 2.67493

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.171
MedInc: 2.8199319999999997

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.152
MedInc: 2.9649339999999995

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.233
MedInc: 3.1099360000000003

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.092
MedInc: 3.254938

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.135
MedInc: 3.39994

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.12
MedInc: 3.544942

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.212
MedInc: 3.6899439999999997

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.29
MedInc: 3.8349459999999995

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.315
MedInc: 3.9799480000000003

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.441
MedInc: 4.12495

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.54
MedInc: 4.269952

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.569
MedInc: 4.414954

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.628
MedInc: 4.559956

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.632
MedInc: 4.704958

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.647
MedInc: 4.84996

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.939
MedInc: 4.994962

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.606
MedInc: 5.139964

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.443
MedInc: 5.284966

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.426
MedInc: 5.429968

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.373
MedInc: 5.5749699999999995

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.47
MedInc: 5.719972

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.535
MedInc: 5.864974

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.595
MedInc: 6.009976

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.552
MedInc: 6.154978

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.54
MedInc: 6.29998

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.614
MedInc: 6.4449819999999995

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.874
MedInc: 6.589984

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.906
MedInc: 6.734986

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.368
MedInc: 6.879988

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.257
MedInc: 7.02499

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.271
MedInc: 7.169992

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.249
MedInc: 7.3149939999999996

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.254
MedInc: 7.459996

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.265
MedInc: 7.604998

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.42
MedInc: 7.75

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.699
MedInc: 7.895002

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.621
MedInc: 8.040004

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.571
MedInc: 8.185006

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.484
MedInc: 8.330008

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.693
MedInc: 8.47501

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.703
MedInc: 8.620012

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.712
MedInc: 8.765013999999999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.696
MedInc: 8.910016

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 3.969
MedInc: 9.055018

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.354
MedInc: 9.20002

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.386
MedInc: 9.345022

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.399
MedInc: 9.490024

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.406
MedInc: 9.635026

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.496
MedInc: 9.780028

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.526
MedInc: 9.92503

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.536
MedInc: 10.070032

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.495
MedInc: 10.215034

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.502
MedInc: 10.360036

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.408
MedInc: 10.505037999999999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.318
MedInc: 10.650039999999999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.616
MedInc: 10.795042

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.614
MedInc: 10.940044

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.62
MedInc: 11.085046

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.626
MedInc: 11.230048

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.626
MedInc: 11.37505

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.627
MedInc: 11.520052

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.641
MedInc: 11.665054

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.641
MedInc: 11.810056

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.641
MedInc: 11.955058

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.641
MedInc: 12.10006

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.641
MedInc: 12.245061999999999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.641
MedInc: 12.390063999999999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.641
MedInc: 12.535065999999999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.641
MedInc: 12.680068

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 12.82507

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 12.970072

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 13.115074

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 13.260076

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 13.405078

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 13.55008

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 13.695082

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 13.840084

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 13.985085999999999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 14.130087999999999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 14.275089999999999

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 14.420092

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 14.565094

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 14.710096

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 14.855098

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 4.649
MedInc: 15.0001

HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
AveOccup: 3.3698347107438016
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.9974099999999995, - 0.9947399999999995, - 0.9757199999999995, - 0.9658399999999994, - 0.9583699999999993, - 0.9582499999999993, - 0.9618299999999994, - 0.9618299999999994, - 0.9535199999999994, - 0.9679099999999993, - 0.9919799999999994, - 0.9925399999999993, - 1.0275399999999997, - 1.1587599999999996, - 1.18251, - 1.1803500000000002, - 1.1708600000000002, - 1.1517400000000002, - 1.2332799999999995, - 1.0918699999999997, - 1.1351699999999993, - 1.1196599999999994, - 1.2115299999999996, - 1.2902999999999991, - 1.3146699999999987, - 1.4406599999999998, - 1.5398500000000002, - 1.56899, - 1.6284801000000004, - 1.632020000000001, - 1.6465700000000003, - 1.9392800000000003, - 2.6064299999999996, - 2.44298, - 2.4255600000000004, - 2.37252, - 2.46998, - 2.5350099999999975, - 2.5947899999999975, - 2.5521499999999997, - 2.5404400000000003, - 2.613909999999999, - 2.873549999999999, - 2.906469999999999, - 3.3677202999999993, - 3.256859999999999, - 3.271269999999999, - 3.2489500000000002, - 3.25383, - 3.2649500000000007, - 3.4204201, - 3.698701099999999, - 3.6208906999999995, - 3.5711907, - 3.4840905999999996, - 3.6931809999999983, - 3.702631099999999, - 3.711811499999998, - 3.695632099999998, - 3.968773399999996, - 4.354424799999997, - 4.385795099999996, - 4.398895299999995, - 4.405565299999995, - 4.495825999999995, - 4.525786199999995, - 4.535965999999996, - 4.494505199999995, - 4.501915299999996, - 4.408094999999996, - 4.318474699999997, - 4.615996099999995, - 4.613575999999995, - 4.619925899999995, - 4.625696199999995, - 4.625696199999995, - 4.626566199999995, - 4.641416499999994, - 4.641416499999994, - 4.641416499999994, - 4.641416499999994, - 4.641416499999994, - 4.641416499999994, - 4.641416499999994, - 4.641416499999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994, - 4.648806599999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 6539
prediction: 2.359
MedInc: 0.4999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.696
MedInc: 0.644902

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.366
MedInc: 0.7899039999999999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.366
MedInc: 0.934906

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.366
MedInc: 1.079908

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.366
MedInc: 1.22491

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.376
MedInc: 1.369912

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.387
MedInc: 1.5149139999999999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.386
MedInc: 1.659916

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.398
MedInc: 1.804918

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.388
MedInc: 1.9499199999999999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.403
MedInc: 2.094922

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.5
MedInc: 2.2399240000000002

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.465
MedInc: 2.384926

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.563
MedInc: 2.529928

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.553
MedInc: 2.67493

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.543
MedInc: 2.8199319999999997

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.566
MedInc: 2.9649339999999995

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.645
MedInc: 3.1099360000000003

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.545
MedInc: 3.254938

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.556
MedInc: 3.39994

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.573
MedInc: 3.544942

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.565
MedInc: 3.6899439999999997

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.595
MedInc: 3.8349459999999995

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.589
MedInc: 3.9799480000000003

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.614
MedInc: 4.12495

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.613
MedInc: 4.269952

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.616
MedInc: 4.414954

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.662
MedInc: 4.559956

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.68
MedInc: 4.704958

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.735
MedInc: 4.84996

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.863
MedInc: 4.994962

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.972
MedInc: 5.139964

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.974
MedInc: 5.284966

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.985
MedInc: 5.429968

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.036
MedInc: 5.5749699999999995

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.186
MedInc: 5.719972

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.454
MedInc: 5.864974

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.476
MedInc: 6.009976

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.693
MedInc: 6.154978

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.729
MedInc: 6.29998

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.857
MedInc: 6.4449819999999995

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.985
MedInc: 6.589984

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 3.174
MedInc: 6.734986

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 3.38
MedInc: 6.879988

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 3.888
MedInc: 7.02499

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 3.887
MedInc: 7.169992

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 3.872
MedInc: 7.3149939999999996

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 3.868
MedInc: 7.459996

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 3.829
MedInc: 7.604998

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.047
MedInc: 7.75

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.106
MedInc: 7.895002

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.108
MedInc: 8.040004

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.165
MedInc: 8.185006

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.28
MedInc: 8.330008

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.32
MedInc: 8.47501

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.33
MedInc: 8.620012

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.352
MedInc: 8.765013999999999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.382
MedInc: 8.910016

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.542
MedInc: 9.055018

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.588
MedInc: 9.20002

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.574
MedInc: 9.345022

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.584
MedInc: 9.490024

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.478
MedInc: 9.635026

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.642
MedInc: 9.780028

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.642
MedInc: 9.92503

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.63
MedInc: 10.070032

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.656
MedInc: 10.215034

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.685
MedInc: 10.360036

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.692
MedInc: 10.505037999999999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 10.650039999999999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 10.795042

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 10.940044

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 11.085046

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 11.230048

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 11.37505

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 11.520052

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 11.665054

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 11.810056

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 11.955058

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 12.10006

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 12.245061999999999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 12.390063999999999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 12.535065999999999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 12.680068

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 12.82507

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.699
MedInc: 12.970072

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.701
MedInc: 13.115074

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.701
MedInc: 13.260076

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.701
MedInc: 13.405078

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.701
MedInc: 13.55008

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.709
MedInc: 13.695082

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.709
MedInc: 13.840084

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.709
MedInc: 13.985085999999999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.709
MedInc: 14.130087999999999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.709
MedInc: 14.275089999999999

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.709
MedInc: 14.420092

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.709
MedInc: 14.565094

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.709
MedInc: 14.710096

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.709
MedInc: 14.855098

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 4.709
MedInc: 15.0001

HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
AveOccup: 4.438953488372093
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.358782499999999, - 1.696110699999999, - 1.3659399999999997, - 1.3659399999999997, - 1.3655, - 1.3655, - 1.3755999999999995, - 1.3871999999999993, - 1.3859799999999995, - 1.3984399999999997, - 1.3884599999999998, - 1.4031299999999995, - 1.500329999999999, - 1.465289999999999, - 1.5626999999999984, - 1.5529199999999983, - 1.542739999999998, - 1.565559999999998, - 1.6452699999999991, - 1.5451400000000002, - 1.5562, - 1.5726799999999996, - 1.56457, - 1.5948099999999998, - 1.5885000000000005, - 1.6142400000000001, - 1.6130699999999996, - 1.6162899999999993, - 1.6623699999999995, - 1.6802999999999995, - 1.7346599999999994, - 1.8629701000000003, - 1.9715299999999996, - 1.9737399999999996, - 1.9848899999999998, - 2.0356799999999997, - 2.1859100000000002, - 2.4540301000000007, - 2.4755601, - 2.6927902000000006, - 2.7292304, - 2.8572708000000007, - 2.9847208, - 3.1741810000000004, - 3.3804507, - 3.887701399999996, - 3.8872316999999956, - 3.8717118999999958, - 3.8683121999999956, - 3.8289019999999976, - 4.047442199999997, - 4.105642799999997, - 4.107862899999998, - 4.164943099999998, - 4.280443499999998, - 4.319543699999997, - 4.329903999999996, - 4.351684099999996, - 4.382374899999995, - 4.542086499999993, - 4.587866799999993, - 4.574116799999993, - 4.583636899999993, - 4.477695999999995, - 4.641897499999993, - 4.641897499999993, - 4.630137399999993, - 4.656027799999992, - 4.685177899999993, - 4.692327999999993, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.699478099999992, - 4.700758199999992, - 4.700758199999992, - 4.700758199999992, - 4.700758199999992, - 4.7090882999999915, - 4.7090882999999915, - 4.7090882999999915, - 4.7090882999999915, - 4.7090882999999915, - 4.7090882999999915, - 4.7090882999999915, - 4.7090882999999915, - 4.7090882999999915, - 4.7090882999999915 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 13228
prediction: 2.11
MedInc: 0.4999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.697
MedInc: 0.644902

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.387
MedInc: 0.7899039999999999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.387
MedInc: 0.934906

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.387
MedInc: 1.079908

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.386
MedInc: 1.22491

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.393
MedInc: 1.369912

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.387
MedInc: 1.5149139999999999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.392
MedInc: 1.659916

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.376
MedInc: 1.804918

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.36
MedInc: 1.9499199999999999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.368
MedInc: 2.094922

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.433
MedInc: 2.2399240000000002

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.501
MedInc: 2.384926

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.617
MedInc: 2.529928

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.587
MedInc: 2.67493

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.61
MedInc: 2.8199319999999997

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.639
MedInc: 2.9649339999999995

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.703
MedInc: 3.1099360000000003

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.848
MedInc: 3.254938

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.834
MedInc: 3.39994

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.897
MedInc: 3.544942

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.893
MedInc: 3.6899439999999997

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.858
MedInc: 3.8349459999999995

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.966
MedInc: 3.9799480000000003

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.091
MedInc: 4.12495

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.142
MedInc: 4.269952

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.141
MedInc: 4.414954

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.285
MedInc: 4.559956

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.327
MedInc: 4.704958

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.361
MedInc: 4.84996

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.408
MedInc: 4.994962

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.608
MedInc: 5.139964

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.521
MedInc: 5.284966

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.611
MedInc: 5.429968

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.665
MedInc: 5.5749699999999995

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.598
MedInc: 5.719972

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.539
MedInc: 5.864974

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.571
MedInc: 6.009976

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.885
MedInc: 6.154978

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.092
MedInc: 6.29998

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.343
MedInc: 6.4449819999999995

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.542
MedInc: 6.589984

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.574
MedInc: 6.734986

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.558
MedInc: 6.879988

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.451
MedInc: 7.02499

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.384
MedInc: 7.169992

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.44
MedInc: 7.3149939999999996

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.363
MedInc: 7.459996

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.342
MedInc: 7.604998

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.381
MedInc: 7.75

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.486
MedInc: 7.895002

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.535
MedInc: 8.040004

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.566
MedInc: 8.185006

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.693
MedInc: 8.330008

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.671
MedInc: 8.47501

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.615
MedInc: 8.620012

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.616
MedInc: 8.765013999999999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.671
MedInc: 8.910016

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.099
MedInc: 9.055018

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.251
MedInc: 9.20002

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.242
MedInc: 9.345022

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.266
MedInc: 9.490024

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.21
MedInc: 9.635026

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.452
MedInc: 9.780028

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.471
MedInc: 9.92503

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.496
MedInc: 10.070032

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.576
MedInc: 10.215034

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.573
MedInc: 10.360036

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.581
MedInc: 10.505037999999999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 10.650039999999999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 10.795042

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 10.940044

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 11.085046

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 11.230048

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 11.37505

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 11.520052

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 11.665054

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 11.810056

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 11.955058

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 12.10006

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 12.245061999999999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 12.390063999999999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 12.535065999999999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.59
MedInc: 12.680068

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 12.82507

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 12.970072

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 13.115074

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 13.260076

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 13.405078

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 13.55008

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 13.695082

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 13.840084

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 13.985085999999999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 14.130087999999999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 14.275089999999999

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 14.420092

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 14.565094

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 14.710096

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 14.855098

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 4.589
MedInc: 15.0001

HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
AveOccup: 2.3823529411764706
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.1103618999999996, - 1.697190699999999, - 1.3870800999999997, - 1.3870800999999997, - 1.3870800999999997, - 1.3862600999999999, - 1.3927900999999998, - 1.3869800999999997, - 1.3919700999999998, - 1.3760400999999995, - 1.3603900999999996, - 1.3680601, - 1.4325400999999998, - 1.5005500999999992, - 1.6169499999999994, - 1.5869999999999993, - 1.6101399999999995, - 1.6389099999999996, - 1.7034899999999995, - 1.8480099999999993, - 1.8338599999999996, - 1.897029999999999, - 1.8928599999999995, - 1.8584599999999996, - 1.9656800000000003, - 2.090709999999999, - 2.1416099999999982, - 2.141019999999999, - 2.2851801999999983, - 2.3270102999999986, - 2.3609101999999984, - 2.408080199999999, - 2.6075503999999983, - 2.5211004999999984, - 2.611480499999999, - 2.6648404999999995, - 2.5979905000000003, - 2.5390402000000005, - 2.5709602, - 2.8851708, - 3.091600900000001, - 3.342711000000001, - 3.5417212, - 3.573681499999999, - 3.5580718999999976, - 3.450581599999999, - 3.384471599999999, - 3.440371499999999, - 3.3625415000000003, - 3.3417312999999997, - 3.3805810999999992, - 3.486001399999999, - 3.535071499999999, - 3.5655214999999973, - 3.6934018999999974, - 3.6705516999999985, - 3.614771499999999, - 3.616041399999998, - 3.6709016, - 4.098703699999998, - 4.251404199999997, - 4.242453999999998, - 4.266383999999998, - 4.209903199999999, - 4.451994999999997, - 4.471414999999996, - 4.496145099999995, - 4.575875799999995, - 4.573195899999995, - 4.581415899999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.589855999999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994, - 4.588555899999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 1791
prediction: 0.71
MedInc: 0.4999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.71
MedInc: 0.644902

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.71
MedInc: 0.7899039999999999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.715
MedInc: 0.934906

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.714
MedInc: 1.079908

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.717
MedInc: 1.22491

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.677
MedInc: 1.369912

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.68
MedInc: 1.5149139999999999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.68
MedInc: 1.659916

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.727
MedInc: 1.804918

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.79
MedInc: 1.9499199999999999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.859
MedInc: 2.094922

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.067
MedInc: 2.2399240000000002

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.311
MedInc: 2.384926

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.384
MedInc: 2.529928

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.477
MedInc: 2.67493

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.531
MedInc: 2.8199319999999997

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.599
MedInc: 2.9649339999999995

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.971
MedInc: 3.1099360000000003

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 2.444
MedInc: 3.254938

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 2.489
MedInc: 3.39994

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 2.513
MedInc: 3.544942

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 2.517
MedInc: 3.6899439999999997

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 2.515
MedInc: 3.8349459999999995

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 2.485
MedInc: 3.9799480000000003

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 2.765
MedInc: 4.12495

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 2.984
MedInc: 4.269952

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.061
MedInc: 4.414954

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.09
MedInc: 4.559956

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.157
MedInc: 4.704958

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.158
MedInc: 4.84996

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.092
MedInc: 4.994962

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.092
MedInc: 5.139964

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.171
MedInc: 5.284966

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.231
MedInc: 5.429968

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.273
MedInc: 5.5749699999999995

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.319
MedInc: 5.719972

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.327
MedInc: 5.864974

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.34
MedInc: 6.009976

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.638
MedInc: 6.154978

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.723
MedInc: 6.29998

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.785
MedInc: 6.4449819999999995

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.79
MedInc: 6.589984

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.811
MedInc: 6.734986

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.683
MedInc: 6.879988

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.627
MedInc: 7.02499

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.651
MedInc: 7.169992

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.615
MedInc: 7.3149939999999996

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.6
MedInc: 7.459996

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.763
MedInc: 7.604998

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 3.861
MedInc: 7.75

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.241
MedInc: 7.895002

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.29
MedInc: 8.040004

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.324
MedInc: 8.185006

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.311
MedInc: 8.330008

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.393
MedInc: 8.47501

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.433
MedInc: 8.620012

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.449
MedInc: 8.765013999999999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.352
MedInc: 8.910016

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.314
MedInc: 9.055018

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.289
MedInc: 9.20002

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.268
MedInc: 9.345022

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.274
MedInc: 9.490024

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.21
MedInc: 9.635026

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.283
MedInc: 9.780028

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.277
MedInc: 9.92503

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.277
MedInc: 10.070032

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.327
MedInc: 10.215034

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.327
MedInc: 10.360036

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.327
MedInc: 10.505037999999999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.327
MedInc: 10.650039999999999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.327
MedInc: 10.795042

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.327
MedInc: 10.940044

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.327
MedInc: 11.085046

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.327
MedInc: 11.230048

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 11.37505

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 11.520052

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 11.665054

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 11.810056

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 11.955058

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 12.10006

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 12.245061999999999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 12.390063999999999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 12.535065999999999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 12.680068

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 12.82507

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 12.970072

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 13.115074

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 13.260076

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 13.405078

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 13.55008

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 13.695082

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 13.840084

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 13.985085999999999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 14.130087999999999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 14.275089999999999

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 14.420092

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 14.565094

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 14.710096

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 14.855098

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 4.35
MedInc: 15.0001

HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
AveOccup: 2.4005340453938584
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.7104299999999999, - 0.7104299999999999, - 0.7104299999999999, - 0.7145600000000001, - 0.7140000000000001, - 0.7169000000000001, - 0.6771499999999997, - 0.6799399999999998, - 0.6799799999999995, - 0.7268399999999997, - 0.7897299999999997, - 0.8594700000000002, - 1.0668999999999995, - 1.31109, - 1.3837500000000005, - 1.4772801000000002, - 1.5309001, - 1.5994801000000007, - 1.9711103999999993, - 2.4436002999999986, - 2.4891800999999987, - 2.513170199999999, - 2.5172101999999987, - 2.5153301999999984, - 2.4848101999999983, - 2.765480300000001, - 2.9840404000000014, - 3.0614105000000014, - 3.0901206000000006, - 3.156700600000001, - 3.1584506000000006, - 3.091740500000002, - 3.0923703000000016, - 3.170750200000002, - 3.2305201000000006, - 3.2731600000000003, - 3.3185700000000007, - 3.3268400000000016, - 3.3396301000000013, - 3.6377717, - 3.7226515999999994, - 3.784591499999999, - 3.7900512999999996, - 3.8107011, - 3.6833107000000007, - 3.6269304000000018, - 3.6514005000000016, - 3.6148406000000004, - 3.600440700000001, - 3.762630700000001, - 3.8613608999999993, - 4.241491699999997, - 4.2900218999999975, - 4.323762099999997, - 4.310502599999996, - 4.393043899999996, - 4.433144399999994, - 4.448554599999994, - 4.351585199999995, - 4.314155599999995, - 4.289195399999995, - 4.2682752999999956, - 4.273925299999995, - 4.2100547999999955, - 4.283405899999995, - 4.276505899999995, - 4.276505899999995, - 4.327316499999994, - 4.327316499999994, - 4.327316499999994, - 4.327316499999994, - 4.327316499999994, - 4.327316499999994, - 4.327316499999994, - 4.327316499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994, - 4.349716499999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 18842
prediction: 0.651
MedInc: 0.4999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.65
MedInc: 0.644902

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.65
MedInc: 0.7899039999999999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.648
MedInc: 0.934906

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.642
MedInc: 1.079908

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.663
MedInc: 1.22491

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.666
MedInc: 1.369912

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.662
MedInc: 1.5149139999999999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.669
MedInc: 1.659916

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.643
MedInc: 1.804918

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.678
MedInc: 1.9499199999999999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.693
MedInc: 2.094922

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.709
MedInc: 2.2399240000000002

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.791
MedInc: 2.384926

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.848
MedInc: 2.529928

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.848
MedInc: 2.67493

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.922
MedInc: 2.8199319999999997

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.982
MedInc: 2.9649339999999995

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.011
MedInc: 3.1099360000000003

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.028
MedInc: 3.254938

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.027
MedInc: 3.39994

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.026
MedInc: 3.544942

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.065
MedInc: 3.6899439999999997

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.133
MedInc: 3.8349459999999995

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.25
MedInc: 3.9799480000000003

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.673
MedInc: 4.12495

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.866
MedInc: 4.269952

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.928
MedInc: 4.414954

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.991
MedInc: 4.559956

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 2.016
MedInc: 4.704958

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 2.055
MedInc: 4.84996

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 2.159
MedInc: 4.994962

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 2.703
MedInc: 5.139964

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 2.83
MedInc: 5.284966

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 2.897
MedInc: 5.429968

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 2.919
MedInc: 5.5749699999999995

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 2.981
MedInc: 5.719972

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.098
MedInc: 5.864974

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.106
MedInc: 6.009976

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.195
MedInc: 6.154978

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.301
MedInc: 6.29998

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.358
MedInc: 6.4449819999999995

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.469
MedInc: 6.589984

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.526
MedInc: 6.734986

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.732
MedInc: 6.879988

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.671
MedInc: 7.02499

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.654
MedInc: 7.169992

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.716
MedInc: 7.3149939999999996

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.713
MedInc: 7.459996

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.712
MedInc: 7.604998

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.861
MedInc: 7.75

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 4.003
MedInc: 7.895002

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 4.02
MedInc: 8.040004

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 4.0
MedInc: 8.185006

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 4.038
MedInc: 8.330008

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.97
MedInc: 8.47501

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.896
MedInc: 8.620012

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.862
MedInc: 8.765013999999999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.816
MedInc: 8.910016

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.59
MedInc: 9.055018

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.316
MedInc: 9.20002

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.312
MedInc: 9.345022

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.33
MedInc: 9.490024

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.329
MedInc: 9.635026

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.335
MedInc: 9.780028

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.33
MedInc: 9.92503

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.319
MedInc: 10.070032

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.338
MedInc: 10.215034

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.353
MedInc: 10.360036

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.382
MedInc: 10.505037999999999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.314
MedInc: 10.650039999999999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.369
MedInc: 10.795042

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.369
MedInc: 10.940044

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.378
MedInc: 11.085046

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.379
MedInc: 11.230048

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.379
MedInc: 11.37505

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.379
MedInc: 11.520052

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.389
MedInc: 11.665054

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.389
MedInc: 11.810056

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 11.955058

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 12.10006

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 12.245061999999999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 12.390063999999999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 12.535065999999999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 12.680068

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 12.82507

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 12.970072

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 13.115074

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 13.260076

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 13.405078

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 13.55008

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 13.695082

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 13.840084

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 13.985085999999999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 14.130087999999999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 14.275089999999999

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 14.420092

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 14.565094

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 14.710096

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 14.855098

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 3.4
MedInc: 15.0001

HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
AveOccup: 2.727272727272727
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.6507599999999999, - 0.6497699999999998, - 0.6497699999999998, - 0.6476099999999999, - 0.6420899999999999, - 0.66323, - 0.6659899999999999, - 0.66204, - 0.6689099999999999, - 0.64311, - 0.6777799999999998, - 0.6932899999999994, - 0.7085199999999995, - 0.7912300000000004, - 0.8475200000000007, - 0.8479800000000011, - 0.9215000000000011, - 0.9818700000000004, - 1.0114799999999995, - 1.0282599999999993, - 1.0269199999999994, - 1.0260399999999996, - 1.0650699999999993, - 1.1326899999999993, - 1.2502799999999992, - 1.6727099999999995, - 1.8657599999999994, - 1.9277499999999999, - 1.9908499999999991, - 2.0155499999999997, - 2.0547299999999997, - 2.159379999999999, - 2.7029602999999995, - 2.8295402999999997, - 2.897080299999999, - 2.9193602999999992, - 2.9811503, - 3.0976705000000004, - 3.1056704, - 3.1952203999999993, - 3.300880499999999, - 3.357650599999999, - 3.4689807999999993, - 3.5257008999999986, - 3.731681199999997, - 3.6712510999999983, - 3.654491199999998, - 3.7156712999999986, - 3.7127810999999986, - 3.712410999999999, - 3.8608515999999993, - 4.003151600000001, - 4.019771500000001, - 3.9996616, - 4.037571699999999, - 3.9700018999999984, - 3.896402099999999, - 3.862152599999998, - 3.8163226, - 3.589722099999999, - 3.3155412999999982, - 3.312061299999998, - 3.329781399999998, - 3.3287715999999983, - 3.3347219999999975, - 3.3303919999999976, - 3.3187318999999986, - 3.338101699999998, - 3.352901899999998, - 3.3818319999999984, - 3.3144917999999985, - 3.3692718999999984, - 3.3692718999999984, - 3.3779218999999983, - 3.3786219999999987, - 3.3786219999999987, - 3.3786219999999987, - 3.3893620999999983, - 3.3893620999999983, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987, - 3.4001021999999987 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 4644
prediction: 2.618
MedInc: 0.4999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.464
MedInc: 0.644902

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.426
MedInc: 0.7899039999999999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.394
MedInc: 0.934906

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.372
MedInc: 1.079908

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.432
MedInc: 1.22491

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.437
MedInc: 1.369912

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.448
MedInc: 1.5149139999999999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.513
MedInc: 1.659916

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.573
MedInc: 1.804918

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.659
MedInc: 1.9499199999999999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.71
MedInc: 2.094922

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.175
MedInc: 2.2399240000000002

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.265
MedInc: 2.384926

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.445
MedInc: 2.529928

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.554
MedInc: 2.67493

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.091
MedInc: 2.8199319999999997

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.072
MedInc: 2.9649339999999995

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.171
MedInc: 3.1099360000000003

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.275
MedInc: 3.254938

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.326
MedInc: 3.39994

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.331
MedInc: 3.544942

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.361
MedInc: 3.6899439999999997

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.363
MedInc: 3.8349459999999995

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.443
MedInc: 3.9799480000000003

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.371
MedInc: 4.12495

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.153
MedInc: 4.269952

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.189
MedInc: 4.414954

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.194
MedInc: 4.559956

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.232
MedInc: 4.704958

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.213
MedInc: 4.84996

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.282
MedInc: 4.994962

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.54
MedInc: 5.139964

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.651
MedInc: 5.284966

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.764
MedInc: 5.429968

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.814
MedInc: 5.5749699999999995

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.954
MedInc: 5.719972

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.323
MedInc: 5.864974

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.324
MedInc: 6.009976

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.383
MedInc: 6.154978

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.482
MedInc: 6.29998

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.527
MedInc: 6.4449819999999995

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.77
MedInc: 6.589984

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.712
MedInc: 6.734986

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.934
MedInc: 6.879988

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.855
MedInc: 7.02499

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.828
MedInc: 7.169992

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.93
MedInc: 7.3149939999999996

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.013
MedInc: 7.459996

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.022
MedInc: 7.604998

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.142
MedInc: 7.75

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.408
MedInc: 7.895002

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.445
MedInc: 8.040004

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.417
MedInc: 8.185006

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.418
MedInc: 8.330008

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.365
MedInc: 8.47501

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.272
MedInc: 8.620012

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.236
MedInc: 8.765013999999999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.213
MedInc: 8.910016

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.211
MedInc: 9.055018

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.258
MedInc: 9.20002

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.252
MedInc: 9.345022

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.258
MedInc: 9.490024

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.203
MedInc: 9.635026

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.329
MedInc: 9.780028

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.29
MedInc: 9.92503

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.293
MedInc: 10.070032

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.302
MedInc: 10.215034

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.302
MedInc: 10.360036

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.302
MedInc: 10.505037999999999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.302
MedInc: 10.650039999999999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.302
MedInc: 10.795042

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.302
MedInc: 10.940044

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.302
MedInc: 11.085046

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.302
MedInc: 11.230048

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 11.37505

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 11.520052

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 11.665054

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 11.810056

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 11.955058

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 12.10006

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 12.245061999999999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 12.390063999999999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 12.535065999999999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 12.680068

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 12.82507

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 12.970072

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 13.115074

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 13.260076

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 13.405078

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 13.55008

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 13.695082

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 13.840084

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 13.985085999999999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 14.130087999999999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 14.275089999999999

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 14.420092

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 14.565094

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 14.710096

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 14.855098

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 4.307
MedInc: 15.0001

HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
AveOccup: 2.976525821596244
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.6177716, - 2.464481100000001, - 2.426211000000001, - 2.3943010000000005, - 2.3717310000000005, - 2.4323310000000005, - 2.4374810000000005, - 2.4475110000000004, - 2.5134712, - 2.5734712000000006, - 2.6592214999999997, - 2.7096514999999988, - 3.1754429999999987, - 3.2646433999999975, - 3.444923899999998, - 3.5544548999999965, - 4.090606699999992, - 4.072046599999994, - 3.170843099999999, - 2.2752199999999996, - 2.3263300000000005, - 2.3309201000000006, - 2.3614501000000003, - 2.36253, - 2.4428899999999993, - 2.37125, - 2.1532099000000002, - 2.1891999, - 2.1940498999999996, - 2.232089899999999, - 2.2131499, - 2.2815899000000006, - 2.5396902999999984, - 2.651060299999999, - 2.7643604999999987, - 2.8140802999999983, - 2.9539602999999994, - 3.3231911999999992, - 3.3237612999999997, - 3.3829114, - 3.4820713000000016, - 3.527491600000001, - 3.7700915000000013, - 3.712090700000001, - 3.933921299999999, - 3.8547912999999996, - 3.8279511999999998, - 3.930281599999999, - 4.013271699999999, - 4.021611699999999, - 4.141762999999998, - 4.408144399999998, - 4.444754399999997, - 4.417224499999998, - 4.417624999999997, - 4.364795199999996, - 4.272404799999997, - 4.236184999999995, - 4.213024899999997, - 4.210555399999996, - 4.257675599999995, - 4.252045699999996, - 4.257695699999996, - 4.202745199999996, - 4.329146799999994, - 4.290396699999994, - 4.293186799999994, - 4.3015968999999945, - 4.3015968999999945, - 4.3015968999999945, - 4.3015968999999945, - 4.3015968999999945, - 4.3015968999999945, - 4.3015968999999945, - 4.3015968999999945, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995, - 4.307196899999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 11358
prediction: 2.01
MedInc: 0.4999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.755
MedInc: 0.644902

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.718
MedInc: 0.7899039999999999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.718
MedInc: 0.934906

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.718
MedInc: 1.079908

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.718
MedInc: 1.22491

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.716
MedInc: 1.369912

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.707
MedInc: 1.5149139999999999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.723
MedInc: 1.659916

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.718
MedInc: 1.804918

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.73
MedInc: 1.9499199999999999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.756
MedInc: 2.094922

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.834
MedInc: 2.2399240000000002

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.814
MedInc: 2.384926

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.799
MedInc: 2.529928

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.804
MedInc: 2.67493

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.795
MedInc: 2.8199319999999997

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.777
MedInc: 2.9649339999999995

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.829
MedInc: 3.1099360000000003

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.854
MedInc: 3.254938

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.878
MedInc: 3.39994

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.844
MedInc: 3.544942

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.852
MedInc: 3.6899439999999997

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.861
MedInc: 3.8349459999999995

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.942
MedInc: 3.9799480000000003

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.952
MedInc: 4.12495

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.955
MedInc: 4.269952

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.97
MedInc: 4.414954

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.979
MedInc: 4.559956

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.957
MedInc: 4.704958

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.025
MedInc: 4.84996

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.116
MedInc: 4.994962

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.489
MedInc: 5.139964

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.607
MedInc: 5.284966

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.666
MedInc: 5.429968

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.651
MedInc: 5.5749699999999995

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.825
MedInc: 5.719972

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.059
MedInc: 5.864974

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.015
MedInc: 6.009976

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.003
MedInc: 6.154978

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.024
MedInc: 6.29998

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.118
MedInc: 6.4449819999999995

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.266
MedInc: 6.589984

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.245
MedInc: 6.734986

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.433
MedInc: 6.879988

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.393
MedInc: 7.02499

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.39
MedInc: 7.169992

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.41
MedInc: 7.3149939999999996

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.394
MedInc: 7.459996

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.457
MedInc: 7.604998

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.728
MedInc: 7.75

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.954
MedInc: 7.895002

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.968
MedInc: 8.040004

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.97
MedInc: 8.185006

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.033
MedInc: 8.330008

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.994
MedInc: 8.47501

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.979
MedInc: 8.620012

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.943
MedInc: 8.765013999999999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.963
MedInc: 8.910016

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 3.986
MedInc: 9.055018

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.144
MedInc: 9.20002

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.173
MedInc: 9.345022

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.179
MedInc: 9.490024

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.16
MedInc: 9.635026

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.2
MedInc: 9.780028

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.192
MedInc: 9.92503

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.209
MedInc: 10.070032

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.251
MedInc: 10.215034

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.26
MedInc: 10.360036

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.192
MedInc: 10.505037999999999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.11
MedInc: 10.650039999999999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.336
MedInc: 10.795042

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.336
MedInc: 10.940044

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.341
MedInc: 11.085046

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.35
MedInc: 11.230048

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.356
MedInc: 11.37505

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.357
MedInc: 11.520052

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 11.665054

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 11.810056

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 11.955058

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 12.10006

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 12.245061999999999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 12.390063999999999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 12.535065999999999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 12.680068

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 12.82507

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 12.970072

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 13.115074

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 13.260076

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 13.405078

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 13.55008

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 13.695082

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 13.840084

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 13.985085999999999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 14.130087999999999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 14.275089999999999

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 14.420092

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 14.565094

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 14.710096

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 14.855098

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 4.367
MedInc: 15.0001

HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
AveOccup: 3.052299368800721
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.010141, - 1.7550701999999996, - 1.7184100999999998, - 1.7184100999999998, - 1.7184100999999998, - 1.7184100999999998, - 1.7164101, - 1.7073301, - 1.7228701000000002, - 1.7179101000000006, - 1.7298001000000007, - 1.7562800000000007, - 1.8341599999999993, - 1.813539999999999, - 1.7990999999999997, - 1.8041599999999998, - 1.7950699999999993, - 1.777179999999999, - 1.8291500000000005, - 1.8541600000000011, - 1.8783500000000015, - 1.8441400000000012, - 1.852060000000001, - 1.8613100000000011, - 1.941810000000001, - 1.9522400000000002, - 1.9545899999999998, - 1.9699299999999997, - 1.9790400000000004, - 1.9570400000000006, - 2.0249400000000013, - 2.1156900000000007, - 2.4890301000000004, - 2.6072401000000003, - 2.666160100000001, - 2.6513001000000016, - 2.8247305000000007, - 3.0592114999999995, - 3.0149712999999996, - 3.002801099999998, - 3.0236010999999996, - 3.1182809999999987, - 3.266461299999998, - 3.2447905999999977, - 3.433050699999999, - 3.3933807, - 3.3900506999999993, - 3.4096307, - 3.3938606, - 3.4573906999999995, - 3.7280615999999993, - 3.9535919999999978, - 3.9683918999999985, - 3.9696719999999974, - 4.032761899999998, - 3.993641799999997, - 3.9786021999999974, - 3.9434219999999978, - 3.9628122999999973, - 3.986252899999996, - 4.144443699999996, - 4.1728038999999955, - 4.178604099999996, - 4.160424099999996, - 4.200234499999996, - 4.191774499999997, - 4.209184699999995, - 4.251424699999995, - 4.260254899999995, - 4.192474599999996, - 4.109663399999997, - 4.336375699999995, - 4.336375699999995, - 4.340975299999996, - 4.350245999999995, - 4.355845999999995, - 4.356715999999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995, - 4.367456099999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 968
prediction: 1.742
MedInc: 0.4999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.751
MedInc: 0.644902

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.754
MedInc: 0.7899039999999999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.754
MedInc: 0.934906

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.754
MedInc: 1.079908

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.755
MedInc: 1.22491

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.755
MedInc: 1.369912

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.744
MedInc: 1.5149139999999999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.745
MedInc: 1.659916

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.731
MedInc: 1.804918

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.727
MedInc: 1.9499199999999999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.728
MedInc: 2.094922

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.722
MedInc: 2.2399240000000002

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.79
MedInc: 2.384926

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.849
MedInc: 2.529928

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 1.947
MedInc: 2.67493

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.004
MedInc: 2.8199319999999997

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.013
MedInc: 2.9649339999999995

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.04
MedInc: 3.1099360000000003

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.11
MedInc: 3.254938

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.137
MedInc: 3.39994

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.139
MedInc: 3.544942

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.163
MedInc: 3.6899439999999997

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.226
MedInc: 3.8349459999999995

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.311
MedInc: 3.9799480000000003

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.581
MedInc: 4.12495

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.607
MedInc: 4.269952

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.585
MedInc: 4.414954

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.537
MedInc: 4.559956

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.502
MedInc: 4.704958

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.464
MedInc: 4.84996

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.427
MedInc: 4.994962

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.276
MedInc: 5.139964

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.137
MedInc: 5.284966

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.242
MedInc: 5.429968

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.335
MedInc: 5.5749699999999995

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.44
MedInc: 5.719972

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.604
MedInc: 5.864974

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.619
MedInc: 6.009976

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.81
MedInc: 6.154978

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.967
MedInc: 6.29998

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.011
MedInc: 6.4449819999999995

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.08
MedInc: 6.589984

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.081
MedInc: 6.734986

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.313
MedInc: 6.879988

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.267
MedInc: 7.02499

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.277
MedInc: 7.169992

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.321
MedInc: 7.3149939999999996

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.266
MedInc: 7.459996

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.308
MedInc: 7.604998

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.753
MedInc: 7.75

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.956
MedInc: 7.895002

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.96
MedInc: 8.040004

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.935
MedInc: 8.185006

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.07
MedInc: 8.330008

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.245
MedInc: 8.47501

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.322
MedInc: 8.620012

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.346
MedInc: 8.765013999999999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.432
MedInc: 8.910016

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.718
MedInc: 9.055018

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.865
MedInc: 9.20002

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.875
MedInc: 9.345022

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.875
MedInc: 9.490024

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.799
MedInc: 9.635026

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.942
MedInc: 9.780028

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.939
MedInc: 9.92503

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.963
MedInc: 10.070032

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.981
MedInc: 10.215034

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.972
MedInc: 10.360036

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.981
MedInc: 10.505037999999999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 10.650039999999999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 10.795042

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 10.940044

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 11.085046

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 11.230048

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 11.37505

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 11.520052

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 11.665054

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 11.810056

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 11.955058

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 12.10006

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 12.245061999999999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 12.390063999999999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 12.535065999999999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 12.680068

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 12.82507

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 12.970072

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 13.115074

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 13.260076

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 13.405078

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 13.55008

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 13.695082

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 13.840084

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 13.985085999999999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 14.130087999999999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 14.275089999999999

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 14.420092

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 14.565094

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 14.710096

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 14.855098

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 4.986
MedInc: 15.0001

HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
AveOccup: 2.8919753086419755
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.742029999999999, - 1.7507799999999991, - 1.7535899999999993, - 1.7535899999999993, - 1.7535899999999993, - 1.7545699999999993, - 1.7545699999999993, - 1.7440199999999992, - 1.7445799999999991, - 1.7313899999999993, - 1.727159999999999, - 1.7278899999999988, - 1.7222599999999988, - 1.7900699999999992, - 1.8493200000000005, - 1.94748, - 2.0037800000000003, - 2.0132600000000007, - 2.04014, - 2.1101600000000005, - 2.1365800000000004, - 2.1391700000000005, - 2.1634600000000006, - 2.225630200000001, - 2.3111704000000004, - 2.5808911, - 2.6067712, - 2.5850612000000006, - 2.537291, - 2.5019609, - 2.4643708999999996, - 2.427440699999999, - 2.276010099999999, - 2.1365699999999994, - 2.242129999999999, - 2.335219999999999, - 2.4402599999999994, - 2.604119999999999, - 2.618989999999999, - 2.8096299999999985, - 2.9674299999999967, - 3.010519999999996, - 3.080009999999999, - 3.081070099999999, - 3.313040099999997, - 3.2669399999999973, - 3.2773999999999974, - 3.3212099999999993, - 3.26627, - 3.3081801, - 3.7528001000000017, - 3.956011000000002, - 3.960241000000001, - 3.934651000000001, - 4.0696623999999995, - 4.244753199999999, - 4.3222035, - 4.345633799999999, - 4.431554999999997, - 4.718277299999993, - 4.86547849999999, - 4.87459839999999, - 4.87459839999999, - 4.799007299999992, - 4.9423489999999894, - 4.93874889999999, - 4.962908999999991, - 4.981029499999989, - 4.97210939999999, - 4.981029499999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989, - 4.985599599999989 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 63
prediction: 0.849
MedInc: 0.4999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.848
MedInc: 0.644902

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.844
MedInc: 0.7899039999999999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.837
MedInc: 0.934906

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.831
MedInc: 1.079908

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.82
MedInc: 1.22491

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.828
MedInc: 1.369912

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.836
MedInc: 1.5149139999999999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.872
MedInc: 1.659916

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.87
MedInc: 1.804918

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.929
MedInc: 1.9499199999999999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.93
MedInc: 2.094922

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.956
MedInc: 2.2399240000000002

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.091
MedInc: 2.384926

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.964
MedInc: 2.529928

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.152
MedInc: 2.67493

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.278
MedInc: 2.8199319999999997

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.5
MedInc: 2.9649339999999995

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.485
MedInc: 3.1099360000000003

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.827
MedInc: 3.254938

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.816
MedInc: 3.39994

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.804
MedInc: 3.544942

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.832
MedInc: 3.6899439999999997

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.895
MedInc: 3.8349459999999995

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 2.005
MedInc: 3.9799480000000003

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 2.387
MedInc: 4.12495

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 2.51
MedInc: 4.269952

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 2.533
MedInc: 4.414954

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 2.598
MedInc: 4.559956

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 2.66
MedInc: 4.704958

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 2.678
MedInc: 4.84996

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 2.716
MedInc: 4.994962

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 2.995
MedInc: 5.139964

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 2.987
MedInc: 5.284966

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 3.003
MedInc: 5.429968

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 3.044
MedInc: 5.5749699999999995

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 3.284
MedInc: 5.719972

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 3.664
MedInc: 5.864974

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 3.613
MedInc: 6.009976

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 3.522
MedInc: 6.154978

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 3.522
MedInc: 6.29998

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 3.538
MedInc: 6.4449819999999995

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 3.444
MedInc: 6.589984

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 3.361
MedInc: 6.734986

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 3.651
MedInc: 6.879988

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.023
MedInc: 7.02499

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.097
MedInc: 7.169992

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.042
MedInc: 7.3149939999999996

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 3.992
MedInc: 7.459996

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.085
MedInc: 7.604998

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.102
MedInc: 7.75

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.188
MedInc: 7.895002

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.168
MedInc: 8.040004

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.174
MedInc: 8.185006

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.272
MedInc: 8.330008

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.391
MedInc: 8.47501

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.367
MedInc: 8.620012

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.4
MedInc: 8.765013999999999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.457
MedInc: 8.910016

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.684
MedInc: 9.055018

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.758
MedInc: 9.20002

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.773
MedInc: 9.345022

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.754
MedInc: 9.490024

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.662
MedInc: 9.635026

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.799
MedInc: 9.780028

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.787
MedInc: 9.92503

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.769
MedInc: 10.070032

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.885
MedInc: 10.215034

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.885
MedInc: 10.360036

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.885
MedInc: 10.505037999999999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.892
MedInc: 10.650039999999999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.892
MedInc: 10.795042

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 10.940044

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 11.085046

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 11.230048

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 11.37505

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 11.520052

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 11.665054

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 11.810056

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 11.955058

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 12.10006

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 12.245061999999999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 12.390063999999999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 12.535065999999999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 12.680068

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 12.82507

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.912
MedInc: 12.970072

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 13.115074

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 13.260076

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 13.405078

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 13.55008

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 13.695082

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 13.840084

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 13.985085999999999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 14.130087999999999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 14.275089999999999

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 14.420092

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 14.565094

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 14.710096

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 14.855098

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 4.913
MedInc: 15.0001

HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
AveOccup: 3.2767295597484276
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.8490600000000001, - 0.8477700000000001, - 0.8439000000000001, - 0.8372800000000001, - 0.83079, - 0.8199500000000002, - 0.8278000000000002, - 0.8359499999999999, - 0.8716999999999996, - 0.86954, - 0.9288999999999994, - 0.9304499999999996, - 0.9560899999999996, - 1.0908599999999995, - 0.9643800000000005, - 1.1515201, - 1.2776301, - 1.4998203, - 1.4846100000000013, - 1.8266901000000004, - 1.8157401000000004, - 1.8035301000000004, - 1.8316401000000007, - 1.8953101000000003, - 2.0046501, - 2.386700099999999, - 2.5104802, - 2.5326102, - 2.5981003000000005, - 2.660270300000001, - 2.677940300000001, - 2.716200300000001, - 2.994590599999999, - 2.9865603, - 3.003340299999999, - 3.0441302999999995, - 3.2836209, - 3.664260700000001, - 3.612740600000001, - 3.522171, - 3.522031099999999, - 3.5380510999999997, - 3.4444611999999983, - 3.3608708999999983, - 3.6505811999999995, - 4.023281999999999, - 4.0973728, - 4.0423626, - 3.9922724000000005, - 4.0847324, - 4.101732899999999, - 4.1882936, - 4.1683434, - 4.173703100000001, - 4.2716238, - 4.3909546, - 4.367434499999999, - 4.400464899999999, - 4.456934799999998, - 4.684336699999994, - 4.757587299999994, - 4.773037499999994, - 4.754277299999994, - 4.662026399999995, - 4.799167799999993, - 4.787027699999993, - 4.769237599999995, - 4.884828699999991, - 4.884828699999991, - 4.884828699999991, - 4.892218799999991, - 4.892218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.912218799999991, - 4.913498899999991, - 4.913498899999991, - 4.913498899999991, - 4.913498899999991, - 4.913498899999991, - 4.913498899999991, - 4.913498899999991, - 4.913498899999991, - 4.913498899999991, - 4.913498899999991, - 4.913498899999991, - 4.913498899999991, - 4.913498899999991, - 4.913498899999991 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 12028
prediction: 1.869
MedInc: 0.4999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.4
MedInc: 0.644902

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.12
MedInc: 0.7899039999999999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.12
MedInc: 0.934906

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.117
MedInc: 1.079908

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.117
MedInc: 1.22491

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.118
MedInc: 1.369912

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.104
MedInc: 1.5149139999999999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.109
MedInc: 1.659916

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.093
MedInc: 1.804918

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.092
MedInc: 1.9499199999999999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.127
MedInc: 2.094922

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.163
MedInc: 2.2399240000000002

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.148
MedInc: 2.384926

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.132
MedInc: 2.529928

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.171
MedInc: 2.67493

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.166
MedInc: 2.8199319999999997

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.178
MedInc: 2.9649339999999995

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.238
MedInc: 3.1099360000000003

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.262
MedInc: 3.254938

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.277
MedInc: 3.39994

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.28
MedInc: 3.544942

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.286
MedInc: 3.6899439999999997

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.281
MedInc: 3.8349459999999995

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.274
MedInc: 3.9799480000000003

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.293
MedInc: 4.12495

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.357
MedInc: 4.269952

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.362
MedInc: 4.414954

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.402
MedInc: 4.559956

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.423
MedInc: 4.704958

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.446
MedInc: 4.84996

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.514
MedInc: 4.994962

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.747
MedInc: 5.139964

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.788
MedInc: 5.284966

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.859
MedInc: 5.429968

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.895
MedInc: 5.5749699999999995

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 2.096
MedInc: 5.719972

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 2.368
MedInc: 5.864974

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 2.394
MedInc: 6.009976

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 2.593
MedInc: 6.154978

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 2.654
MedInc: 6.29998

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 2.737
MedInc: 6.4449819999999995

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 2.867
MedInc: 6.589984

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.017
MedInc: 6.734986

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.116
MedInc: 6.879988

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.234
MedInc: 7.02499

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.204
MedInc: 7.169992

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.236
MedInc: 7.3149939999999996

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.24
MedInc: 7.459996

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.282
MedInc: 7.604998

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.358
MedInc: 7.75

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.605
MedInc: 7.895002

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.618
MedInc: 8.040004

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.685
MedInc: 8.185006

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.86
MedInc: 8.330008

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.939
MedInc: 8.47501

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.921
MedInc: 8.620012

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.884
MedInc: 8.765013999999999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.056
MedInc: 8.910016

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.355
MedInc: 9.055018

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.429
MedInc: 9.20002

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.423
MedInc: 9.345022

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.424
MedInc: 9.490024

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.369
MedInc: 9.635026

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.513
MedInc: 9.780028

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.564
MedInc: 9.92503

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.571
MedInc: 10.070032

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.625
MedInc: 10.215034

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.632
MedInc: 10.360036

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.637
MedInc: 10.505037999999999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.656
MedInc: 10.650039999999999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.656
MedInc: 10.795042

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.656
MedInc: 10.940044

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.656
MedInc: 11.085046

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 11.230048

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 11.37505

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 11.520052

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 11.665054

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 11.810056

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 11.955058

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 12.10006

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 12.245061999999999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 12.390063999999999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 12.535065999999999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 12.680068

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 12.82507

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.654
MedInc: 12.970072

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.655
MedInc: 13.115074

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.655
MedInc: 13.260076

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.655
MedInc: 13.405078

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.655
MedInc: 13.55008

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.663
MedInc: 13.695082

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.663
MedInc: 13.840084

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.663
MedInc: 13.985085999999999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.663
MedInc: 14.130087999999999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.663
MedInc: 14.275089999999999

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.663
MedInc: 14.420092

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.663
MedInc: 14.565094

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.663
MedInc: 14.710096

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.663
MedInc: 14.855098

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.663
MedInc: 15.0001

HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
AveOccup: 3.605995717344754
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.8685218000000006, - 1.4000706000000003, - 1.1196700000000002, - 1.1196700000000002, - 1.1171300000000002, - 1.1171300000000002, - 1.1183100000000001, - 1.10386, - 1.1086399999999998, - 1.0931199999999999, - 1.0923999999999998, - 1.1270399999999998, - 1.1629800000000001, - 1.1478000000000004, - 1.13206, - 1.17142, - 1.1662600000000003, - 1.1776400000000002, - 1.2379100000000003, - 1.262340000000001, - 1.2773000000000005, - 1.2795400000000008, - 1.2859700000000007, - 1.2814100000000004, - 1.27406, - 1.29313, - 1.3567599999999995, - 1.3624699999999996, - 1.4019899999999996, - 1.4234699999999991, - 1.4461299999999992, - 1.5143199999999997, - 1.7466599999999988, - 1.7882099999999994, - 1.859319999999999, - 1.8946799999999984, - 2.09575, - 2.3678200000000005, - 2.3939999999999997, - 2.59339, - 2.6538502, - 2.7374301999999995, - 2.8669102, - 3.0167606, - 3.1164207, - 3.2339808, - 3.203540699999999, - 3.2358107999999994, - 3.239590699999999, - 3.2820406999999987, - 3.357960999999999, - 3.6051719999999996, - 3.618271999999999, - 3.6847222999999985, - 3.859602999999997, - 3.9391326999999965, - 3.9210325999999975, - 3.883562499999997, - 4.056452799999996, - 4.354764299999996, - 4.428774499999996, - 4.423054599999997, - 4.423754599999996, - 4.3688537999999975, - 4.512804499999997, - 4.563864699999996, - 4.570944599999997, - 4.624674499999997, - 4.631824599999997, - 4.637304599999997, - 4.655634699999997, - 4.655634699999997, - 4.655944699999996, - 4.655944699999996, - 4.653584699999995, - 4.653584699999995, - 4.653584699999995, - 4.653584699999995, - 4.653584699999995, - 4.653584699999995, - 4.653584699999995, - 4.653584699999995, - 4.653584699999995, - 4.653584699999995, - 4.653584699999995, - 4.653564699999995, - 4.653564699999995, - 4.654844799999995, - 4.654844799999995, - 4.654844799999995, - 4.654844799999995, - 4.663174899999995, - 4.663174899999995, - 4.663174899999995, - 4.663174899999995, - 4.663174899999995, - 4.663174899999995, - 4.663174899999995, - 4.663174899999995, - 4.663174899999995, - 4.663174899999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 17103
prediction: 1.717
MedInc: 0.4999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.722
MedInc: 0.644902

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.722
MedInc: 0.7899039999999999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.722
MedInc: 0.934906

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.725
MedInc: 1.079908

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.728
MedInc: 1.22491

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.727
MedInc: 1.369912

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.711
MedInc: 1.5149139999999999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.713
MedInc: 1.659916

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.752
MedInc: 1.804918

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.739
MedInc: 1.9499199999999999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.758
MedInc: 2.094922

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.778
MedInc: 2.2399240000000002

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 1.887
MedInc: 2.384926

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.051
MedInc: 2.529928

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.125
MedInc: 2.67493

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.144
MedInc: 2.8199319999999997

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.186
MedInc: 2.9649339999999995

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.382
MedInc: 3.1099360000000003

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.543
MedInc: 3.254938

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.554
MedInc: 3.39994

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.586
MedInc: 3.544942

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.62
MedInc: 3.6899439999999997

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.686
MedInc: 3.8349459999999995

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.948
MedInc: 3.9799480000000003

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.371
MedInc: 4.12495

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.529
MedInc: 4.269952

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.464
MedInc: 4.414954

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.491
MedInc: 4.559956

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.631
MedInc: 4.704958

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.675
MedInc: 4.84996

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.691
MedInc: 4.994962

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.834
MedInc: 5.139964

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.87
MedInc: 5.284966

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.75
MedInc: 5.429968

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.851
MedInc: 5.5749699999999995

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.932
MedInc: 5.719972

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.052
MedInc: 5.864974

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.028
MedInc: 6.009976

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.235
MedInc: 6.154978

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.381
MedInc: 6.29998

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.511
MedInc: 6.4449819999999995

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.517
MedInc: 6.589984

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.501
MedInc: 6.734986

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.429
MedInc: 6.879988

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.704
MedInc: 7.02499

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.657
MedInc: 7.169992

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.65
MedInc: 7.3149939999999996

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.639
MedInc: 7.459996

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.578
MedInc: 7.604998

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.732
MedInc: 7.75

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.81
MedInc: 7.895002

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.827
MedInc: 8.040004

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.844
MedInc: 8.185006

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.86
MedInc: 8.330008

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.91
MedInc: 8.47501

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.923
MedInc: 8.620012

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.891
MedInc: 8.765013999999999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.951
MedInc: 8.910016

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.957
MedInc: 9.055018

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.975
MedInc: 9.20002

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.975
MedInc: 9.345022

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.975
MedInc: 9.490024

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.782
MedInc: 9.635026

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.968
MedInc: 9.780028

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.968
MedInc: 9.92503

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.96
MedInc: 10.070032

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.977
MedInc: 10.215034

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 10.360036

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 10.505037999999999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 10.650039999999999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 10.795042

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 10.940044

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 11.085046

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 11.230048

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 11.37505

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 11.520052

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 11.665054

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 11.810056

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 11.955058

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 12.10006

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 12.245061999999999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 12.390063999999999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 12.535065999999999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 12.680068

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 12.82507

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 12.970072

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 13.115074

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 13.260076

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 13.405078

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 13.55008

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 13.695082

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 13.840084

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 13.985085999999999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 14.130087999999999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 14.275089999999999

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 14.420092

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 14.565094

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 14.710096

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 14.855098

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.984
MedInc: 15.0001

HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
AveOccup: 2.403030303030303
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.7167800000000006, - 1.7223500000000007, - 1.7223500000000007, - 1.7223500000000007, - 1.7252300000000005, - 1.7275800000000006, - 1.7272100000000008, - 1.7109600000000007, - 1.7129000000000005, - 1.75181, - 1.7394400000000005, - 1.7583799999999998, - 1.77841, - 1.88655, - 2.0512399999999995, - 2.125079999999999, - 2.144089999999999, - 2.185579999999999, - 2.3824199999999993, - 2.5428300000000017, - 2.554310000000001, - 2.586480000000001, - 2.619550000000001, - 2.6863301000000006, - 2.9476001, - 3.3707404000000003, - 3.5285604999999998, - 3.4643903000000007, - 3.4909302000000006, - 3.6307601000000016, - 3.6752102000000018, - 3.691240200000002, - 3.8343800999999997, - 3.869600099999998, - 3.750499999999998, - 3.8511104999999985, - 3.9317105999999984, - 4.052060999999998, - 4.0281611, - 4.235452799999997, - 4.380883099999997, - 4.510823599999996, - 4.517303399999997, - 4.501193199999997, - 4.428753399999994, - 4.704464899999994, - 4.6574946999999955, - 4.650004499999995, - 4.638764799999995, - 4.5777147999999945, - 4.731965899999994, - 4.809956399999995, - 4.827106799999993, - 4.844307299999993, - 4.860317699999992, - 4.910448599999992, - 4.923318799999992, - 4.891048799999991, - 4.950769499999989, - 4.957189799999989, - 4.975159799999989, - 4.975159799999989, - 4.975159799999989, - 4.782077699999991, - 4.967759699999989, - 4.967759699999989, - 4.960359599999989, - 4.977089699999988, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989, - 4.984489799999989 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 15574
prediction: 1.847
MedInc: 0.4999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.458
MedInc: 0.644902

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.463
MedInc: 0.7899039999999999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.401
MedInc: 0.934906

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.388
MedInc: 1.079908

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.388
MedInc: 1.22491

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.402
MedInc: 1.369912

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.39
MedInc: 1.5149139999999999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.344
MedInc: 1.659916

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.324
MedInc: 1.804918

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.307
MedInc: 1.9499199999999999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.334
MedInc: 2.094922

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.332
MedInc: 2.2399240000000002

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.29
MedInc: 2.384926

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.248
MedInc: 2.529928

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.311
MedInc: 2.67493

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.32
MedInc: 2.8199319999999997

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.371
MedInc: 2.9649339999999995

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.624
MedInc: 3.1099360000000003

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.86
MedInc: 3.254938

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.813
MedInc: 3.39994

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.834
MedInc: 3.544942

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.849
MedInc: 3.6899439999999997

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.909
MedInc: 3.8349459999999995

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 1.999
MedInc: 3.9799480000000003

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.275
MedInc: 4.12495

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.275
MedInc: 4.269952

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.276
MedInc: 4.414954

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.242
MedInc: 4.559956

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.267
MedInc: 4.704958

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.29
MedInc: 4.84996

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.326
MedInc: 4.994962

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.287
MedInc: 5.139964

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.232
MedInc: 5.284966

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.26
MedInc: 5.429968

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.278
MedInc: 5.5749699999999995

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.607
MedInc: 5.719972

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.133
MedInc: 5.864974

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.055
MedInc: 6.009976

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.079
MedInc: 6.154978

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.097
MedInc: 6.29998

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.094
MedInc: 6.4449819999999995

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.193
MedInc: 6.589984

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.183
MedInc: 6.734986

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.428
MedInc: 6.879988

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.497
MedInc: 7.02499

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.491
MedInc: 7.169992

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.497
MedInc: 7.3149939999999996

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.52
MedInc: 7.459996

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.553
MedInc: 7.604998

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.806
MedInc: 7.75

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.988
MedInc: 7.895002

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.993
MedInc: 8.040004

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.056
MedInc: 8.185006

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.128
MedInc: 8.330008

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.182
MedInc: 8.47501

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.189
MedInc: 8.620012

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.148
MedInc: 8.765013999999999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.121
MedInc: 8.910016

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.163
MedInc: 9.055018

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.323
MedInc: 9.20002

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.339
MedInc: 9.345022

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.341
MedInc: 9.490024

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.307
MedInc: 9.635026

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.383
MedInc: 9.780028

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.389
MedInc: 9.92503

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.343
MedInc: 10.070032

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.441
MedInc: 10.215034

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.444
MedInc: 10.360036

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.454
MedInc: 10.505037999999999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.363
MedInc: 10.650039999999999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.567
MedInc: 10.795042

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.567
MedInc: 10.940044

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.587
MedInc: 11.085046

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.596
MedInc: 11.230048

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.596
MedInc: 11.37505

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.592
MedInc: 11.520052

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 11.665054

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 11.810056

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 11.955058

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 12.10006

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 12.245061999999999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 12.390063999999999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 12.535065999999999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 12.680068

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 12.82507

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 12.970072

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 13.115074

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 13.260076

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 13.405078

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 13.55008

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 13.695082

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 13.840084

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 13.985085999999999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 14.130087999999999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 14.275089999999999

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 14.420092

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 14.565094

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 14.710096

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 14.855098

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 4.603
MedInc: 15.0001

HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
AveOccup: 3.006482027106659
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.8473211999999994, - 1.4577500999999995, - 1.4625699999999993, - 1.4010199999999997, - 1.3878399999999997, - 1.3884699999999994, - 1.4015799999999996, - 1.3902699999999997, - 1.3442100000000001, - 1.3243900000000002, - 1.3070100000000002, - 1.3343300000000002, - 1.3324200000000002, - 1.2902, - 1.2475699999999998, - 1.3111100000000002, - 1.3201000000000005, - 1.3711300000000008, - 1.6240100000000006, - 1.859740000000001, - 1.812740000000001, - 1.8335800000000009, - 1.849380000000001, - 1.9088200000000013, - 1.9990000000000014, - 2.2754400000000006, - 2.27489, - 2.27582, - 2.2424099999999996, - 2.2674499999999997, - 2.2897199999999995, - 2.32628, - 2.28713, - 2.23169, - 2.2597700000000005, - 2.2781700000000007, - 2.60713, - 3.1326803000000005, - 3.054890200000001, - 3.0785001, - 3.0966902, - 3.094480199999999, - 3.1926903999999983, - 3.1833801999999984, - 3.4281506999999993, - 3.4965305999999994, - 3.4907706000000003, - 3.4973906000000006, - 3.5200404000000005, - 3.5531907000000005, - 3.8061016000000008, - 3.988341199999999, - 3.9927011999999973, - 4.0561814999999966, - 4.127991599999996, - 4.181551399999995, - 4.188931499999994, - 4.148111399999995, - 4.1209915999999955, - 4.162991799999996, - 4.323341899999999, - 4.339241999999999, - 4.341261999999999, - 4.307481899999999, - 4.383442, - 4.3893918, - 4.343011400000001, - 4.4409821, - 4.4442222000000005, - 4.454312400000001, - 4.3631821, - 4.567043399999999, - 4.567043399999999, - 4.5873132, - 4.595883799999999, - 4.595883799999999, - 4.592213799999999, - 4.602953899999999, - 4.602953899999999, - 4.602953899999999, - 4.602953899999999, - 4.602953899999999, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998, - 4.603413999999998 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 15237
prediction: 1.993
MedInc: 0.4999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.798
MedInc: 0.644902

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.831
MedInc: 0.7899039999999999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.851
MedInc: 0.934906

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.815
MedInc: 1.079908

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.799
MedInc: 1.22491

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.779
MedInc: 1.369912

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.758
MedInc: 1.5149139999999999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.711
MedInc: 1.659916

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.676
MedInc: 1.804918

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.625
MedInc: 1.9499199999999999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.637
MedInc: 2.094922

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.659
MedInc: 2.2399240000000002

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.705
MedInc: 2.384926

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.958
MedInc: 2.529928

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 2.085
MedInc: 2.67493

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 2.229
MedInc: 2.8199319999999997

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 2.209
MedInc: 2.9649339999999995

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 2.501
MedInc: 3.1099360000000003

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 3.203
MedInc: 3.254938

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 3.304
MedInc: 3.39994

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 3.518
MedInc: 3.544942

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 3.831
MedInc: 3.6899439999999997

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.09
MedInc: 3.8349459999999995

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.324
MedInc: 3.9799480000000003

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.395
MedInc: 4.12495

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.443
MedInc: 4.269952

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.496
MedInc: 4.414954

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.505
MedInc: 4.559956

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.428
MedInc: 4.704958

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.418
MedInc: 4.84996

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.346
MedInc: 4.994962

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.221
MedInc: 5.139964

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.422
MedInc: 5.284966

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.437
MedInc: 5.429968

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.635
MedInc: 5.5749699999999995

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.705
MedInc: 5.719972

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.729
MedInc: 5.864974

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.728
MedInc: 6.009976

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.726
MedInc: 6.154978

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.692
MedInc: 6.29998

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.73
MedInc: 6.4449819999999995

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.712
MedInc: 6.589984

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.676
MedInc: 6.734986

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.524
MedInc: 6.879988

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.453
MedInc: 7.02499

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.422
MedInc: 7.169992

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.412
MedInc: 7.3149939999999996

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.381
MedInc: 7.459996

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.366
MedInc: 7.604998

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.33
MedInc: 7.75

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.314
MedInc: 7.895002

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.305
MedInc: 8.040004

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.311
MedInc: 8.185006

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.408
MedInc: 8.330008

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.461
MedInc: 8.47501

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.405
MedInc: 8.620012

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.391
MedInc: 8.765013999999999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.425
MedInc: 8.910016

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.637
MedInc: 9.055018

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.687
MedInc: 9.20002

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.689
MedInc: 9.345022

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.691
MedInc: 9.490024

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.619
MedInc: 9.635026

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.811
MedInc: 9.780028

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.838
MedInc: 9.92503

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.852
MedInc: 10.070032

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.892
MedInc: 10.215034

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.899
MedInc: 10.360036

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.911
MedInc: 10.505037999999999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.91
MedInc: 10.650039999999999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.91
MedInc: 10.795042

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 10.940044

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 11.085046

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 11.230048

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 11.37505

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 11.520052

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 11.665054

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 11.810056

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 11.955058

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 12.10006

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 12.245061999999999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 12.390063999999999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 12.535065999999999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.905
MedInc: 12.680068

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 12.82507

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 12.970072

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 13.115074

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 13.260076

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 13.405078

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 13.55008

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 13.695082

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 13.840084

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 13.985085999999999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 14.130087999999999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 14.275089999999999

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 14.420092

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 14.565094

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 14.710096

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 14.855098

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.903
MedInc: 15.0001

HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
AveOccup: 1.923913043478261
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.9933810000000005, - 1.7977304000000003, - 1.8312104000000002, - 1.8505306000000001, - 1.8145406000000002, - 1.7986806000000004, - 1.7787206, - 1.7575706000000002, - 1.7109205000000003, - 1.6757304000000008, - 1.6250502000000002, - 1.6373201999999998, - 1.6585401999999996, - 1.7051102, - 1.9580901000000004, - 2.085490200000001, - 2.228650100000001, - 2.209130100000001, - 2.5013110999999997, - 3.2026728999999983, - 3.3040331999999983, - 3.5181239999999967, - 3.8314046999999958, - 4.089785299999995, - 4.324116099999994, - 4.3946861999999935, - 4.443366299999993, - 4.496206599999994, - 4.504936099999995, - 4.427765499999995, - 4.418025399999996, - 4.345724599999996, - 4.221223399999998, - 4.4220349999999975, - 4.436885499999997, - 4.634937599999992, - 4.704827999999993, - 4.728688199999993, - 4.727538199999993, - 4.725918099999992, - 4.691717999999992, - 4.729657999999992, - 4.711717999999991, - 4.675747699999992, - 4.523515799999995, - 4.452965499999994, - 4.422304999999995, - 4.412045099999995, - 4.380654599999996, - 4.365784699999996, - 4.329534299999996, - 4.313732999999997, - 4.3054029999999965, - 4.3106129999999965, - 4.408483699999996, - 4.461053899999995, - 4.405303799999995, - 4.390943699999995, - 4.425204499999995, - 4.636586499999992, - 4.686516899999992, - 4.689467099999992, - 4.690806999999992, - 4.6186762999999935, - 4.810707999999992, - 4.838348199999991, - 4.851988399999991, - 4.89172879999999, - 4.898878899999991, - 4.911058999999991, - 4.9103588999999905, - 4.9103588999999905, - 4.904568799999991, - 4.904568799999991, - 4.904568799999991, - 4.904568799999991, - 4.904568799999991, - 4.904568799999991, - 4.904568799999991, - 4.904568799999991, - 4.904568799999991, - 4.904568799999991, - 4.904568799999991, - 4.904568799999991, - 4.904568799999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991, - 4.903268699999991 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 9163
prediction: 2.291
MedInc: 0.4999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.006
MedInc: 0.644902

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.691
MedInc: 0.7899039999999999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.691
MedInc: 0.934906

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.691
MedInc: 1.079908

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.691
MedInc: 1.22491

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.698
MedInc: 1.369912

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.693
MedInc: 1.5149139999999999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.697
MedInc: 1.659916

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.703
MedInc: 1.804918

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.75
MedInc: 1.9499199999999999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.793
MedInc: 2.094922

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.866
MedInc: 2.2399240000000002

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.928
MedInc: 2.384926

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.076
MedInc: 2.529928

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.083
MedInc: 2.67493

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.119
MedInc: 2.8199319999999997

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.214
MedInc: 2.9649339999999995

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.054
MedInc: 3.1099360000000003

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.849
MedInc: 3.254938

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.88
MedInc: 3.39994

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.941
MedInc: 3.544942

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.003
MedInc: 3.6899439999999997

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.072
MedInc: 3.8349459999999995

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.135
MedInc: 3.9799480000000003

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.25
MedInc: 4.12495

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.296
MedInc: 4.269952

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.282
MedInc: 4.414954

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.364
MedInc: 4.559956

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.611
MedInc: 4.704958

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.645
MedInc: 4.84996

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.694
MedInc: 4.994962

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.762
MedInc: 5.139964

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.814
MedInc: 5.284966

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.006
MedInc: 5.429968

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.049
MedInc: 5.5749699999999995

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.169
MedInc: 5.719972

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.472
MedInc: 5.864974

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.335
MedInc: 6.009976

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.316
MedInc: 6.154978

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.478
MedInc: 6.29998

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.654
MedInc: 6.4449819999999995

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.755
MedInc: 6.589984

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.746
MedInc: 6.734986

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.717
MedInc: 6.879988

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.511
MedInc: 7.02499

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.519
MedInc: 7.169992

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.593
MedInc: 7.3149939999999996

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.593
MedInc: 7.459996

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.622
MedInc: 7.604998

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.626
MedInc: 7.75

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.843
MedInc: 7.895002

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.824
MedInc: 8.040004

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.797
MedInc: 8.185006

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.831
MedInc: 8.330008

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.882
MedInc: 8.47501

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.909
MedInc: 8.620012

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.862
MedInc: 8.765013999999999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.927
MedInc: 8.910016

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 3.862
MedInc: 9.055018

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.205
MedInc: 9.20002

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.209
MedInc: 9.345022

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.207
MedInc: 9.490024

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.199
MedInc: 9.635026

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.214
MedInc: 9.780028

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.176
MedInc: 9.92503

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.199
MedInc: 10.070032

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.199
MedInc: 10.215034

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.21
MedInc: 10.360036

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.129
MedInc: 10.505037999999999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.045
MedInc: 10.650039999999999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.286
MedInc: 10.795042

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.286
MedInc: 10.940044

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.292
MedInc: 11.085046

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.299
MedInc: 11.230048

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.305
MedInc: 11.37505

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.312
MedInc: 11.520052

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 11.665054

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 11.810056

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 11.955058

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 12.10006

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 12.245061999999999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 12.390063999999999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 12.535065999999999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 12.680068

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 12.82507

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 12.970072

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 13.115074

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 13.260076

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 13.405078

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 13.55008

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 13.695082

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 13.840084

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.322
MedInc: 13.985085999999999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.325
MedInc: 14.130087999999999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.325
MedInc: 14.275089999999999

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.325
MedInc: 14.420092

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.325
MedInc: 14.565094

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.325
MedInc: 14.710096

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.325
MedInc: 14.855098

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 4.325
MedInc: 15.0001

HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
AveOccup: 2.63681592039801
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.2912315999999997, - 2.0063905999999987, - 1.6913599999999989, - 1.6913599999999989, - 1.6913599999999989, - 1.6913599999999989, - 1.6979999999999986, - 1.6929199999999986, - 1.6973599999999989, - 1.7030999999999985, - 1.750209999999999, - 1.7928899999999992, - 1.8659699999999986, - 1.9277599999999986, - 2.0757800000000004, - 2.0830499999999996, - 2.11937, - 2.2138299999999993, - 2.053850099999999, - 1.8491900999999995, - 1.8801100999999993, - 1.941270099999999, - 2.0026500999999994, - 2.0717001999999987, - 2.135420099999999, - 2.2503400999999994, - 2.295860099999999, - 2.2820701, - 2.364490099999999, - 2.6113901999999998, - 2.6446802999999988, - 2.6937102, - 2.7618305000000003, - 2.8143404000000007, - 3.005650499999999, - 3.0486002999999995, - 3.1693504000000003, - 3.471741099999999, - 3.3345205000000004, - 3.3158403999999995, - 3.4776703999999983, - 3.653990899999998, - 3.7549414999999975, - 3.7456018999999965, - 3.716722199999998, - 3.5105316999999987, - 3.518991699999999, - 3.5931221, - 3.5934920999999997, - 3.6218519999999987, - 3.626231699999999, - 3.8426017999999993, - 3.8244615000000004, - 3.7972916, - 3.8311819999999988, - 3.8815322999999973, - 3.9091428999999978, - 3.8615732999999968, - 3.9269334999999974, - 3.8617133999999966, - 4.205054599999996, - 4.208924699999995, - 4.206834799999996, - 4.199474899999996, - 4.213524999999996, - 4.175684899999996, - 4.199465199999995, - 4.199274999999996, - 4.210425199999996, - 4.128884799999996, - 4.045064199999997, - 4.286165499999995, - 4.286165499999995, - 4.291525399999995, - 4.299415799999994, - 4.305015799999994, - 4.311675899999995, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.322415999999994, - 4.324836099999994, - 4.324836099999994, - 4.324836099999994, - 4.324836099999994, - 4.324836099999994, - 4.324836099999994, - 4.324836099999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 15527
prediction: 1.417
MedInc: 0.4999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.259
MedInc: 0.644902

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.259
MedInc: 0.7899039999999999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.257
MedInc: 0.934906

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.257
MedInc: 1.079908

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.257
MedInc: 1.22491

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.25
MedInc: 1.369912

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.258
MedInc: 1.5149139999999999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.252
MedInc: 1.659916

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.332
MedInc: 1.804918

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.269
MedInc: 1.9499199999999999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.268
MedInc: 2.094922

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.24
MedInc: 2.2399240000000002

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.241
MedInc: 2.384926

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.261
MedInc: 2.529928

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.267
MedInc: 2.67493

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.267
MedInc: 2.8199319999999997

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.312
MedInc: 2.9649339999999995

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.536
MedInc: 3.1099360000000003

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.719
MedInc: 3.254938

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.715
MedInc: 3.39994

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.722
MedInc: 3.544942

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.708
MedInc: 3.6899439999999997

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.715
MedInc: 3.8349459999999995

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.78
MedInc: 3.9799480000000003

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.849
MedInc: 4.12495

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.849
MedInc: 4.269952

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.872
MedInc: 4.414954

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.004
MedInc: 4.559956

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.002
MedInc: 4.704958

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.022
MedInc: 4.84996

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.147
MedInc: 4.994962

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.134
MedInc: 5.139964

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.167
MedInc: 5.284966

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.199
MedInc: 5.429968

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.234
MedInc: 5.5749699999999995

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.432
MedInc: 5.719972

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.872
MedInc: 5.864974

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.811
MedInc: 6.009976

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.78
MedInc: 6.154978

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.784
MedInc: 6.29998

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.792
MedInc: 6.4449819999999995

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.901
MedInc: 6.589984

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 2.972
MedInc: 6.734986

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.258
MedInc: 6.879988

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.201
MedInc: 7.02499

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.206
MedInc: 7.169992

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.218
MedInc: 7.3149939999999996

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.254
MedInc: 7.459996

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.282
MedInc: 7.604998

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.494
MedInc: 7.75

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.738
MedInc: 7.895002

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.772
MedInc: 8.040004

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.833
MedInc: 8.185006

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.854
MedInc: 8.330008

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.954
MedInc: 8.47501

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.983
MedInc: 8.620012

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.965
MedInc: 8.765013999999999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.971
MedInc: 8.910016

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 3.966
MedInc: 9.055018

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.027
MedInc: 9.20002

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.034
MedInc: 9.345022

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.037
MedInc: 9.490024

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.011
MedInc: 9.635026

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.038
MedInc: 9.780028

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.023
MedInc: 9.92503

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.014
MedInc: 10.070032

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.098
MedInc: 10.215034

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.101
MedInc: 10.360036

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.118
MedInc: 10.505037999999999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.033
MedInc: 10.650039999999999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.246
MedInc: 10.795042

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.246
MedInc: 10.940044

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.25
MedInc: 11.085046

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.257
MedInc: 11.230048

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.263
MedInc: 11.37505

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.264
MedInc: 11.520052

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 11.665054

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 11.810056

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 11.955058

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 12.10006

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 12.245061999999999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 12.390063999999999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 12.535065999999999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 12.680068

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 12.82507

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 12.970072

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 13.115074

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 13.260076

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 13.405078

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 13.55008

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 13.695082

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 13.840084

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 13.985085999999999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 14.130087999999999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 14.275089999999999

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 14.420092

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 14.565094

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 14.710096

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 14.855098

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 4.275
MedInc: 15.0001

HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
AveOccup: 3.093956771063079
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.4168703999999999, - 1.2587599999999997, - 1.2587599999999997, - 1.2570499999999998, - 1.2570999999999999, - 1.2567699999999997, - 1.2496699999999996, - 1.25789, - 1.252, - 1.3318, - 1.2686600000000001, - 1.2678400000000005, - 1.2396700000000005, - 1.240660000000001, - 1.2608200000000007, - 1.2667000000000008, - 1.267110000000001, - 1.3117500000000009, - 1.5360902000000005, - 1.7186900000000003, - 1.71471, - 1.7217799999999999, - 1.7075299999999995, - 1.7147199999999991, - 1.7798699999999992, - 1.8487999999999993, - 1.8486999999999996, - 1.87155, - 2.0042100000000005, - 2.0023899999999997, - 2.02153, - 2.14703, - 2.1335699999999993, - 2.1670599999999998, - 2.19896, - 2.2341800000000007, - 2.4323502000000006, - 2.8724705999999993, - 2.8106405, - 2.7797202999999993, - 2.7835403000000003, - 2.7920303, - 2.901390400000001, - 2.9719102000000004, - 3.257960399999999, - 3.201140299999999, - 3.2057202999999994, - 3.2180902999999987, - 3.253840299999999, - 3.2817603999999982, - 3.4938911999999984, - 3.737900999999998, - 3.7722608999999965, - 3.8333710999999955, - 3.854280999999995, - 3.9538411999999954, - 3.9827714999999957, - 3.9654813999999963, - 3.9711816999999967, - 3.9659919999999977, - 4.027412099999999, - 4.0341621, - 4.037062199999999, - 4.011452199999999, - 4.037702399999999, - 4.023072499999999, - 4.014252499999999, - 4.098182799999998, - 4.101422899999999, - 4.1177529999999996, - 4.032652399999998, - 4.245733399999999, - 4.245733399999999, - 4.249683099999999, - 4.257313599999998, - 4.262913599999998, - 4.263783599999998, - 4.274523699999998, - 4.274523699999998, - 4.274523699999998, - 4.274523699999998, - 4.274523699999998, - 4.274523699999998, - 4.274523699999998, - 4.274523699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998, - 4.274503699999998 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 4330
prediction: 2.614
MedInc: 0.4999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.45
MedInc: 0.644902

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.415
MedInc: 0.7899039999999999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.394
MedInc: 0.934906

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.375
MedInc: 1.079908

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.408
MedInc: 1.22491

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.45
MedInc: 1.369912

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.47
MedInc: 1.5149139999999999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.471
MedInc: 1.659916

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.587
MedInc: 1.804918

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.48
MedInc: 1.9499199999999999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.448
MedInc: 2.094922

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.252
MedInc: 2.2399240000000002

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.257
MedInc: 2.384926

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.263
MedInc: 2.529928

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.301
MedInc: 2.67493

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.469
MedInc: 2.8199319999999997

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.488
MedInc: 2.9649339999999995

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.502
MedInc: 3.1099360000000003

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.355
MedInc: 3.254938

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.401
MedInc: 3.39994

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.365
MedInc: 3.544942

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.385
MedInc: 3.6899439999999997

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.397
MedInc: 3.8349459999999995

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.433
MedInc: 3.9799480000000003

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.347
MedInc: 4.12495

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.143
MedInc: 4.269952

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.142
MedInc: 4.414954

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.123
MedInc: 4.559956

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.12
MedInc: 4.704958

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.107
MedInc: 4.84996

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.317
MedInc: 4.994962

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.495
MedInc: 5.139964

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.57
MedInc: 5.284966

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.678
MedInc: 5.429968

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.821
MedInc: 5.5749699999999995

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.92
MedInc: 5.719972

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.135
MedInc: 5.864974

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.121
MedInc: 6.009976

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.313
MedInc: 6.154978

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.337
MedInc: 6.29998

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.481
MedInc: 6.4449819999999995

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.639
MedInc: 6.589984

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.767
MedInc: 6.734986

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.76
MedInc: 6.879988

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.042
MedInc: 7.02499

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.051
MedInc: 7.169992

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.08
MedInc: 7.3149939999999996

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.055
MedInc: 7.459996

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.011
MedInc: 7.604998

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.288
MedInc: 7.75

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.398
MedInc: 7.895002

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.393
MedInc: 8.040004

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.464
MedInc: 8.185006

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.396
MedInc: 8.330008

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.383
MedInc: 8.47501

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 8.620012

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.352
MedInc: 8.765013999999999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.317
MedInc: 8.910016

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.321
MedInc: 9.055018

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.336
MedInc: 9.20002

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.312
MedInc: 9.345022

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.317
MedInc: 9.490024

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.22
MedInc: 9.635026

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.352
MedInc: 9.780028

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.314
MedInc: 9.92503

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.316
MedInc: 10.070032

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.328
MedInc: 10.215034

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.328
MedInc: 10.360036

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.328
MedInc: 10.505037999999999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.328
MedInc: 10.650039999999999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.328
MedInc: 10.795042

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.328
MedInc: 10.940044

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.328
MedInc: 11.085046

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.328
MedInc: 11.230048

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 11.37505

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 11.520052

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 11.665054

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 11.810056

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 11.955058

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 12.10006

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 12.245061999999999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 12.390063999999999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 12.535065999999999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 12.680068

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 12.82507

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 12.970072

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 13.115074

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 13.260076

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 13.405078

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 13.55008

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 13.695082

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 13.840084

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 13.985085999999999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 14.130087999999999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 14.275089999999999

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 14.420092

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 14.565094

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 14.710096

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 14.855098

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 4.333
MedInc: 15.0001

HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
AveOccup: 3.040277777777778
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.6143007, - 2.4503701, - 2.4153700000000002, - 2.3942101, - 2.3747401000000004, - 2.4075001, - 2.4504101, - 2.4698701, - 2.4705501, - 2.5866101, - 2.4803500999999994, - 2.4476300999999996, - 2.2522400999999994, - 2.2567502000000004, - 2.2630002, - 2.3005504, - 2.468621, - 2.4877711, - 2.5019906000000005, - 2.3553200000000007, - 2.4007800000000006, - 2.3654000000000015, - 2.3846000000000007, - 2.3967600000000004, - 2.4329599999999996, - 2.3466099999999996, - 2.1429399000000005, - 2.1420799000000006, - 2.1232299, - 2.1201599, - 2.1073699, - 2.31696, - 2.494800100000001, - 2.5698101000000015, - 2.678120200000001, - 2.8212002999999997, - 2.919670799999999, - 3.1349910000000007, - 3.121211000000001, - 3.312671300000001, - 3.3371617000000002, - 3.481252, - 3.6391921, - 3.7674316999999995, - 3.759710800000002, - 4.041551999999999, - 4.050811999999999, - 4.080332399999998, - 4.055052699999998, - 4.011022599999998, - 4.287903499999997, - 4.398304299999999, - 4.393124199999999, - 4.4640043999999985, - 4.395774399999997, - 4.382914599999998, - 4.332704499999998, - 4.351584899999997, - 4.317205299999995, - 4.320766099999995, - 4.3363861999999935, - 4.311796099999994, - 4.317446099999994, - 4.2201954999999955, - 4.3522670999999935, - 4.313516999999994, - 4.316307099999993, - 4.327777299999993, - 4.327777299999993, - 4.327777299999993, - 4.327777299999993, - 4.327777299999993, - 4.327777299999993, - 4.327777299999993, - 4.327777299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993, - 4.333377299999993 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 6483
prediction: 2.202
MedInc: 0.4999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.798
MedInc: 0.644902

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.729
MedInc: 0.7899039999999999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.675
MedInc: 0.934906

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.629
MedInc: 1.079908

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.629
MedInc: 1.22491

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.654
MedInc: 1.369912

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.628
MedInc: 1.5149139999999999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.61
MedInc: 1.659916

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.596
MedInc: 1.804918

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.596
MedInc: 1.9499199999999999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.602
MedInc: 2.094922

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.695
MedInc: 2.2399240000000002

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.72
MedInc: 2.384926

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.721
MedInc: 2.529928

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.713
MedInc: 2.67493

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.713
MedInc: 2.8199319999999997

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.719
MedInc: 2.9649339999999995

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.743
MedInc: 3.1099360000000003

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.72
MedInc: 3.254938

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.733
MedInc: 3.39994

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.733
MedInc: 3.544942

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.762
MedInc: 3.6899439999999997

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.824
MedInc: 3.8349459999999995

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.816
MedInc: 3.9799480000000003

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.912
MedInc: 4.12495

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.886
MedInc: 4.269952

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.884
MedInc: 4.414954

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.888
MedInc: 4.559956

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.895
MedInc: 4.704958

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.956
MedInc: 4.84996

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.035
MedInc: 4.994962

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.06
MedInc: 5.139964

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.077
MedInc: 5.284966

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.12
MedInc: 5.429968

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.133
MedInc: 5.5749699999999995

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.33
MedInc: 5.719972

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.483
MedInc: 5.864974

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.516
MedInc: 6.009976

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.649
MedInc: 6.154978

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.67
MedInc: 6.29998

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.828
MedInc: 6.4449819999999995

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.997
MedInc: 6.589984

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.237
MedInc: 6.734986

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.408
MedInc: 6.879988

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.679
MedInc: 7.02499

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.678
MedInc: 7.169992

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.66
MedInc: 7.3149939999999996

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.667
MedInc: 7.459996

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.689
MedInc: 7.604998

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.938
MedInc: 7.75

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.975
MedInc: 7.895002

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.969
MedInc: 8.040004

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.025
MedInc: 8.185006

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.015
MedInc: 8.330008

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.997
MedInc: 8.47501

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.938
MedInc: 8.620012

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.96
MedInc: 8.765013999999999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.935
MedInc: 8.910016

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.12
MedInc: 9.055018

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.182
MedInc: 9.20002

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.173
MedInc: 9.345022

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.178
MedInc: 9.490024

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.139
MedInc: 9.635026

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.243
MedInc: 9.780028

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.204
MedInc: 9.92503

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.204
MedInc: 10.070032

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.22
MedInc: 10.215034

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.22
MedInc: 10.360036

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.227
MedInc: 10.505037999999999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.227
MedInc: 10.650039999999999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.227
MedInc: 10.795042

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.227
MedInc: 10.940044

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.227
MedInc: 11.085046

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.227
MedInc: 11.230048

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.233
MedInc: 11.37505

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.233
MedInc: 11.520052

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.233
MedInc: 11.665054

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.233
MedInc: 11.810056

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.233
MedInc: 11.955058

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.233
MedInc: 12.10006

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.233
MedInc: 12.245061999999999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.233
MedInc: 12.390063999999999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.233
MedInc: 12.535065999999999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.233
MedInc: 12.680068

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.233
MedInc: 12.82507

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.233
MedInc: 12.970072

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.234
MedInc: 13.115074

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.234
MedInc: 13.260076

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.234
MedInc: 13.405078

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.234
MedInc: 13.55008

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.243
MedInc: 13.695082

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.243
MedInc: 13.840084

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.243
MedInc: 13.985085999999999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.243
MedInc: 14.130087999999999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.243
MedInc: 14.275089999999999

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.243
MedInc: 14.420092

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.243
MedInc: 14.565094

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.243
MedInc: 14.710096

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.243
MedInc: 14.855098

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 4.243
MedInc: 15.0001

HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
AveOccup: 3.617429837518464
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.2024415000000004, - 1.7981302999999997, - 1.7287700999999995, - 1.6746099999999995, - 1.6285799999999997, - 1.6285799999999997, - 1.6538499999999994, - 1.6284599999999998, - 1.6095199999999996, - 1.59566, - 1.5964599999999998, - 1.6021200000000002, - 1.6953999999999996, - 1.7195699999999994, - 1.7209, - 1.7127599999999998, - 1.7129300000000003, - 1.7193300000000002, - 1.742920000000001, - 1.719640000000001, - 1.733490000000001, - 1.7328200000000007, - 1.7621500000000012, - 1.8241300000000011, - 1.8158100000000004, - 1.9123799999999997, - 1.8857800000000007, - 1.8842900000000002, - 1.8881700000000006, - 1.8950600000000006, - 1.9561400000000004, - 2.0348599999999997, - 2.060159999999999, - 2.0768299999999993, - 2.120029999999999, - 2.1330199999999992, - 2.3301099999999995, - 2.482589999999999, - 2.5159899999999995, - 2.64935, - 2.67031, - 2.827570399999999, - 2.9972104, - 3.2366604999999997, - 3.4082904, - 3.6790009999999995, - 3.6778209999999985, - 3.6596709999999986, - 3.6672109999999973, - 3.688630999999998, - 3.937881199999999, - 3.974961499999998, - 3.969181499999998, - 4.024651799999997, - 4.015012099999997, - 3.9965520999999966, - 3.937952199999998, - 3.9602822999999976, - 3.9347129999999977, - 4.119534499999997, - 4.182205099999996, - 4.172555199999996, - 4.178205199999996, - 4.139174899999997, - 4.242875999999996, - 4.204125899999997, - 4.204125899999997, - 4.220286099999996, - 4.220286099999996, - 4.227436199999995, - 4.227436199999995, - 4.227436199999995, - 4.227436199999995, - 4.227436199999995, - 4.227436199999995, - 4.2330361999999955, - 4.2330361999999955, - 4.2330361999999955, - 4.2330361999999955, - 4.2330361999999955, - 4.2330361999999955, - 4.2330361999999955, - 4.2330361999999955, - 4.2330361999999955, - 4.2330361999999955, - 4.2330361999999955, - 4.2330361999999955, - 4.234316299999995, - 4.234316299999995, - 4.234316299999995, - 4.234316299999995, - 4.2426463999999955, - 4.2426463999999955, - 4.2426463999999955, - 4.2426463999999955, - 4.2426463999999955, - 4.2426463999999955, - 4.2426463999999955, - 4.2426463999999955, - 4.2426463999999955, - 4.2426463999999955 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 12789
prediction: 0.686
MedInc: 0.4999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.682
MedInc: 0.644902

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.673
MedInc: 0.7899039999999999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.668
MedInc: 0.934906

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.664
MedInc: 1.079908

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.664
MedInc: 1.22491

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.655
MedInc: 1.369912

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.654
MedInc: 1.5149139999999999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.679
MedInc: 1.659916

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.687
MedInc: 1.804918

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.736
MedInc: 1.9499199999999999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.807
MedInc: 2.094922

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.823
MedInc: 2.2399240000000002

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.851
MedInc: 2.384926

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.912
MedInc: 2.529928

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.968
MedInc: 2.67493

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.022
MedInc: 2.8199319999999997

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.07
MedInc: 2.9649339999999995

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.146
MedInc: 3.1099360000000003

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.166
MedInc: 3.254938

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.172
MedInc: 3.39994

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.197
MedInc: 3.544942

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.212
MedInc: 3.6899439999999997

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.254
MedInc: 3.8349459999999995

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.323
MedInc: 3.9799480000000003

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.431
MedInc: 4.12495

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.563
MedInc: 4.269952

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.573
MedInc: 4.414954

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.639
MedInc: 4.559956

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.725
MedInc: 4.704958

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.713
MedInc: 4.84996

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.764
MedInc: 4.994962

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 2.35
MedInc: 5.139964

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 2.431
MedInc: 5.284966

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 2.483
MedInc: 5.429968

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 2.511
MedInc: 5.5749699999999995

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 2.548
MedInc: 5.719972

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 2.681
MedInc: 5.864974

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 2.741
MedInc: 6.009976

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 2.846
MedInc: 6.154978

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.027
MedInc: 6.29998

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.021
MedInc: 6.4449819999999995

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.065
MedInc: 6.589984

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.151
MedInc: 6.734986

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.529
MedInc: 6.879988

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.611
MedInc: 7.02499

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.62
MedInc: 7.169992

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.531
MedInc: 7.3149939999999996

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.538
MedInc: 7.459996

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.65
MedInc: 7.604998

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.721
MedInc: 7.75

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 4.01
MedInc: 7.895002

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 4.003
MedInc: 8.040004

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 4.005
MedInc: 8.185006

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.95
MedInc: 8.330008

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.872
MedInc: 8.47501

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.849
MedInc: 8.620012

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.873
MedInc: 8.765013999999999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.794
MedInc: 8.910016

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.663
MedInc: 9.055018

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.634
MedInc: 9.20002

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.63
MedInc: 9.345022

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.63
MedInc: 9.490024

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.613
MedInc: 9.635026

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.597
MedInc: 9.780028

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.6
MedInc: 9.92503

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.597
MedInc: 10.070032

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.659
MedInc: 10.215034

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.667
MedInc: 10.360036

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.674
MedInc: 10.505037999999999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.677
MedInc: 10.650039999999999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.677
MedInc: 10.795042

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.677
MedInc: 10.940044

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.677
MedInc: 11.085046

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.677
MedInc: 11.230048

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 11.37505

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 11.520052

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 11.665054

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 11.810056

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 11.955058

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 12.10006

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 12.245061999999999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 12.390063999999999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 12.535065999999999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 12.680068

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 12.82507

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 12.970072

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 13.115074

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 13.260076

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 13.405078

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 13.55008

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 13.695082

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 13.840084

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 13.985085999999999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 14.130087999999999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 14.275089999999999

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 14.420092

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 14.565094

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 14.710096

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 14.855098

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 3.682
MedInc: 15.0001

HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
AveOccup: 2.57312925170068
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.6864799999999995, - 0.6819199999999995, - 0.6727699999999995, - 0.6676199999999995, - 0.6642299999999994, - 0.6642999999999994, - 0.6551199999999995, - 0.6544299999999994, - 0.6790499999999996, - 0.6867299999999997, - 0.7362899999999998, - 0.8069999999999999, - 0.8234899999999999, - 0.8513899999999996, - 0.9124599999999997, - 0.9678899999999996, - 1.0222099999999998, - 1.0695799999999998, - 1.14642, - 1.16583, - 1.17218, - 1.1967700000000001, - 1.2119000000000002, - 1.2544000000000004, - 1.3226700000000005, - 1.4307500000000002, - 1.5628900000000003, - 1.5727800000000005, - 1.6391800000000003, - 1.7252901000000003, - 1.7128201, - 1.7635501, - 2.3504303000000006, - 2.4312104000000003, - 2.4830404, - 2.5114304, - 2.5475003999999997, - 2.6805203000000004, - 2.7408204, - 2.8463203999999998, - 3.0270206999999987, - 3.0206406999999986, - 3.0648505999999984, - 3.1513704999999983, - 3.5290111, - 3.6110213, - 3.6199513999999993, - 3.5311909999999993, - 3.5383308999999996, - 3.6503107999999984, - 3.721050799999998, - 4.010461399999999, - 4.0025412, - 4.005271199999999, - 3.9497614, - 3.8720415, - 3.8491015999999987, - 3.873471799999999, - 3.7937521999999997, - 3.663202399999999, - 3.633632599999999, - 3.630302499999999, - 3.630302499999999, - 3.6130022999999993, - 3.5966126999999997, - 3.5996727999999996, - 3.5973727, - 3.6591331999999994, - 3.6665332999999998, - 3.6735832999999998, - 3.6766433999999997, - 3.6766433999999997, - 3.6766433999999997, - 3.6766433999999997, - 3.6766433999999997, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434, - 3.6822434 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 3080
prediction: 0.911
MedInc: 0.4999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.906
MedInc: 0.644902

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.906
MedInc: 0.7899039999999999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.906
MedInc: 0.934906

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.911
MedInc: 1.079908

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.897
MedInc: 1.22491

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.904
MedInc: 1.369912

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.899
MedInc: 1.5149139999999999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.869
MedInc: 1.659916

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.876
MedInc: 1.804918

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.884
MedInc: 1.9499199999999999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.915
MedInc: 2.094922

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.935
MedInc: 2.2399240000000002

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.911
MedInc: 2.384926

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.922
MedInc: 2.529928

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.949
MedInc: 2.67493

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.965
MedInc: 2.8199319999999997

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.961
MedInc: 2.9649339999999995

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.968
MedInc: 3.1099360000000003

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.987
MedInc: 3.254938

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 0.989
MedInc: 3.39994

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 1.032
MedInc: 3.544942

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 1.081
MedInc: 3.6899439999999997

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 1.126
MedInc: 3.8349459999999995

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 1.224
MedInc: 3.9799480000000003

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 1.403
MedInc: 4.12495

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 1.513
MedInc: 4.269952

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 1.528
MedInc: 4.414954

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 1.606
MedInc: 4.559956

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 1.775
MedInc: 4.704958

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 1.838
MedInc: 4.84996

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 1.913
MedInc: 4.994962

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.288
MedInc: 5.139964

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.368
MedInc: 5.284966

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.542
MedInc: 5.429968

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.61
MedInc: 5.5749699999999995

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.561
MedInc: 5.719972

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.78
MedInc: 5.864974

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.44
MedInc: 6.009976

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.413
MedInc: 6.154978

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.826
MedInc: 6.29998

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.926
MedInc: 6.4449819999999995

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.092
MedInc: 6.589984

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.303
MedInc: 6.734986

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.379
MedInc: 6.879988

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.482
MedInc: 7.02499

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.471
MedInc: 7.169992

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.574
MedInc: 7.3149939999999996

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.683
MedInc: 7.459996

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.644
MedInc: 7.604998

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.676
MedInc: 7.75

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.737
MedInc: 7.895002

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.813
MedInc: 8.040004

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.769
MedInc: 8.185006

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.722
MedInc: 8.330008

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.779
MedInc: 8.47501

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.842
MedInc: 8.620012

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.762
MedInc: 8.765013999999999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.771
MedInc: 8.910016

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.698
MedInc: 9.055018

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.284
MedInc: 9.20002

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.32
MedInc: 9.345022

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.317
MedInc: 9.490024

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.31
MedInc: 9.635026

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.454
MedInc: 9.780028

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.465
MedInc: 9.92503

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.569
MedInc: 10.070032

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.521
MedInc: 10.215034

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.551
MedInc: 10.360036

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.486
MedInc: 10.505037999999999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.437
MedInc: 10.650039999999999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.729
MedInc: 10.795042

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.727
MedInc: 10.940044

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.753
MedInc: 11.085046

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.761
MedInc: 11.230048

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.761
MedInc: 11.37505

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.765
MedInc: 11.520052

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 11.665054

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 11.810056

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 11.955058

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 12.10006

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 12.245061999999999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 12.390063999999999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 12.535065999999999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 12.680068

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 12.82507

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 12.970072

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 13.115074

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 13.260076

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 13.405078

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 13.55008

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 13.695082

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 13.840084

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 13.985085999999999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 14.130087999999999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 14.275089999999999

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 14.420092

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 14.565094

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 14.710096

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 14.855098

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 4.776
MedInc: 15.0001

HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
AveOccup: 2.4537444933920707
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.91104, - 0.90614, - 0.90614, - 0.90614, - 0.9107599999999999, - 0.89693, - 0.9043099999999998, - 0.8985199999999998, - 0.8686999999999998, - 0.8759799999999995, - 0.8837799999999996, - 0.9153199999999998, - 0.9353799999999995, - 0.9106199999999997, - 0.9215900000000002, - 0.9488800000000001, - 0.9645100000000001, - 0.961, - 0.9681099999999998, - 0.9872499999999996, - 0.9890799999999996, - 1.0323799999999999, - 1.0813200000000003, - 1.1259000000000001, - 1.2239501, - 1.4025501000000002, - 1.5130100999999998, - 1.5283400999999999, - 1.6055800999999996, - 1.7748301000000004, - 1.8379301000000003, - 1.9127301000000003, - 2.2876202, - 2.3681101, - 2.5422200000000004, - 2.610150100000001, - 2.5612101000000003, - 2.7800310000000006, - 2.4400701000000007, - 2.4131901000000004, - 2.8259401999999985, - 2.9259201999999975, - 3.0915907999999974, - 3.3029311999999957, - 3.3793511999999977, - 3.482251399999998, - 3.4710213999999993, - 3.5739419999999997, - 3.6830323999999997, - 3.6436621000000002, - 3.6763515999999994, - 3.7374612000000007, - 3.813221500000001, - 3.7688617000000004, - 3.7222117999999993, - 3.778571800000001, - 3.8424322000000006, - 3.7624123000000003, - 3.770662400000001, - 3.698182, - 4.283913899999996, - 4.319754099999996, - 4.317224099999995, - 4.309864199999996, - 4.453634799999994, - 4.465284899999995, - 4.568825599999994, - 4.521284899999994, - 4.550775299999994, - 4.486025399999995, - 4.436915299999995, - 4.7289668999999925, - 4.726546799999993, - 4.752606999999992, - 4.761197499999992, - 4.761197499999992, - 4.765167599999992, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991, - 4.775907699999991 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 8465
prediction: 2.176
MedInc: 0.4999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.15
MedInc: 0.644902

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.15
MedInc: 0.7899039999999999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.032
MedInc: 0.934906

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.037
MedInc: 1.079908

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.021
MedInc: 1.22491

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.036
MedInc: 1.369912

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.045
MedInc: 1.5149139999999999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.121
MedInc: 1.659916

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.192
MedInc: 1.804918

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.082
MedInc: 1.9499199999999999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.051
MedInc: 2.094922

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.035
MedInc: 2.2399240000000002

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.964
MedInc: 2.384926

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.938
MedInc: 2.529928

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.953
MedInc: 2.67493

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.991
MedInc: 2.8199319999999997

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.996
MedInc: 2.9649339999999995

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.271
MedInc: 3.1099360000000003

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.243
MedInc: 3.254938

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.25
MedInc: 3.39994

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.292
MedInc: 3.544942

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.298
MedInc: 3.6899439999999997

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.283
MedInc: 3.8349459999999995

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.262
MedInc: 3.9799480000000003

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.352
MedInc: 4.12495

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.398
MedInc: 4.269952

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.484
MedInc: 4.414954

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.505
MedInc: 4.559956

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.71
MedInc: 4.704958

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.718
MedInc: 4.84996

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.808
MedInc: 4.994962

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 3.008
MedInc: 5.139964

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.958
MedInc: 5.284966

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 3.165
MedInc: 5.429968

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 3.229
MedInc: 5.5749699999999995

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 3.545
MedInc: 5.719972

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.096
MedInc: 5.864974

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 3.897
MedInc: 6.009976

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 3.928
MedInc: 6.154978

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 3.89
MedInc: 6.29998

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 3.887
MedInc: 6.4449819999999995

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.015
MedInc: 6.589984

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.115
MedInc: 6.734986

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.011
MedInc: 6.879988

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 3.917
MedInc: 7.02499

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 3.896
MedInc: 7.169992

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.018
MedInc: 7.3149939999999996

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.069
MedInc: 7.459996

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.043
MedInc: 7.604998

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.05
MedInc: 7.75

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.366
MedInc: 7.895002

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.397
MedInc: 8.040004

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.396
MedInc: 8.185006

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.356
MedInc: 8.330008

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.345
MedInc: 8.47501

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.297
MedInc: 8.620012

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.234
MedInc: 8.765013999999999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.187
MedInc: 8.910016

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.036
MedInc: 9.055018

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.184
MedInc: 9.20002

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.203
MedInc: 9.345022

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.203
MedInc: 9.490024

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.178
MedInc: 9.635026

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.203
MedInc: 9.780028

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.16
MedInc: 9.92503

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.159
MedInc: 10.070032

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.186
MedInc: 10.215034

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.2
MedInc: 10.360036

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.083
MedInc: 10.505037999999999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.043
MedInc: 10.650039999999999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.273
MedInc: 10.795042

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.273
MedInc: 10.940044

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.306
MedInc: 11.085046

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.315
MedInc: 11.230048

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.32
MedInc: 11.37505

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.324
MedInc: 11.520052

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 11.665054

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 11.810056

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 11.955058

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 12.10006

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 12.245061999999999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 12.390063999999999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 12.535065999999999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 12.680068

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 12.82507

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 12.970072

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 13.115074

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 13.260076

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 13.405078

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 13.55008

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 13.695082

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 13.840084

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 13.985085999999999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 14.130087999999999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 14.275089999999999

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 14.420092

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 14.565094

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 14.710096

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 14.855098

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 4.335
MedInc: 15.0001

HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
AveOccup: 2.3563922942206657
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.1755402, - 2.1495100999999996, - 2.1495100999999996, - 2.0320701, - 2.0370700999999998, - 2.0208000999999998, - 2.0356701, - 2.0447100999999996, - 2.1207900999999993, - 2.1924000999999995, - 2.082040099999999, - 2.0514400999999993, - 2.0354900999999996, - 1.9639599999999995, - 1.9383799999999995, - 1.9525599999999994, - 1.9907499999999994, - 1.9963799999999992, - 2.27112, - 2.243050099999999, - 2.2500701999999992, - 2.2917100999999995, - 2.2977100999999998, - 2.2833000999999995, - 2.2618900999999996, - 2.3517200999999996, - 2.3979700999999993, - 2.4840100999999994, - 2.5051800999999996, - 2.709540099999998, - 2.717740099999998, - 2.8082602999999984, - 3.0078111999999995, - 2.9583809999999993, - 3.1653114999999974, - 3.2287013999999976, - 3.5453624999999973, - 4.096394399999995, - 3.8972130999999965, - 3.927682999999996, - 3.890162299999996, - 3.8868423999999964, - 4.015242999999997, - 4.114723299999997, - 4.010923099999997, - 3.916952899999997, - 3.8961529999999978, - 4.017703499999997, - 4.068923499999997, - 4.042953299999997, - 4.049812999999998, - 4.366144499999997, - 4.396664499999996, - 4.396124499999996, - 4.355504499999996, - 4.344554399999995, - 4.296994399999996, - 4.234464299999996, - 4.187324299999997, - 4.036233099999996, - 4.184383699999995, - 4.202983799999996, - 4.202983799999996, - 4.177943699999997, - 4.202773999999995, - 4.160023899999996, - 4.158663999999996, - 4.185814099999996, - 4.199714399999996, - 4.082623799999997, - 4.043473499999997, - 4.272825399999996, - 4.272825399999996, - 4.3064151999999964, - 4.314765699999996, - 4.3203656999999955, - 4.324335799999996, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995, - 4.335075899999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 10611
prediction: 2.716
MedInc: 0.4999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.281
MedInc: 0.644902

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.052
MedInc: 0.7899039999999999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.052
MedInc: 0.934906

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.052
MedInc: 1.079908

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.051
MedInc: 1.22491

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.051
MedInc: 1.369912

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.05
MedInc: 1.5149139999999999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.027
MedInc: 1.659916

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 1.983
MedInc: 1.804918

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 1.959
MedInc: 1.9499199999999999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 1.981
MedInc: 2.094922

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 1.988
MedInc: 2.2399240000000002

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.078
MedInc: 2.384926

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.27
MedInc: 2.529928

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.278
MedInc: 2.67493

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.293
MedInc: 2.8199319999999997

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.299
MedInc: 2.9649339999999995

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.353
MedInc: 3.1099360000000003

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.106
MedInc: 3.254938

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.117
MedInc: 3.39994

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.121
MedInc: 3.544942

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.064
MedInc: 3.6899439999999997

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.116
MedInc: 3.8349459999999995

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.099
MedInc: 3.9799480000000003

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.084
MedInc: 4.12495

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.108
MedInc: 4.269952

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.175
MedInc: 4.414954

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.164
MedInc: 4.559956

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.171
MedInc: 4.704958

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.169
MedInc: 4.84996

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.139
MedInc: 4.994962

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.089
MedInc: 5.139964

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.011
MedInc: 5.284966

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.014
MedInc: 5.429968

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.031
MedInc: 5.5749699999999995

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.21
MedInc: 5.719972

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.508
MedInc: 5.864974

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.485
MedInc: 6.009976

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.55
MedInc: 6.154978

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.614
MedInc: 6.29998

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.719
MedInc: 6.4449819999999995

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.752
MedInc: 6.589984

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.725
MedInc: 6.734986

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.919
MedInc: 6.879988

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.94
MedInc: 7.02499

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.979
MedInc: 7.169992

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.053
MedInc: 7.3149939999999996

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.065
MedInc: 7.459996

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.113
MedInc: 7.604998

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.196
MedInc: 7.75

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.325
MedInc: 7.895002

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.363
MedInc: 8.040004

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.342
MedInc: 8.185006

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.415
MedInc: 8.330008

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.576
MedInc: 8.47501

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.633
MedInc: 8.620012

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.621
MedInc: 8.765013999999999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.649
MedInc: 8.910016

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 3.849
MedInc: 9.055018

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.232
MedInc: 9.20002

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.26
MedInc: 9.345022

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.262
MedInc: 9.490024

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.233
MedInc: 9.635026

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.358
MedInc: 9.780028

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.426
MedInc: 9.92503

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.499
MedInc: 10.070032

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.609
MedInc: 10.215034

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.616
MedInc: 10.360036

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.479
MedInc: 10.505037999999999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.411
MedInc: 10.650039999999999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.73
MedInc: 10.795042

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.73
MedInc: 10.940044

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.758
MedInc: 11.085046

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.768
MedInc: 11.230048

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.768
MedInc: 11.37505

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.769
MedInc: 11.520052

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 11.665054

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 11.810056

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 11.955058

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 12.10006

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 12.245061999999999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 12.390063999999999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 12.535065999999999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 12.680068

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 12.82507

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 12.970072

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 13.115074

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 13.260076

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 13.405078

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 13.55008

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 13.695082

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 13.840084

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 13.985085999999999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 14.130087999999999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 14.275089999999999

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 14.420092

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 14.565094

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 14.710096

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 14.855098

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 4.78
MedInc: 15.0001

HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
AveOccup: 3.1245791245791246
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.7158021999999993, - 2.2805808999999995, - 2.0517404999999993, - 2.0517404999999993, - 2.0517404999999993, - 2.0514504999999996, - 2.0510904999999995, - 2.0496605, - 2.0267203999999994, - 1.9825703999999993, - 1.9588703999999995, - 1.9812702999999996, - 1.9883301999999998, - 2.0778802, - 2.2699701999999995, - 2.2784301999999994, - 2.292590199999999, - 2.2990501999999995, - 2.3534601999999993, - 2.1064999999999996, - 2.1170600000000004, - 2.1212299999999997, - 2.0635099999999995, - 2.1156399999999995, - 2.0993899999999996, - 2.0844699999999996, - 2.1077899999999996, - 2.1752799999999994, - 2.1638999999999995, - 2.170629999999999, - 2.1689099999999994, - 2.139429999999999, - 2.0889599999999993, - 2.011349999999999, - 2.0140699999999985, - 2.0306599999999997, - 2.2099799999999994, - 2.5075699999999976, - 2.485059999999998, - 2.549609999999999, - 2.6139299999999985, - 2.718739999999999, - 2.751959999999999, - 2.7250699999999997, - 2.9192701, - 2.939690000000001, - 2.978880000000001, - 3.053000000000001, - 3.0653300000000017, - 3.1133101000000023, - 3.1960102000000017, - 3.3250900000000008, - 3.3627100000000003, - 3.342090000000001, - 3.4145001999999995, - 3.576370099999999, - 3.632640099999998, - 3.6213901999999987, - 3.649340199999999, - 3.849240899999998, - 4.232071799999998, - 4.259761899999998, - 4.261742099999998, - 4.232652199999998, - 4.358022699999998, - 4.426373399999997, - 4.498694099999996, - 4.609414399999996, - 4.615944499999996, - 4.478573999999998, - 4.410613099999998, - 4.729794399999998, - 4.729794399999998, - 4.758374299999998, - 4.768364999999997, - 4.768364999999997, - 4.769234999999997, - 4.779975099999996, - 4.779975099999996, - 4.779975099999996, - 4.779975099999996, - 4.779975099999996, - 4.779975099999996, - 4.779975099999996, - 4.779975099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996, - 4.779955099999996 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 14675
prediction: 1.841
MedInc: 0.4999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.375
MedInc: 0.644902

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.362
MedInc: 0.7899039999999999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.287
MedInc: 0.934906

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.268
MedInc: 1.079908

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.268
MedInc: 1.22491

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.27
MedInc: 1.369912

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.251
MedInc: 1.5149139999999999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.209
MedInc: 1.659916

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.232
MedInc: 1.804918

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.198
MedInc: 1.9499199999999999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.243
MedInc: 2.094922

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.215
MedInc: 2.2399240000000002

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.215
MedInc: 2.384926

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.15
MedInc: 2.529928

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.227
MedInc: 2.67493

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.214
MedInc: 2.8199319999999997

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.253
MedInc: 2.9649339999999995

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.127
MedInc: 3.1099360000000003

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.167
MedInc: 3.254938

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.223
MedInc: 3.39994

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.279
MedInc: 3.544942

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.424
MedInc: 3.6899439999999997

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.519
MedInc: 3.8349459999999995

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.604
MedInc: 3.9799480000000003

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.683
MedInc: 4.12495

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.687
MedInc: 4.269952

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.723
MedInc: 4.414954

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.701
MedInc: 4.559956

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.716
MedInc: 4.704958

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.731
MedInc: 4.84996

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.76
MedInc: 4.994962

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.872
MedInc: 5.139964

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.907
MedInc: 5.284966

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.929
MedInc: 5.429968

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.961
MedInc: 5.5749699999999995

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 2.219
MedInc: 5.719972

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 2.378
MedInc: 5.864974

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 2.37
MedInc: 6.009976

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 2.559
MedInc: 6.154978

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 2.623
MedInc: 6.29998

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 2.595
MedInc: 6.4449819999999995

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 2.687
MedInc: 6.589984

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 2.641
MedInc: 6.734986

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.083
MedInc: 6.879988

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 2.993
MedInc: 7.02499

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.01
MedInc: 7.169992

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.065
MedInc: 7.3149939999999996

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.131
MedInc: 7.459996

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.172
MedInc: 7.604998

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.325
MedInc: 7.75

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.514
MedInc: 7.895002

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.544
MedInc: 8.040004

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.556
MedInc: 8.185006

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.642
MedInc: 8.330008

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.778
MedInc: 8.47501

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.801
MedInc: 8.620012

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.788
MedInc: 8.765013999999999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.889
MedInc: 8.910016

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 3.985
MedInc: 9.055018

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.287
MedInc: 9.20002

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.294
MedInc: 9.345022

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.297
MedInc: 9.490024

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.279
MedInc: 9.635026

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.427
MedInc: 9.780028

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.442
MedInc: 9.92503

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.465
MedInc: 10.070032

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.594
MedInc: 10.215034

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.623
MedInc: 10.360036

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.531
MedInc: 10.505037999999999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.421
MedInc: 10.650039999999999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.715
MedInc: 10.795042

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.71
MedInc: 10.940044

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.735
MedInc: 11.085046

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.742
MedInc: 11.230048

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.742
MedInc: 11.37505

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.732
MedInc: 11.520052

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 11.665054

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 11.810056

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 11.955058

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 12.10006

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 12.245061999999999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 12.390063999999999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 12.535065999999999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 12.680068

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 12.82507

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 12.970072

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 13.115074

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 13.260076

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 13.405078

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 13.55008

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 13.695082

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 13.840084

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 13.985085999999999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 14.130087999999999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 14.275089999999999

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 14.420092

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 14.565094

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 14.710096

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 14.855098

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 4.743
MedInc: 15.0001

HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
AveOccup: 4.690756302521009
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.8412014000000005, - 1.3748501, - 1.3624800000000001, - 1.2865700000000004, - 1.26769, - 1.26769, - 1.27021, - 1.25112, - 1.2087700000000003, - 1.2324300000000001, - 1.19755, - 1.24282, - 1.2152500000000002, - 1.2146, - 1.1499499999999991, - 1.2267299999999997, - 1.2139799999999996, - 1.2531799999999997, - 1.1269699999999994, - 1.167489999999999, - 1.223429999999999, - 1.279049999999999, - 1.4239700000000002, - 1.5191200000000002, - 1.603930000000001, - 1.6825800000000006, - 1.6868400000000006, - 1.7226400000000006, - 1.7014400000000003, - 1.7161400000000002, - 1.7309199999999996, - 1.7603999999999993, - 1.8721900000000007, - 1.907190000000002, - 1.928680000000001, - 1.9612200000000013, - 2.2194100000000008, - 2.378440000000001, - 2.3699600000000007, - 2.55869, - 2.622920000000001, - 2.5949699999999996, - 2.6872499999999997, - 2.640649999999999, - 3.0825303999999987, - 2.9928602000000013, - 3.0099002000000015, - 3.0650502, - 3.1310103000000002, - 3.1720702999999997, - 3.3247703999999993, - 3.514360200000001, - 3.5441502000000003, - 3.555650200000001, - 3.6420403000000015, - 3.7775602000000026, - 3.8006804000000023, - 3.7882003000000024, - 3.889201, - 3.9851411999999975, - 4.287461099999999, - 4.2937811, - 4.2966812, - 4.278951299999999, - 4.427242099999999, - 4.442052099999999, - 4.464582299999999, - 4.594163, - 4.622943, - 4.531012900000001, - 4.421102600000001, - 4.715454399999998, - 4.709664299999997, - 4.735214499999997, - 4.742144899999997, - 4.742144899999997, - 4.732104899999997, - 4.742844999999997, - 4.742844999999997, - 4.742844999999997, - 4.742844999999997, - 4.742844999999997, - 4.742844999999997, - 4.742844999999997, - 4.742844999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997, - 4.742824999999997 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 5325
prediction: 2.728
MedInc: 0.4999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.39
MedInc: 0.644902

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.103
MedInc: 0.7899039999999999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.103
MedInc: 0.934906

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.103
MedInc: 1.079908

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.103
MedInc: 1.22491

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.095
MedInc: 1.369912

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.095
MedInc: 1.5149139999999999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.071
MedInc: 1.659916

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.047
MedInc: 1.804918

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.07
MedInc: 1.9499199999999999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.07
MedInc: 2.094922

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.082
MedInc: 2.2399240000000002

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.207
MedInc: 2.384926

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.608
MedInc: 2.529928

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.671
MedInc: 2.67493

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.745
MedInc: 2.8199319999999997

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.827
MedInc: 2.9649339999999995

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.904
MedInc: 3.1099360000000003

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.864
MedInc: 3.254938

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.884
MedInc: 3.39994

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 2.94
MedInc: 3.544942

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.142
MedInc: 3.6899439999999997

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.29
MedInc: 3.8349459999999995

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.544
MedInc: 3.9799480000000003

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.725
MedInc: 4.12495

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.765
MedInc: 4.269952

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.793
MedInc: 4.414954

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.859
MedInc: 4.559956

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.918
MedInc: 4.704958

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.887
MedInc: 4.84996

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.855
MedInc: 4.994962

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.226
MedInc: 5.139964

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.328
MedInc: 5.284966

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.3
MedInc: 5.429968

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.359
MedInc: 5.5749699999999995

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.455
MedInc: 5.719972

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.653
MedInc: 5.864974

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.572
MedInc: 6.009976

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.542
MedInc: 6.154978

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.51
MedInc: 6.29998

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.663
MedInc: 6.4449819999999995

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.66
MedInc: 6.589984

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.645
MedInc: 6.734986

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.409
MedInc: 6.879988

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.662
MedInc: 7.02499

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.595
MedInc: 7.169992

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.654
MedInc: 7.3149939999999996

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.659
MedInc: 7.459996

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.658
MedInc: 7.604998

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.756
MedInc: 7.75

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.853
MedInc: 7.895002

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.854
MedInc: 8.040004

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.854
MedInc: 8.185006

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.842
MedInc: 8.330008

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.856
MedInc: 8.47501

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.855
MedInc: 8.620012

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.81
MedInc: 8.765013999999999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.86
MedInc: 8.910016

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.881
MedInc: 9.055018

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.903
MedInc: 9.20002

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.882
MedInc: 9.345022

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.869
MedInc: 9.490024

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.701
MedInc: 9.635026

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.919
MedInc: 9.780028

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.92
MedInc: 9.92503

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.911
MedInc: 10.070032

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.968
MedInc: 10.215034

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 10.360036

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 10.505037999999999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 10.650039999999999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 10.795042

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 10.940044

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 11.085046

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 11.230048

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 11.37505

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 11.520052

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 11.665054

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 11.810056

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 11.955058

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 12.10006

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 12.245061999999999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 12.390063999999999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 12.535065999999999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 12.680068

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 12.82507

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 12.970072

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 13.115074

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 13.260076

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 13.405078

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 13.55008

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 13.695082

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 13.840084

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 13.985085999999999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 14.130087999999999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 14.275089999999999

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 14.420092

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 14.565094

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 14.710096

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 14.855098

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.976
MedInc: 15.0001

HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
AveOccup: 2.3349514563106797
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.7283016999999994, - 2.3899706999999997, - 2.1033901, - 2.1033901, - 2.1033901, - 2.1033901, - 2.0947001, - 2.0950100999999997, - 2.0709801, - 2.0468200999999997, - 2.0703500999999997, - 2.0697101, - 2.0824101000000006, - 2.2066204, - 2.6075813, - 2.671231599999999, - 2.7447117000000003, - 2.8274720000000015, - 2.9042209000000008, - 2.8637601999999993, - 2.8839501999999997, - 2.9398503, - 3.141660999999999, - 3.290411499999999, - 3.5442812999999997, - 3.7251111999999993, - 3.7654208, - 3.7928510999999987, - 3.858751, - 3.9181511, - 3.8869211999999993, - 3.8546210999999975, - 4.226010699999999, - 4.328280899999998, - 4.300301, - 4.359010999999999, - 4.454670999999999, - 4.652540500000001, - 4.5721805, - 4.542401399999999, - 4.5103326999999975, - 4.662564199999996, - 4.659984099999996, - 4.6450146999999955, - 4.409353999999996, - 4.662005499999993, - 4.5949049999999945, - 4.653715299999993, - 4.658795599999993, - 4.6580852999999935, - 4.755816499999992, - 4.853047899999992, - 4.854347899999991, - 4.853847899999991, - 4.841617399999991, - 4.855587599999992, - 4.855077799999992, - 4.809607499999991, - 4.859548199999991, - 4.88074869999999, - 4.902628799999991, - 4.881978699999991, - 4.868868499999991, - 4.700886999999994, - 4.91924899999999, - 4.91952909999999, - 4.911208999999991, - 4.9682194999999885, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988, - 4.975619599999988 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 5710
prediction: 1.721
MedInc: 0.4999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.721
MedInc: 0.644902

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.695
MedInc: 0.7899039999999999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.702
MedInc: 0.934906

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.669
MedInc: 1.079908

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.707
MedInc: 1.22491

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.736
MedInc: 1.369912

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.719
MedInc: 1.5149139999999999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.763
MedInc: 1.659916

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.769
MedInc: 1.804918

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.85
MedInc: 1.9499199999999999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.903
MedInc: 2.094922

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.97
MedInc: 2.2399240000000002

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.074
MedInc: 2.384926

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.024
MedInc: 2.529928

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.034
MedInc: 2.67493

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.081
MedInc: 2.8199319999999997

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.109
MedInc: 2.9649339999999995

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.257
MedInc: 3.1099360000000003

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.362
MedInc: 3.254938

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.417
MedInc: 3.39994

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.433
MedInc: 3.544942

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.45
MedInc: 3.6899439999999997

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.536
MedInc: 3.8349459999999995

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.772
MedInc: 3.9799480000000003

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.937
MedInc: 4.12495

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.972
MedInc: 4.269952

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.001
MedInc: 4.414954

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.067
MedInc: 4.559956

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.155
MedInc: 4.704958

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.219
MedInc: 4.84996

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.23
MedInc: 4.994962

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.493
MedInc: 5.139964

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.5
MedInc: 5.284966

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.415
MedInc: 5.429968

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.403
MedInc: 5.5749699999999995

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.393
MedInc: 5.719972

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.391
MedInc: 5.864974

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.385
MedInc: 6.009976

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.514
MedInc: 6.154978

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.798
MedInc: 6.29998

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.009
MedInc: 6.4449819999999995

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.033
MedInc: 6.589984

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.113
MedInc: 6.734986

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.927
MedInc: 6.879988

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.199
MedInc: 7.02499

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.182
MedInc: 7.169992

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.172
MedInc: 7.3149939999999996

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.156
MedInc: 7.459996

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.103
MedInc: 7.604998

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.175
MedInc: 7.75

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.457
MedInc: 7.895002

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.445
MedInc: 8.040004

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.459
MedInc: 8.185006

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.435
MedInc: 8.330008

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.382
MedInc: 8.47501

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.364
MedInc: 8.620012

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.34
MedInc: 8.765013999999999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.314
MedInc: 8.910016

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.273
MedInc: 9.055018

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.346
MedInc: 9.20002

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.326
MedInc: 9.345022

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.331
MedInc: 9.490024

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.227
MedInc: 9.635026

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.35
MedInc: 9.780028

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.326
MedInc: 9.92503

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.334
MedInc: 10.070032

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.352
MedInc: 10.215034

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.352
MedInc: 10.360036

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.352
MedInc: 10.505037999999999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.352
MedInc: 10.650039999999999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.352
MedInc: 10.795042

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.352
MedInc: 10.940044

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.352
MedInc: 11.085046

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.352
MedInc: 11.230048

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 11.37505

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 11.520052

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 11.665054

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 11.810056

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 11.955058

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 12.10006

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 12.245061999999999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 12.390063999999999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 12.535065999999999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 12.680068

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 12.82507

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 12.970072

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 13.115074

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 13.260076

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 13.405078

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 13.55008

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 13.695082

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 13.840084

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 13.985085999999999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 14.130087999999999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 14.275089999999999

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 14.420092

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 14.565094

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 14.710096

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 14.855098

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 4.358
MedInc: 15.0001

HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
AveOccup: 2.2253886010362693
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.7209101000000002, - 1.7209101000000002, - 1.69537, - 1.7016199999999997, - 1.66874, - 1.70684, - 1.7358699999999998, - 1.71886, - 1.7629299999999999, - 1.76946, - 1.8498500000000002, - 1.9028500000000006, - 1.9695800000000008, - 2.0737900000000007, - 2.023850000000001, - 2.034420000000001, - 2.0809200000000008, - 2.10902, - 2.2570800000000015, - 2.3620200000000025, - 2.417240000000003, - 2.432890000000002, - 2.449890000000002, - 2.5359401000000013, - 2.7724101000000005, - 2.936720199999999, - 2.9719200999999993, - 3.001040199999999, - 3.0666700999999996, - 3.1547300999999988, - 3.2185000999999995, - 3.2296501, - 3.492720099999997, - 3.500360599999996, - 3.4152702999999973, - 3.4027600999999974, - 3.3933000999999985, - 3.3908, - 3.3846701000000006, - 3.5140001999999995, - 3.7983505000000015, - 4.008581200000002, - 4.033321700000001, - 4.1128522, - 3.927481399999999, - 4.1994422999999985, - 4.181782199999998, - 4.172082199999998, - 4.155802099999998, - 4.103281699999999, - 4.1749221, - 4.456853799999999, - 4.4446736, - 4.459243300000001, - 4.4349338, - 4.381903999999999, - 4.3636542999999985, - 4.339514199999998, - 4.313524999999997, - 4.272755699999997, - 4.346236699999995, - 4.325586599999996, - 4.331236599999996, - 4.227295599999997, - 4.349586999999995, - 4.3258369999999955, - 4.334247099999995, - 4.352037299999995, - 4.352037299999995, - 4.352037299999995, - 4.352037299999995, - 4.352037299999995, - 4.352037299999995, - 4.352037299999995, - 4.352037299999995, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994, - 4.357637299999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 6001
prediction: 2.091
MedInc: 0.4999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.586
MedInc: 0.644902

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.255
MedInc: 0.7899039999999999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.255
MedInc: 0.934906

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.255
MedInc: 1.079908

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.255
MedInc: 1.22491

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.267
MedInc: 1.369912

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.267
MedInc: 1.5149139999999999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.271
MedInc: 1.659916

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.253
MedInc: 1.804918

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.254
MedInc: 1.9499199999999999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.271
MedInc: 2.094922

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.293
MedInc: 2.2399240000000002

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.36
MedInc: 2.384926

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.47
MedInc: 2.529928

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.463
MedInc: 2.67493

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.444
MedInc: 2.8199319999999997

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.473
MedInc: 2.9649339999999995

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.466
MedInc: 3.1099360000000003

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.501
MedInc: 3.254938

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.504
MedInc: 3.39994

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.51
MedInc: 3.544942

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.548
MedInc: 3.6899439999999997

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.559
MedInc: 3.8349459999999995

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.527
MedInc: 3.9799480000000003

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.46
MedInc: 4.12495

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.586
MedInc: 4.269952

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.623
MedInc: 4.414954

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.683
MedInc: 4.559956

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.784
MedInc: 4.704958

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.805
MedInc: 4.84996

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.885
MedInc: 4.994962

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 2.248
MedInc: 5.139964

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 2.255
MedInc: 5.284966

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 2.268
MedInc: 5.429968

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 2.332
MedInc: 5.5749699999999995

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 2.49
MedInc: 5.719972

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 2.664
MedInc: 5.864974

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 2.705
MedInc: 6.009976

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 2.923
MedInc: 6.154978

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.09
MedInc: 6.29998

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.159
MedInc: 6.4449819999999995

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.268
MedInc: 6.589984

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.427
MedInc: 6.734986

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.431
MedInc: 6.879988

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.718
MedInc: 7.02499

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.723
MedInc: 7.169992

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.752
MedInc: 7.3149939999999996

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.736
MedInc: 7.459996

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.865
MedInc: 7.604998

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.984
MedInc: 7.75

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.344
MedInc: 7.895002

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.345
MedInc: 8.040004

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.352
MedInc: 8.185006

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.442
MedInc: 8.330008

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.482
MedInc: 8.47501

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.422
MedInc: 8.620012

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.367
MedInc: 8.765013999999999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.391
MedInc: 8.910016

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.518
MedInc: 9.055018

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.551
MedInc: 9.20002

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.521
MedInc: 9.345022

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.524
MedInc: 9.490024

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.434
MedInc: 9.635026

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.589
MedInc: 9.780028

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.64
MedInc: 9.92503

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.643
MedInc: 10.070032

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.732
MedInc: 10.215034

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.739
MedInc: 10.360036

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.746
MedInc: 10.505037999999999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 10.650039999999999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 10.795042

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 10.940044

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 11.085046

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 11.230048

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 11.37505

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 11.520052

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 11.665054

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 11.810056

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 11.955058

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 12.10006

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 12.245061999999999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 12.390063999999999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 12.535065999999999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 12.680068

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 12.82507

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 12.970072

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 13.115074

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 13.260076

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 13.405078

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 13.55008

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 13.695082

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 13.840084

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 13.985085999999999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 14.130087999999999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 14.275089999999999

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 14.420092

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 14.565094

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 14.710096

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 14.855098

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.758
MedInc: 15.0001

HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
AveOccup: 3.067889908256881
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.0910919999999997, - 1.5860006000000006, - 1.2551100000000008, - 1.2551100000000008, - 1.2551100000000008, - 1.254820000000001, - 1.2665000000000008, - 1.2672400000000008, - 1.2706500000000007, - 1.2525500000000007, - 1.2544400000000007, - 1.2713800000000008, - 1.2929600000000006, - 1.3597400000000008, - 1.4699800000000005, - 1.4631300000000003, - 1.4438000000000009, - 1.47329, - 1.46625, - 1.500960000000001, - 1.5038100000000008, - 1.5096400000000008, - 1.5475300000000005, - 1.5592100000000009, - 1.5272700000000003, - 1.4595299999999989, - 1.5863899999999986, - 1.6231499999999985, - 1.6827699999999985, - 1.7839499999999984, - 1.8049299999999981, - 1.8847699999999987, - 2.248199999999999, - 2.2552599999999994, - 2.26811, - 2.331609999999999, - 2.489830199999999, - 2.6642304000000014, - 2.7046604000000007, - 2.923320600000001, - 3.0898307, - 3.158500799999999, - 3.2679309, - 3.427130800000002, - 3.4305507000000013, - 3.7176108, - 3.7226309, - 3.7521911, - 3.7359810000000007, - 3.8649712, - 3.9843423000000002, - 4.343623299999999, - 4.344533699999997, - 4.352013799999997, - 4.441904499999996, - 4.482214599999995, - 4.422344199999995, - 4.366933999999997, - 4.3905438999999955, - 4.517615099999994, - 4.551395299999995, - 4.5208251999999955, - 4.524495099999996, - 4.434284499999996, - 4.588855699999994, - 4.639655999999993, - 4.643455999999993, - 4.731697099999994, - 4.738847199999993, - 4.745997299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.757757299999993, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925, - 4.7577372999999925 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 14112
prediction: 1.545
MedInc: 0.4999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.148
MedInc: 0.644902

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.115
MedInc: 0.7899039999999999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.035
MedInc: 0.934906

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.016
MedInc: 1.079908

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.015
MedInc: 1.22491

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.016
MedInc: 1.369912

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.003
MedInc: 1.5149139999999999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 0.962
MedInc: 1.659916

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 0.981
MedInc: 1.804918

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.001
MedInc: 1.9499199999999999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.048
MedInc: 2.094922

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.014
MedInc: 2.2399240000000002

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.077
MedInc: 2.384926

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.211
MedInc: 2.529928

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.292
MedInc: 2.67493

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.285
MedInc: 2.8199319999999997

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.32
MedInc: 2.9649339999999995

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.246
MedInc: 3.1099360000000003

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.338
MedInc: 3.254938

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.382
MedInc: 3.39994

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.413
MedInc: 3.544942

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.426
MedInc: 3.6899439999999997

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.473
MedInc: 3.8349459999999995

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.549
MedInc: 3.9799480000000003

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.521
MedInc: 4.12495

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.53
MedInc: 4.269952

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.548
MedInc: 4.414954

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.555
MedInc: 4.559956

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.551
MedInc: 4.704958

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.574
MedInc: 4.84996

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.595
MedInc: 4.994962

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.557
MedInc: 5.139964

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.599
MedInc: 5.284966

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.638
MedInc: 5.429968

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.643
MedInc: 5.5749699999999995

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 2.019
MedInc: 5.719972

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 2.297
MedInc: 5.864974

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 2.31
MedInc: 6.009976

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 2.536
MedInc: 6.154978

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 2.646
MedInc: 6.29998

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 2.627
MedInc: 6.4449819999999995

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 2.663
MedInc: 6.589984

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 2.637
MedInc: 6.734986

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.076
MedInc: 6.879988

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 2.995
MedInc: 7.02499

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 2.996
MedInc: 7.169992

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.031
MedInc: 7.3149939999999996

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.118
MedInc: 7.459996

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.189
MedInc: 7.604998

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.324
MedInc: 7.75

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.49
MedInc: 7.895002

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.493
MedInc: 8.040004

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.549
MedInc: 8.185006

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.616
MedInc: 8.330008

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.661
MedInc: 8.47501

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.628
MedInc: 8.620012

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.605
MedInc: 8.765013999999999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.714
MedInc: 8.910016

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.911
MedInc: 9.055018

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.984
MedInc: 9.20002

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.991
MedInc: 9.345022

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.992
MedInc: 9.490024

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 3.95
MedInc: 9.635026

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.07
MedInc: 9.780028

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.043
MedInc: 9.92503

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.043
MedInc: 10.070032

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.079
MedInc: 10.215034

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.086
MedInc: 10.360036

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.092
MedInc: 10.505037999999999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.102
MedInc: 10.650039999999999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.102
MedInc: 10.795042

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.101
MedInc: 10.940044

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.105
MedInc: 11.085046

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.106
MedInc: 11.230048

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.111
MedInc: 11.37505

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.111
MedInc: 11.520052

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.111
MedInc: 11.665054

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.111
MedInc: 11.810056

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.111
MedInc: 11.955058

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.111
MedInc: 12.10006

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.111
MedInc: 12.245061999999999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.111
MedInc: 12.390063999999999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.111
MedInc: 12.535065999999999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.111
MedInc: 12.680068

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.111
MedInc: 12.82507

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.111
MedInc: 12.970072

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.113
MedInc: 13.115074

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.113
MedInc: 13.260076

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.113
MedInc: 13.405078

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.113
MedInc: 13.55008

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.121
MedInc: 13.695082

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.121
MedInc: 13.840084

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.121
MedInc: 13.985085999999999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.121
MedInc: 14.130087999999999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.121
MedInc: 14.275089999999999

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.121
MedInc: 14.420092

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.121
MedInc: 14.565094

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.121
MedInc: 14.710096

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.121
MedInc: 14.855098

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 4.121
MedInc: 15.0001

HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
AveOccup: 3.5949367088607596
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.5454611999999996, - 1.1481500999999996, - 1.1145100000000001, - 1.03497, - 1.0162099999999998, - 1.0151399999999997, - 1.0164699999999995, - 1.0027099999999993, - 0.9617899999999995, - 0.9810099999999993, - 1.0010399999999993, - 1.0481299999999991, - 1.013939999999999, - 1.0769099999999994, - 1.21077, - 1.2922900000000002, - 1.2846800000000003, - 1.3198600000000005, - 1.2459300000000006, - 1.3382900000000004, - 1.3815400000000004, - 1.4126800000000004, - 1.4261100000000002, - 1.4731900000000004, - 1.54923, - 1.52055, - 1.52985, - 1.5482800000000003, - 1.5553099999999997, - 1.55126, - 1.5735100000000002, - 1.5948299999999997, - 1.5565199999999997, - 1.5993899999999996, - 1.6381399999999993, - 1.6426699999999996, - 2.0188800000000002, - 2.29714, - 2.3098199999999998, - 2.536249999999999, - 2.64616, - 2.627389999999999, - 2.6633599999999995, - 2.637449999999999, - 3.0755903999999985, - 2.9947803000000004, - 2.9959503000000005, - 3.0307803, - 3.1181004000000008, - 3.188590500000001, - 3.3241807000000008, - 3.4896609, - 3.4933007999999988, - 3.5485608999999982, - 3.615801299999997, - 3.660531299999997, - 3.627911199999998, - 3.6048611999999975, - 3.7137919999999984, - 3.9109126999999977, - 3.9838829999999983, - 3.990963199999998, - 3.9923030999999987, - 3.9502425, - 4.070393200000001, - 4.0425132, - 4.0425132, - 4.079223099999999, - 4.0857231999999994, - 4.0916131, - 4.1024832, - 4.1024832, - 4.101203099999999, - 4.1053631, - 4.1058232, - 4.111423199999999, - 4.111423199999999, - 4.111423199999999, - 4.111423199999999, - 4.111423199999999, - 4.111423199999999, - 4.111423199999999, - 4.111423199999999, - 4.111423199999999, - 4.111423199999999, - 4.111403199999999, - 4.111403199999999, - 4.1126833, - 4.1126833, - 4.1126833, - 4.1126833, - 4.121013399999999, - 4.121013399999999, - 4.121013399999999, - 4.121013399999999, - 4.121013399999999, - 4.121013399999999, - 4.121013399999999, - 4.121013399999999, - 4.121013399999999, - 4.121013399999999 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 11419
prediction: 2.724
MedInc: 0.4999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.321
MedInc: 0.644902

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.116
MedInc: 0.7899039999999999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.116
MedInc: 0.934906

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.116
MedInc: 1.079908

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.115
MedInc: 1.22491

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.115
MedInc: 1.369912

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.115
MedInc: 1.5149139999999999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.115
MedInc: 1.659916

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.034
MedInc: 1.804918

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.027
MedInc: 1.9499199999999999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.014
MedInc: 2.094922

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.057
MedInc: 2.2399240000000002

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.189
MedInc: 2.384926

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.281
MedInc: 2.529928

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.3
MedInc: 2.67493

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.291
MedInc: 2.8199319999999997

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.349
MedInc: 2.9649339999999995

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.608
MedInc: 3.1099360000000003

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.463
MedInc: 3.254938

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.49
MedInc: 3.39994

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.521
MedInc: 3.544942

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.49
MedInc: 3.6899439999999997

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.567
MedInc: 3.8349459999999995

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.72
MedInc: 3.9799480000000003

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.07
MedInc: 4.12495

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.311
MedInc: 4.269952

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.348
MedInc: 4.414954

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.472
MedInc: 4.559956

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.324
MedInc: 4.704958

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.285
MedInc: 4.84996

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.262
MedInc: 4.994962

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.714
MedInc: 5.139964

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.525
MedInc: 5.284966

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.594
MedInc: 5.429968

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.666
MedInc: 5.5749699999999995

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.744
MedInc: 5.719972

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.826
MedInc: 5.864974

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.845
MedInc: 6.009976

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.986
MedInc: 6.154978

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.022
MedInc: 6.29998

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.027
MedInc: 6.4449819999999995

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.139
MedInc: 6.589984

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.203
MedInc: 6.734986

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.441
MedInc: 6.879988

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.491
MedInc: 7.02499

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.498
MedInc: 7.169992

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.509
MedInc: 7.3149939999999996

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.583
MedInc: 7.459996

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.667
MedInc: 7.604998

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.877
MedInc: 7.75

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.905
MedInc: 7.895002

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.977
MedInc: 8.040004

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.979
MedInc: 8.185006

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.048
MedInc: 8.330008

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.063
MedInc: 8.47501

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.021
MedInc: 8.620012

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.981
MedInc: 8.765013999999999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.023
MedInc: 8.910016

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.313
MedInc: 9.055018

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.572
MedInc: 9.20002

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.623
MedInc: 9.345022

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.633
MedInc: 9.490024

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.582
MedInc: 9.635026

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.801
MedInc: 9.780028

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.843
MedInc: 9.92503

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.872
MedInc: 10.070032

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.879
MedInc: 10.215034

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.879
MedInc: 10.360036

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.819
MedInc: 10.505037999999999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.732
MedInc: 10.650039999999999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.912
MedInc: 10.795042

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.909
MedInc: 10.940044

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.93
MedInc: 11.085046

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.936
MedInc: 11.230048

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.936
MedInc: 11.37505

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.926
MedInc: 11.520052

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 11.665054

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 11.810056

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 11.955058

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 12.10006

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 12.245061999999999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 12.390063999999999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 12.535065999999999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 12.680068

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 12.82507

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 12.970072

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 13.115074

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 13.260076

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 13.405078

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 13.55008

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 13.695082

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 13.840084

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 13.985085999999999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 14.130087999999999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 14.275089999999999

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 14.420092

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 14.565094

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 14.710096

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 14.855098

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.941
MedInc: 15.0001

HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
AveOccup: 3.053240740740741
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.723572, - 2.321220799999999, - 2.1161404999999998, - 2.1161404999999998, - 2.1161404999999998, - 2.1152504999999997, - 2.1148904999999996, - 2.1148904999999996, - 2.1148904999999996, - 2.0344203999999992, - 2.026550399999999, - 2.0136002999999993, - 2.0569401999999997, - 2.1891002, - 2.2814800999999996, - 2.3004700999999996, - 2.290660099999999, - 2.349180099999999, - 2.608050099999998, - 2.4634500999999993, - 2.490050099999999, - 2.5207100999999996, - 2.490230099999999, - 2.5671302999999983, - 2.7199106999999985, - 3.070151899999999, - 3.3107525999999985, - 3.3483426999999977, - 3.4721931999999978, - 3.3239029999999987, - 3.285272999999999, - 3.2619626999999984, - 2.7137605999999987, - 2.525350099999999, - 2.5937399999999995, - 2.66559, - 2.7441599999999995, - 2.826319999999999, - 2.8451199999999988, - 2.985599999999999, - 3.021619999999999, - 3.0268300000000012, - 3.1391900000000015, - 3.2031699999999996, - 3.440500300000001, - 3.4906800000000002, - 3.4977000000000005, - 3.5094901, - 3.5833300999999995, - 3.6666102999999994, - 3.877261199999996, - 3.905431499999996, - 3.9774014999999974, - 3.979321299999998, - 4.048311799999999, - 4.0630313, - 4.020550999999999, - 3.981341199999999, - 4.023241599999999, - 4.312803299999997, - 4.571524099999997, - 4.622504699999996, - 4.6334249999999955, - 4.582034899999996, - 4.800506899999992, - 4.8428072999999925, - 4.872317799999991, - 4.879147199999994, - 4.879147199999994, - 4.818556999999995, - 4.731506499999995, - 4.911517299999993, - 4.909097199999993, - 4.9295973999999925, - 4.9360875999999925, - 4.9360875999999925, - 4.926047599999992, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915, - 4.9408978999999915 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 11326
prediction: 2.486
MedInc: 0.4999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.039
MedInc: 0.644902

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.812
MedInc: 0.7899039999999999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.812
MedInc: 0.934906

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.812
MedInc: 1.079908

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.811
MedInc: 1.22491

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.809
MedInc: 1.369912

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.803
MedInc: 1.5149139999999999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.807
MedInc: 1.659916

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.737
MedInc: 1.804918

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.718
MedInc: 1.9499199999999999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.703
MedInc: 2.094922

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.777
MedInc: 2.2399240000000002

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.812
MedInc: 2.384926

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.77
MedInc: 2.529928

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.761
MedInc: 2.67493

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.749
MedInc: 2.8199319999999997

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.726
MedInc: 2.9649339999999995

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.823
MedInc: 3.1099360000000003

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.812
MedInc: 3.254938

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.831
MedInc: 3.39994

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.791
MedInc: 3.544942

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.782
MedInc: 3.6899439999999997

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.849
MedInc: 3.8349459999999995

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.871
MedInc: 3.9799480000000003

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.93
MedInc: 4.12495

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.93
MedInc: 4.269952

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.925
MedInc: 4.414954

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.974
MedInc: 4.559956

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.025
MedInc: 4.704958

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.093
MedInc: 4.84996

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.205
MedInc: 4.994962

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.436
MedInc: 5.139964

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.495
MedInc: 5.284966

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.494
MedInc: 5.429968

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.499
MedInc: 5.5749699999999995

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.557
MedInc: 5.719972

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.593
MedInc: 5.864974

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.584
MedInc: 6.009976

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.69
MedInc: 6.154978

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.635
MedInc: 6.29998

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.728
MedInc: 6.4449819999999995

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.892
MedInc: 6.589984

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.962
MedInc: 6.734986

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.333
MedInc: 6.879988

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.347
MedInc: 7.02499

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.352
MedInc: 7.169992

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.389
MedInc: 7.3149939999999996

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.38
MedInc: 7.459996

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.451
MedInc: 7.604998

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.73
MedInc: 7.75

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.987
MedInc: 7.895002

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.996
MedInc: 8.040004

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.98
MedInc: 8.185006

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.042
MedInc: 8.330008

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.978
MedInc: 8.47501

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.892
MedInc: 8.620012

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.864
MedInc: 8.765013999999999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.872
MedInc: 8.910016

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 3.872
MedInc: 9.055018

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.011
MedInc: 9.20002

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.04
MedInc: 9.345022

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.046
MedInc: 9.490024

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.032
MedInc: 9.635026

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.095
MedInc: 9.780028

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.091
MedInc: 9.92503

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.122
MedInc: 10.070032

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.193
MedInc: 10.215034

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.198
MedInc: 10.360036

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.126
MedInc: 10.505037999999999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.079
MedInc: 10.650039999999999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.309
MedInc: 10.795042

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.309
MedInc: 10.940044

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.318
MedInc: 11.085046

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.327
MedInc: 11.230048

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.333
MedInc: 11.37505

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.334
MedInc: 11.520052

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 11.665054

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 11.810056

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 11.955058

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 12.10006

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 12.245061999999999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 12.390063999999999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 12.535065999999999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 12.680068

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 12.82507

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 12.970072

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 13.115074

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 13.260076

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 13.405078

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 13.55008

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 13.695082

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 13.840084

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 13.985085999999999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 14.130087999999999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 14.275089999999999

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 14.420092

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 14.565094

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 14.710096

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 14.855098

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 4.344
MedInc: 15.0001

HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
AveOccup: 3.316270566727605
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.4863321, - 2.0390406999999997, - 1.8119502999999997, - 1.8119502999999997, - 1.8119502999999997, - 1.8110602999999998, - 1.8090602999999998, - 1.8034803, - 1.8073403, - 1.7368701999999996, - 1.7180601999999996, - 1.7031700999999992, - 1.7770599999999994, - 1.812009999999999, - 1.769969999999999, - 1.7605899999999992, - 1.748899999999999, - 1.7264499999999996, - 1.8233299999999992, - 1.8119599999999993, - 1.831049999999999, - 1.7914199999999993, - 1.781579999999999, - 1.849389999999999, - 1.8711099999999994, - 1.92952, - 1.9296000000000004, - 1.92489, - 1.9740000000000004, - 2.0254600000000003, - 2.093470000000001, - 2.2054301000000005, - 2.43634, - 2.4951299999999996, - 2.49373, - 2.4985899999999996, - 2.5567600000000015, - 2.5933202, - 2.5836501000000003, - 2.6897799999999994, - 2.63463, - 2.7279400000000003, - 2.892460299999999, - 2.9618302999999986, - 3.333200599999998, - 3.346510499999998, - 3.3522804999999987, - 3.389080499999998, - 3.379710499999999, - 3.451210699999998, - 3.7302716999999985, - 3.987321799999998, - 3.9962217999999985, - 3.9801817999999973, - 4.041761699999999, - 3.977621599999998, - 3.8924515999999985, - 3.8644214999999984, - 3.871681799999998, - 3.8724121999999968, - 4.011212599999997, - 4.0395727999999975, - 4.046442999999997, - 4.031632999999998, - 4.094613399999997, - 4.090523499999997, - 4.121823799999997, - 4.1928040999999965, - 4.198394199999996, - 4.125753899999996, - 4.078772999999997, - 4.309255199999995, - 4.309255199999995, - 4.318304999999996, - 4.3271155999999955, - 4.332715599999995, - 4.333585599999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995, - 4.344325699999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 14541
prediction: 1.775
MedInc: 0.4999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.386
MedInc: 0.644902

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.373
MedInc: 0.7899039999999999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.307
MedInc: 0.934906

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.287
MedInc: 1.079908

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.287
MedInc: 1.22491

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.288
MedInc: 1.369912

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.268
MedInc: 1.5149139999999999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.243
MedInc: 1.659916

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.244
MedInc: 1.804918

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.241
MedInc: 1.9499199999999999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.315
MedInc: 2.094922

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.323
MedInc: 2.2399240000000002

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.39
MedInc: 2.384926

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.492
MedInc: 2.529928

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.501
MedInc: 2.67493

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.481
MedInc: 2.8199319999999997

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.502
MedInc: 2.9649339999999995

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.511
MedInc: 3.1099360000000003

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.686
MedInc: 3.254938

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.696
MedInc: 3.39994

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.734
MedInc: 3.544942

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.82
MedInc: 3.6899439999999997

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.874
MedInc: 3.8349459999999995

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.859
MedInc: 3.9799480000000003

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.69
MedInc: 4.12495

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.691
MedInc: 4.269952

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.723
MedInc: 4.414954

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.748
MedInc: 4.559956

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.764
MedInc: 4.704958

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.814
MedInc: 4.84996

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.788
MedInc: 4.994962

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
MedInc: 5.139964

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.762
MedInc: 5.284966

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.798
MedInc: 5.429968

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.885
MedInc: 5.5749699999999995

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.065
MedInc: 5.719972

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.224
MedInc: 5.864974

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.239
MedInc: 6.009976

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.461
MedInc: 6.154978

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.597
MedInc: 6.29998

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.573
MedInc: 6.4449819999999995

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.6
MedInc: 6.589984

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.573
MedInc: 6.734986

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.02
MedInc: 6.879988

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.965
MedInc: 7.02499

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.994
MedInc: 7.169992

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.039
MedInc: 7.3149939999999996

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.093
MedInc: 7.459996

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.125
MedInc: 7.604998

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.281
MedInc: 7.75

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.494
MedInc: 7.895002

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.505
MedInc: 8.040004

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.511
MedInc: 8.185006

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.547
MedInc: 8.330008

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.658
MedInc: 8.47501

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.645
MedInc: 8.620012

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.622
MedInc: 8.765013999999999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.657
MedInc: 8.910016

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 3.838
MedInc: 9.055018

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.139
MedInc: 9.20002

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.154
MedInc: 9.345022

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.151
MedInc: 9.490024

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.124
MedInc: 9.635026

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.229
MedInc: 9.780028

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.289
MedInc: 9.92503

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.35
MedInc: 10.070032

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.426
MedInc: 10.215034

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.434
MedInc: 10.360036

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.335
MedInc: 10.505037999999999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.237
MedInc: 10.650039999999999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.57
MedInc: 10.795042

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.564
MedInc: 10.940044

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.587
MedInc: 11.085046

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.595
MedInc: 11.230048

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.595
MedInc: 11.37505

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.596
MedInc: 11.520052

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.607
MedInc: 11.665054

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.607
MedInc: 11.810056

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.607
MedInc: 11.955058

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.607
MedInc: 12.10006

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.607
MedInc: 12.245061999999999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.607
MedInc: 12.390063999999999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.607
MedInc: 12.535065999999999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 12.680068

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 12.82507

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 12.970072

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 13.115074

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 13.260076

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 13.405078

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 13.55008

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 13.695082

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 13.840084

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 13.985085999999999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 14.130087999999999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 14.275089999999999

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 14.420092

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 14.565094

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 14.710096

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 14.855098

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 4.609
MedInc: 15.0001

HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
AveOccup: 3.6412776412776413
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.7749212000000008, - 1.3863201000000003, - 1.37281, - 1.3070600000000006, - 1.2870500000000005, - 1.2870500000000005, - 1.2884000000000002, - 1.2676600000000005, - 1.2426300000000006, - 1.2439200000000006, - 1.2407300000000006, - 1.315350000000001, - 1.3232200000000005, - 1.3903400000000001, - 1.4919199999999997, - 1.5012900000000002, - 1.48108, - 1.5020300000000004, - 1.5111999999999997, - 1.6859999999999993, - 1.6963399999999995, - 1.73372, - 1.8195500000000004, - 1.8740900000000005, - 1.8594900000000008, - 1.69047, - 1.6911399999999999, - 1.7228899999999996, - 1.748089999999999, - 1.7643399999999991, - 1.8140999999999994, - 1.78815, - 1.7729100000000004, - 1.762380000000001, - 1.7982000000000005, - 1.8853000000000002, - 2.06464, - 2.2235700000000014, - 2.239170000000001, - 2.46131, - 2.59654, - 2.5726099999999996, - 2.5995099999999995, - 2.5725799999999994, - 3.0196105000000006, - 2.9647203000000015, - 2.9941403000000006, - 3.0388103, - 3.093190299999999, - 3.1245702999999994, - 3.2806702999999984, - 3.4941800999999977, - 3.504690099999998, - 3.511350099999999, - 3.5466601999999994, - 3.6577800000000003, - 3.6451700000000007, - 3.6219799999999998, - 3.656530399999998, - 3.8377609999999964, - 4.1390311, - 4.153501100000001, - 4.1505312000000005, - 4.124321200000001, - 4.229261700000001, - 4.289282000000001, - 4.350152500000002, - 4.425992900000001, - 4.433613000000001, - 4.335172700000004, - 4.236942400000002, - 4.570214199999999, - 4.564424099999999, - 4.5865440999999985, - 4.595354699999998, - 4.595354699999998, - 4.596224699999998, - 4.606964799999997, - 4.606964799999997, - 4.606964799999997, - 4.606964799999997, - 4.606964799999997, - 4.606964799999997, - 4.606964799999997, - 4.609204899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997, - 4.609184899999997 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 3618
prediction: 1.916
MedInc: 0.4999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.716
MedInc: 0.644902

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.716
MedInc: 0.7899039999999999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.677
MedInc: 0.934906

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.581
MedInc: 1.079908

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.554
MedInc: 1.22491

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.55
MedInc: 1.369912

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.53
MedInc: 1.5149139999999999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.534
MedInc: 1.659916

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.514
MedInc: 1.804918

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.498
MedInc: 1.9499199999999999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.458
MedInc: 2.094922

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.396
MedInc: 2.2399240000000002

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.394
MedInc: 2.384926

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.418
MedInc: 2.529928

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.441
MedInc: 2.67493

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.445
MedInc: 2.8199319999999997

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.414
MedInc: 2.9649339999999995

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.34
MedInc: 3.1099360000000003

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.249
MedInc: 3.254938

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.273
MedInc: 3.39994

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.282
MedInc: 3.544942

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.298
MedInc: 3.6899439999999997

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.342
MedInc: 3.8349459999999995

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.376
MedInc: 3.9799480000000003

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.531
MedInc: 4.12495

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.602
MedInc: 4.269952

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.628
MedInc: 4.414954

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.665
MedInc: 4.559956

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.774
MedInc: 4.704958

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.794
MedInc: 4.84996

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.939
MedInc: 4.994962

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.933
MedInc: 5.139964

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.922
MedInc: 5.284966

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.906
MedInc: 5.429968

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.937
MedInc: 5.5749699999999995

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 2.192
MedInc: 5.719972

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 2.256
MedInc: 5.864974

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 2.279
MedInc: 6.009976

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 2.385
MedInc: 6.154978

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 2.428
MedInc: 6.29998

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 2.546
MedInc: 6.4449819999999995

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 2.683
MedInc: 6.589984

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 2.924
MedInc: 6.734986

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.254
MedInc: 6.879988

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.609
MedInc: 7.02499

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.67
MedInc: 7.169992

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.633
MedInc: 7.3149939999999996

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.6
MedInc: 7.459996

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.581
MedInc: 7.604998

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.716
MedInc: 7.75

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.759
MedInc: 7.895002

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.758
MedInc: 8.040004

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.81
MedInc: 8.185006

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.857
MedInc: 8.330008

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.892
MedInc: 8.47501

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.875
MedInc: 8.620012

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.875
MedInc: 8.765013999999999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.853
MedInc: 8.910016

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.879
MedInc: 9.055018

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.856
MedInc: 9.20002

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.865
MedInc: 9.345022

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.871
MedInc: 9.490024

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.857
MedInc: 9.635026

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.978
MedInc: 9.780028

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.96
MedInc: 9.92503

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.986
MedInc: 10.070032

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.02
MedInc: 10.215034

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.02
MedInc: 10.360036

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.061
MedInc: 10.505037999999999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.073
MedInc: 10.650039999999999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.073
MedInc: 10.795042

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.074
MedInc: 10.940044

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.074
MedInc: 11.085046

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.074
MedInc: 11.230048

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.08
MedInc: 11.37505

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.08
MedInc: 11.520052

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.08
MedInc: 11.665054

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.08
MedInc: 11.810056

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.08
MedInc: 11.955058

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.08
MedInc: 12.10006

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.08
MedInc: 12.245061999999999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.08
MedInc: 12.390063999999999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.08
MedInc: 12.535065999999999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.08
MedInc: 12.680068

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.08
MedInc: 12.82507

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.08
MedInc: 12.970072

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.081
MedInc: 13.115074

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.081
MedInc: 13.260076

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.081
MedInc: 13.405078

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.081
MedInc: 13.55008

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.09
MedInc: 13.695082

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.09
MedInc: 13.840084

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.09
MedInc: 13.985085999999999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.09
MedInc: 14.130087999999999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.09
MedInc: 14.275089999999999

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.09
MedInc: 14.420092

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.09
MedInc: 14.565094

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.09
MedInc: 14.710096

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.09
MedInc: 14.855098

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 4.09
MedInc: 15.0001

HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
AveOccup: 5.216867469879518
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.916220700000002, - 1.716390100000002, - 1.716390100000002, - 1.6769400000000019, - 1.5810000000000017, - 1.5536000000000012, - 1.5495500000000013, - 1.5301800000000012, - 1.5337400000000014, - 1.5139500000000012, - 1.4977200000000013, - 1.4579600000000008, - 1.3957700000000006, - 1.3937400000000004, - 1.4177800000000003, - 1.4412100000000003, - 1.4451700000000005, - 1.4136399999999998, - 1.3400800000000004, - 1.2490400000000002, - 1.2733100000000004, - 1.2822000000000002, - 1.2984100000000003, - 1.3424100000000003, - 1.3765, - 1.5306700000000004, - 1.60188, - 1.62773, - 1.6647400999999993, - 1.7743402999999989, - 1.7941102999999987, - 1.9391805999999996, - 1.9333203999999986, - 1.9224103999999977, - 1.9058402999999975, - 1.9374802999999985, - 2.1916501999999998, - 2.255770200000001, - 2.2794402000000007, - 2.3850201, - 2.427620200000001, - 2.546330300000001, - 2.682560300000002, - 2.9242006000000003, - 3.2542105999999995, - 3.6091608999999996, - 3.670311199999999, - 3.633171099999999, - 3.600170799999999, - 3.5813307999999995, - 3.7162707999999993, - 3.759141099999999, - 3.757790999999999, - 3.809981099999999, - 3.857111399999998, - 3.8922915999999974, - 3.874711899999998, - 3.8752619999999975, - 3.853452599999997, - 3.879293299999997, - 3.8564533999999977, - 3.8650634999999975, - 3.8707134999999977, - 3.857023499999998, - 3.9777346999999987, - 3.9596346999999987, - 3.985754899999999, - 4.019885399999998, - 4.019885399999998, - 4.061185599999997, - 4.072795699999997, - 4.072795699999997, - 4.074465799999997, - 4.074465799999997, - 4.074465799999997, - 4.080065799999997, - 4.080065799999997, - 4.080065799999997, - 4.080065799999997, - 4.080065799999997, - 4.080065799999997, - 4.080065799999997, - 4.080065799999997, - 4.080065799999997, - 4.080065799999997, - 4.080065799999997, - 4.080065799999997, - 4.081345899999997, - 4.081345899999997, - 4.081345899999997, - 4.081345899999997, - 4.089675999999997, - 4.089675999999997, - 4.089675999999997, - 4.089675999999997, - 4.089675999999997, - 4.089675999999997, - 4.089675999999997, - 4.089675999999997, - 4.089675999999997, - 4.089675999999997 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 2053
prediction: 0.932
MedInc: 0.4999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.681
MedInc: 0.644902

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.585
MedInc: 0.7899039999999999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.558
MedInc: 0.934906

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.549
MedInc: 1.079908

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.541
MedInc: 1.22491

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.54
MedInc: 1.369912

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.543
MedInc: 1.5149139999999999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.54
MedInc: 1.659916

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.556
MedInc: 1.804918

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.671
MedInc: 1.9499199999999999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.71
MedInc: 2.094922

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.949
MedInc: 2.2399240000000002

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.063
MedInc: 2.384926

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.201
MedInc: 2.529928

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.232
MedInc: 2.67493

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.244
MedInc: 2.8199319999999997

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.267
MedInc: 2.9649339999999995

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.253
MedInc: 3.1099360000000003

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.406
MedInc: 3.254938

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.404
MedInc: 3.39994

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.398
MedInc: 3.544942

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.382
MedInc: 3.6899439999999997

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.378
MedInc: 3.8349459999999995

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.31
MedInc: 3.9799480000000003

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.078
MedInc: 4.12495

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.061
MedInc: 4.269952

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.113
MedInc: 4.414954

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.182
MedInc: 4.559956

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.216
MedInc: 4.704958

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.276
MedInc: 4.84996

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.408
MedInc: 4.994962

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.905
MedInc: 5.139964

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.992
MedInc: 5.284966

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 2.039
MedInc: 5.429968

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 2.068
MedInc: 5.5749699999999995

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 2.256
MedInc: 5.719972

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 2.307
MedInc: 5.864974

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 2.333
MedInc: 6.009976

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 2.468
MedInc: 6.154978

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 2.573
MedInc: 6.29998

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 2.601
MedInc: 6.4449819999999995

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 2.788
MedInc: 6.589984

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.023
MedInc: 6.734986

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.338
MedInc: 6.879988

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.717
MedInc: 7.02499

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.817
MedInc: 7.169992

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.786
MedInc: 7.3149939999999996

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.73
MedInc: 7.459996

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.687
MedInc: 7.604998

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.762
MedInc: 7.75

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.597
MedInc: 7.895002

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.576
MedInc: 8.040004

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.669
MedInc: 8.185006

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.736
MedInc: 8.330008

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.824
MedInc: 8.47501

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.863
MedInc: 8.620012

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.895
MedInc: 8.765013999999999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 3.981
MedInc: 8.910016

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.223
MedInc: 9.055018

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.319
MedInc: 9.20002

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.306
MedInc: 9.345022

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.311
MedInc: 9.490024

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.277
MedInc: 9.635026

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.391
MedInc: 9.780028

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.369
MedInc: 9.92503

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.377
MedInc: 10.070032

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.397
MedInc: 10.215034

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.397
MedInc: 10.360036

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.397
MedInc: 10.505037999999999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.397
MedInc: 10.650039999999999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.397
MedInc: 10.795042

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.397
MedInc: 10.940044

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.397
MedInc: 11.085046

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.397
MedInc: 11.230048

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.402
MedInc: 11.37505

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.402
MedInc: 11.520052

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.402
MedInc: 11.665054

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.402
MedInc: 11.810056

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.402
MedInc: 11.955058

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.402
MedInc: 12.10006

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.402
MedInc: 12.245061999999999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.402
MedInc: 12.390063999999999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.402
MedInc: 12.535065999999999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.402
MedInc: 12.680068

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.402
MedInc: 12.82507

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.402
MedInc: 12.970072

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 13.115074

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 13.260076

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 13.405078

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 13.55008

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 13.695082

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 13.840084

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 13.985085999999999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 14.130087999999999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 14.275089999999999

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 14.420092

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 14.565094

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 14.710096

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 14.855098

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 4.403
MedInc: 15.0001

HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
AveOccup: 3.289855072463768
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.9323905999999995, - 0.6807399999999998, - 0.5848600000000002, - 0.5582700000000002, - 0.5491200000000002, - 0.5406800000000002, - 0.5401500000000002, - 0.5427000000000003, - 0.5395800000000003, - 0.5557400000000005, - 0.6707200000000002, - 0.7096099000000001, - 0.9485799999999999, - 1.0627199999999999, - 1.2005000000000001, - 1.2318900000000002, - 1.2435900000000002, - 1.2667600000000003, - 1.2527100000000004, - 1.4061400000000004, - 1.4042500000000002, - 1.3980800000000002, - 1.3822900000000007, - 1.3775000000000004, - 1.3095000000000006, - 1.0780499999999997, - 1.0606999999999998, - 1.1133499999999996, - 1.1820199999999992, - 1.2156099999999992, - 1.2763899999999995, - 1.4084799999999995, - 1.90516, - 1.9924799999999994, - 2.0389199999999987, - 2.06756, - 2.2559000000000005, - 2.3065200000000012, - 2.33348, - 2.46816, - 2.5734201000000003, - 2.6011001000000005, - 2.7875801, - 3.0227603999999997, - 3.3377110999999995, - 3.7169712999999978, - 3.8169814999999976, - 3.7860113999999987, - 3.730221199999999, - 3.686650999999999, - 3.7616807999999997, - 3.5970505999999993, - 3.575970399999999, - 3.6689206999999993, - 3.736171299999998, - 3.8237022999999977, - 3.862602599999998, - 3.8946427999999975, - 3.981383599999997, - 4.222614999999995, - 4.318705499999994, - 4.3062554999999945, - 4.3112054999999945, - 4.277295399999995, - 4.390596599999995, - 4.368696499999995, - 4.377106599999995, - 4.396526899999994, - 4.396526899999994, - 4.396526899999994, - 4.396526899999994, - 4.396526899999994, - 4.396526899999994, - 4.396526899999994, - 4.396526899999994, - 4.4021268999999945, - 4.4021268999999945, - 4.4021268999999945, - 4.4021268999999945, - 4.4021268999999945, - 4.4021268999999945, - 4.4021268999999945, - 4.4021268999999945, - 4.4021268999999945, - 4.4021268999999945, - 4.4021268999999945, - 4.4021268999999945, - 4.403406999999994, - 4.403406999999994, - 4.403406999999994, - 4.403406999999994, - 4.403406999999994, - 4.403406999999994, - 4.403406999999994, - 4.403406999999994, - 4.403406999999994, - 4.403406999999994, - 4.403406999999994, - 4.403406999999994, - 4.403406999999994, - 4.403406999999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 13035
prediction: 1.335
MedInc: 0.4999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.332
MedInc: 0.644902

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.338
MedInc: 0.7899039999999999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.319
MedInc: 0.934906

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.329
MedInc: 1.079908

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.324
MedInc: 1.22491

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.332
MedInc: 1.369912

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.334
MedInc: 1.5149139999999999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.456
MedInc: 1.659916

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.463
MedInc: 1.804918

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.44
MedInc: 1.9499199999999999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.449
MedInc: 2.094922

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.424
MedInc: 2.2399240000000002

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.723
MedInc: 2.384926

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.34
MedInc: 2.529928

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.28
MedInc: 2.67493

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.1
MedInc: 2.8199319999999997

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.083
MedInc: 2.9649339999999995

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.887
MedInc: 3.1099360000000003

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.649
MedInc: 3.254938

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.682
MedInc: 3.39994

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.633
MedInc: 3.544942

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.738
MedInc: 3.6899439999999997

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.754
MedInc: 3.8349459999999995

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.887
MedInc: 3.9799480000000003

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.973
MedInc: 4.12495

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.982
MedInc: 4.269952

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.954
MedInc: 4.414954

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.998
MedInc: 4.559956

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.23
MedInc: 4.704958

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.268
MedInc: 4.84996

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.329
MedInc: 4.994962

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.093
MedInc: 5.139964

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.274
MedInc: 5.284966

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.44
MedInc: 5.429968

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.359
MedInc: 5.5749699999999995

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.383
MedInc: 5.719972

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.517
MedInc: 5.864974

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.352
MedInc: 6.009976

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.405
MedInc: 6.154978

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.558
MedInc: 6.29998

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.627
MedInc: 6.4449819999999995

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.681
MedInc: 6.589984

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.88
MedInc: 6.734986

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.089
MedInc: 6.879988

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.203
MedInc: 7.02499

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.175
MedInc: 7.169992

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.246
MedInc: 7.3149939999999996

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.35
MedInc: 7.459996

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.32
MedInc: 7.604998

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.407
MedInc: 7.75

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.689
MedInc: 7.895002

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.684
MedInc: 8.040004

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.677
MedInc: 8.185006

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.635
MedInc: 8.330008

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.672
MedInc: 8.47501

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.693
MedInc: 8.620012

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.699
MedInc: 8.765013999999999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.482
MedInc: 8.910016

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.374
MedInc: 9.055018

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.238
MedInc: 9.20002

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.266
MedInc: 9.345022

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.26
MedInc: 9.490024

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.246
MedInc: 9.635026

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.246
MedInc: 9.780028

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.255
MedInc: 9.92503

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.305
MedInc: 10.070032

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.298
MedInc: 10.215034

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.313
MedInc: 10.360036

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.342
MedInc: 10.505037999999999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.276
MedInc: 10.650039999999999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.368
MedInc: 10.795042

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.365
MedInc: 10.940044

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.374
MedInc: 11.085046

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.375
MedInc: 11.230048

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.375
MedInc: 11.37505

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.375
MedInc: 11.520052

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.375
MedInc: 11.665054

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.375
MedInc: 11.810056

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 11.955058

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 12.10006

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 12.245061999999999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 12.390063999999999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 12.535065999999999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 12.680068

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 12.82507

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 12.970072

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 13.115074

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 13.260076

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 13.405078

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 13.55008

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 13.695082

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 13.840084

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 13.985085999999999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 14.130087999999999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 14.275089999999999

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 14.420092

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 14.565094

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 14.710096

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 14.855098

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 3.38
MedInc: 15.0001

HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
AveOccup: 1.8505338078291815
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.3350799999999998, - 1.3318499999999998, - 1.3381999999999998, - 1.31948, - 1.32934, - 1.32447, - 1.3319599999999996, - 1.3344299999999998, - 1.45598, - 1.4628999999999999, - 1.43953, - 1.44944, - 1.4239200000000003, - 1.7227899999999994, - 2.3402799999999964, - 2.280030099999997, - 2.1002500999999976, - 2.0834800999999974, - 1.8869600999999991, - 1.6485400000000003, - 1.6820699999999997, - 1.63301, - 1.7381600000000006, - 1.7535600000000011, - 1.8870800000000005, - 1.9732999999999992, - 1.9818499999999997, - 1.9537399999999996, - 1.99773, - 2.2300000000000004, - 2.2684300000000004, - 2.32855, - 2.0925999999999987, - 2.2740804999999993, - 2.440110899999999, - 2.3592404999999994, - 2.3833505000000006, - 2.5173406000000003, - 2.3521902000000003, - 2.405310200000001, - 2.5579603000000013, - 2.6274204000000014, - 2.6810505000000004, - 2.879970999999998, - 3.088850899999999, - 3.202840899999998, - 3.1748007999999985, - 3.246041099999998, - 3.3499712999999987, - 3.319890999999999, - 3.407420999999998, - 3.6887509999999986, - 3.683660699999999, - 3.6766705999999996, - 3.6353204999999993, - 3.672260599999999, - 3.693390799999999, - 3.698841, - 3.4820807, - 3.373660899999998, - 3.238281399999997, - 3.2659014999999965, - 3.2599414999999965, - 3.245701399999997, - 3.245781699999997, - 3.254991899999997, - 3.3048020999999967, - 3.2983718999999962, - 3.3131720999999965, - 3.3417121999999972, - 3.2756019999999966, - 3.3678524999999975, - 3.3654323999999973, - 3.3738423999999974, - 3.3752425999999973, - 3.3752425999999973, - 3.3752425999999973, - 3.3752425999999973, - 3.3752425999999973, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977, - 3.3802026999999977 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 11828
prediction: 1.453
MedInc: 0.4999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.469
MedInc: 0.644902

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.44
MedInc: 0.7899039999999999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.433
MedInc: 0.934906

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.433
MedInc: 1.079908

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.433
MedInc: 1.22491

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.44
MedInc: 1.369912

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.442
MedInc: 1.5149139999999999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.462
MedInc: 1.659916

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.528
MedInc: 1.804918

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.554
MedInc: 1.9499199999999999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.562
MedInc: 2.094922

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.568
MedInc: 2.2399240000000002

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.63
MedInc: 2.384926

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.556
MedInc: 2.529928

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.528
MedInc: 2.67493

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.536
MedInc: 2.8199319999999997

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.6
MedInc: 2.9649339999999995

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.633
MedInc: 3.1099360000000003

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.614
MedInc: 3.254938

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.618
MedInc: 3.39994

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.605
MedInc: 3.544942

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.689
MedInc: 3.6899439999999997

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.732
MedInc: 3.8349459999999995

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.764
MedInc: 3.9799480000000003

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.615
MedInc: 4.12495

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.539
MedInc: 4.269952

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.576
MedInc: 4.414954

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.516
MedInc: 4.559956

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.594
MedInc: 4.704958

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.614
MedInc: 4.84996

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 1.747
MedInc: 4.994962

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.535
MedInc: 5.139964

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.618
MedInc: 5.284966

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.571
MedInc: 5.429968

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.545
MedInc: 5.5749699999999995

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.433
MedInc: 5.719972

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.273
MedInc: 5.864974

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.254
MedInc: 6.009976

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.329
MedInc: 6.154978

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.26
MedInc: 6.29998

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.327
MedInc: 6.4449819999999995

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.573
MedInc: 6.589984

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.616
MedInc: 6.734986

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.837
MedInc: 6.879988

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.026
MedInc: 7.02499

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.053
MedInc: 7.169992

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.015
MedInc: 7.3149939999999996

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.972
MedInc: 7.459996

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.936
MedInc: 7.604998

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 2.824
MedInc: 7.75

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.155
MedInc: 7.895002

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.162
MedInc: 8.040004

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.124
MedInc: 8.185006

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.114
MedInc: 8.330008

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.239
MedInc: 8.47501

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.237
MedInc: 8.620012

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.248
MedInc: 8.765013999999999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.149
MedInc: 8.910016

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.142
MedInc: 9.055018

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.097
MedInc: 9.20002

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.096
MedInc: 9.345022

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.096
MedInc: 9.490024

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.096
MedInc: 9.635026

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.077
MedInc: 9.780028

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.077
MedInc: 9.92503

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.07
MedInc: 10.070032

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.09
MedInc: 10.215034

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.09
MedInc: 10.360036

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.154
MedInc: 10.505037999999999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.131
MedInc: 10.650039999999999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.167
MedInc: 10.795042

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.167
MedInc: 10.940044

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.167
MedInc: 11.085046

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.167
MedInc: 11.230048

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.16
MedInc: 11.37505

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.262
MedInc: 11.520052

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.275
MedInc: 11.665054

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.276
MedInc: 11.810056

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.276
MedInc: 11.955058

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.291
MedInc: 12.10006

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.291
MedInc: 12.245061999999999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.291
MedInc: 12.390063999999999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.291
MedInc: 12.535065999999999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.291
MedInc: 12.680068

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.291
MedInc: 12.82507

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.291
MedInc: 12.970072

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.291
MedInc: 13.115074

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.368
MedInc: 13.260076

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.368
MedInc: 13.405078

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.368
MedInc: 13.55008

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.368
MedInc: 13.695082

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.399
MedInc: 13.840084

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.399
MedInc: 13.985085999999999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.399
MedInc: 14.130087999999999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.399
MedInc: 14.275089999999999

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.399
MedInc: 14.420092

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.399
MedInc: 14.565094

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.399
MedInc: 14.710096

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.399
MedInc: 14.855098

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.399
MedInc: 15.0001

HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
AveOccup: 3.4444444444444446
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.4532299000000006, - 1.4690599000000006, - 1.4404599000000005, - 1.4329599000000004, - 1.4329599000000004, - 1.4329599000000004, - 1.4399199000000005, - 1.4415899000000008, - 1.4623399000000006, - 1.5276399, - 1.5544299000000001, - 1.5621299000000002, - 1.5680499000000006, - 1.6297000000000008, - 1.5557400000000008, - 1.5282600000000004, - 1.5360200000000004, - 1.59999, - 1.6328899999999995, - 1.6138299999999999, - 1.6182100000000004, - 1.6053799999999998, - 1.68861, - 1.7318101000000004, - 1.7638001000000003, - 1.6149200999999997, - 1.5394200999999998, - 1.5758200999999996, - 1.5158099999999997, - 1.5936899999999996, - 1.6135499999999996, - 1.7465399999999993, - 2.5351011, - 2.6183212000000005, - 2.570661, - 2.544741, - 2.4330607000000004, - 2.27295, - 2.2542199999999997, - 2.329449999999999, - 2.2604699999999993, - 2.32728, - 2.5733703, - 2.6158804, - 2.8365011, - 3.0261914000000005, - 3.0534014000000003, - 3.0145612000000006, - 2.9721911000000008, - 2.9362710000000005, - 2.8243104, - 3.1548903999999998, - 3.1623203, - 3.1236503000000004, - 3.1141901000000014, - 3.2389902000000013, - 3.2373501000000022, - 3.247770100000001, - 3.148850200000002, - 3.1416302, - 3.096950299999999, - 3.095960299999999, - 3.095960299999999, - 3.095960299999999, - 3.076830399999998, - 3.076830399999998, - 3.0698301999999984, - 3.0898801999999983, - 3.0898801999999983, - 3.1541703999999986, - 3.1314403999999985, - 3.166690599999998, - 3.166690599999998, - 3.166690599999998, - 3.166690599999998, - 3.1597905999999982, - 3.2622910999999983, - 3.274741199999998, - 3.2757411999999984, - 3.2757411999999984, - 3.290741299999998, - 3.290741299999998, - 3.290741299999998, - 3.290741299999998, - 3.290741299999998, - 3.290741299999998, - 3.290741299999998, - 3.290741299999998, - 3.368381799999998, - 3.368381799999998, - 3.368381799999998, - 3.368381799999998, - 3.3990318999999984, - 3.3990318999999984, - 3.3990318999999984, - 3.3990318999999984, - 3.3990318999999984, - 3.3990318999999984, - 3.3990318999999984, - 3.3990318999999984, - 3.3990318999999984 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 18300
prediction: 1.822
MedInc: 0.4999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.827
MedInc: 0.644902

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.833
MedInc: 0.7899039999999999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.833
MedInc: 0.934906

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.834
MedInc: 1.079908

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.83
MedInc: 1.22491

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.835
MedInc: 1.369912

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.82
MedInc: 1.5149139999999999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.858
MedInc: 1.659916

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.912
MedInc: 1.804918

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.872
MedInc: 1.9499199999999999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.864
MedInc: 2.094922

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.893
MedInc: 2.2399240000000002

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 1.968
MedInc: 2.384926

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.182
MedInc: 2.529928

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.162
MedInc: 2.67493

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.185
MedInc: 2.8199319999999997

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.203
MedInc: 2.9649339999999995

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.246
MedInc: 3.1099360000000003

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.146
MedInc: 3.254938

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.12
MedInc: 3.39994

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.178
MedInc: 3.544942

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.3
MedInc: 3.6899439999999997

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.624
MedInc: 3.8349459999999995

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 3.229
MedInc: 3.9799480000000003

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 3.418
MedInc: 4.12495

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 3.503
MedInc: 4.269952

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 3.425
MedInc: 4.414954

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 3.547
MedInc: 4.559956

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 3.602
MedInc: 4.704958

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 3.613
MedInc: 4.84996

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 3.629
MedInc: 4.994962

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.218
MedInc: 5.139964

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.262
MedInc: 5.284966

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.201
MedInc: 5.429968

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.135
MedInc: 5.5749699999999995

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.068
MedInc: 5.719972

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.088
MedInc: 5.864974

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.095
MedInc: 6.009976

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.196
MedInc: 6.154978

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.27
MedInc: 6.29998

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.393
MedInc: 6.4449819999999995

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.411
MedInc: 6.589984

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.4
MedInc: 6.734986

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.214
MedInc: 6.879988

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.461
MedInc: 7.02499

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.481
MedInc: 7.169992

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.484
MedInc: 7.3149939999999996

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.51
MedInc: 7.459996

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.48
MedInc: 7.604998

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.532
MedInc: 7.75

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.71
MedInc: 7.895002

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.7
MedInc: 8.040004

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.675
MedInc: 8.185006

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.736
MedInc: 8.330008

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.821
MedInc: 8.47501

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.818
MedInc: 8.620012

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.801
MedInc: 8.765013999999999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.845
MedInc: 8.910016

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.838
MedInc: 9.055018

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.868
MedInc: 9.20002

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.851
MedInc: 9.345022

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.856
MedInc: 9.490024

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.731
MedInc: 9.635026

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.894
MedInc: 9.780028

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.904
MedInc: 9.92503

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.905
MedInc: 10.070032

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.927
MedInc: 10.215034

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 10.360036

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 10.505037999999999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 10.650039999999999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 10.795042

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 10.940044

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 11.085046

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 11.230048

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 11.37505

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 11.520052

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 11.665054

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 11.810056

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 11.955058

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 12.10006

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 12.245061999999999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 12.390063999999999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 12.535065999999999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 12.680068

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 12.82507

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 12.970072

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 13.115074

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 13.260076

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 13.405078

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 13.55008

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 13.695082

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 13.840084

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 13.985085999999999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 14.130087999999999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 14.275089999999999

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 14.420092

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 14.565094

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 14.710096

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 14.855098

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.935
MedInc: 15.0001

HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
AveOccup: 2.291011235955056
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.8215299999999999, - 1.8270999999999997, - 1.8334499999999998, - 1.8334499999999998, - 1.8338799999999997, - 1.8298999999999999, - 1.8346599999999997, - 1.8200099999999997, - 1.8579599999999998, - 1.9124700000000003, - 1.8717199999999996, - 1.86437, - 1.8932900000000004, - 1.9679600000000002, - 2.1820700000000004, - 2.1617500000000005, - 2.1847200000000004, - 2.2028200000000004, - 2.24599, - 2.14628, - 2.11967, - 2.1782499999999994, - 2.300289999999999, - 2.6244400999999997, - 3.2292800000000015, - 3.418170200000002, - 3.5031602000000017, - 3.424640200000001, - 3.5466302000000014, - 3.602420400000001, - 3.613080500000001, - 3.628530400000001, - 4.217580000000002, - 4.261870199999997, - 4.200559999999998, - 4.135419999999998, - 4.068070099999998, - 4.0878901999999995, - 4.095400199999999, - 4.1958305000000005, - 4.270460700000001, - 4.393051100000001, - 4.4106612, - 4.4002913999999995, - 4.213991299999998, - 4.461493499999996, - 4.481473699999996, - 4.484113799999996, - 4.509804199999994, - 4.480463999999995, - 4.532014799999995, - 4.710356399999993, - 4.699726299999994, - 4.674566099999994, - 4.735796499999993, - 4.820617399999993, - 4.8179075999999945, - 4.801067699999993, - 4.844918099999991, - 4.837698099999992, - 4.8680081999999905, - 4.8505680999999905, - 4.85621809999999, - 4.731066899999991, - 4.89406859999999, - 4.903898699999989, - 4.904908699999989, - 4.927179199999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989, - 4.934579299999989 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 6359
prediction: 2.447
MedInc: 0.4999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.854
MedInc: 0.644902

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.519
MedInc: 0.7899039999999999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.48
MedInc: 0.934906

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.48
MedInc: 1.079908

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.48
MedInc: 1.22491

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.489
MedInc: 1.369912

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.492
MedInc: 1.5149139999999999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.491
MedInc: 1.659916

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.499
MedInc: 1.804918

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.473
MedInc: 1.9499199999999999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.491
MedInc: 2.094922

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.549
MedInc: 2.2399240000000002

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.589
MedInc: 2.384926

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.68
MedInc: 2.529928

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.64
MedInc: 2.67493

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.622
MedInc: 2.8199319999999997

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.661
MedInc: 2.9649339999999995

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.659
MedInc: 3.1099360000000003

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.559
MedInc: 3.254938

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.558
MedInc: 3.39994

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.55
MedInc: 3.544942

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.561
MedInc: 3.6899439999999997

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.59
MedInc: 3.8349459999999995

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.617
MedInc: 3.9799480000000003

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.646
MedInc: 4.12495

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.654
MedInc: 4.269952

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.657
MedInc: 4.414954

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.701
MedInc: 4.559956

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.74
MedInc: 4.704958

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.833
MedInc: 4.84996

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.953
MedInc: 4.994962

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.08
MedInc: 5.139964

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.147
MedInc: 5.284966

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.161
MedInc: 5.429968

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.19
MedInc: 5.5749699999999995

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.523
MedInc: 5.719972

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.884
MedInc: 5.864974

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.864
MedInc: 6.009976

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.801
MedInc: 6.154978

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.811
MedInc: 6.29998

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.84
MedInc: 6.4449819999999995

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.799
MedInc: 6.589984

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.003
MedInc: 6.734986

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.249
MedInc: 6.879988

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.664
MedInc: 7.02499

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.713
MedInc: 7.169992

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.654
MedInc: 7.3149939999999996

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.611
MedInc: 7.459996

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.571
MedInc: 7.604998

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.718
MedInc: 7.75

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.811
MedInc: 7.895002

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.813
MedInc: 8.040004

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.849
MedInc: 8.185006

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.002
MedInc: 8.330008

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.043
MedInc: 8.47501

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.033
MedInc: 8.620012

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.068
MedInc: 8.765013999999999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.082
MedInc: 8.910016

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.371
MedInc: 9.055018

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.467
MedInc: 9.20002

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.472
MedInc: 9.345022

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.483
MedInc: 9.490024

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.424
MedInc: 9.635026

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.608
MedInc: 9.780028

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.608
MedInc: 9.92503

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.591
MedInc: 10.070032

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.627
MedInc: 10.215034

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.627
MedInc: 10.360036

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.656
MedInc: 10.505037999999999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.664
MedInc: 10.650039999999999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.664
MedInc: 10.795042

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.665
MedInc: 10.940044

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.665
MedInc: 11.085046

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.665
MedInc: 11.230048

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.665
MedInc: 11.37505

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.665
MedInc: 11.520052

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.665
MedInc: 11.665054

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.665
MedInc: 11.810056

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.665
MedInc: 11.955058

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.665
MedInc: 12.10006

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.665
MedInc: 12.245061999999999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.667
MedInc: 12.390063999999999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.667
MedInc: 12.535065999999999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.667
MedInc: 12.680068

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.667
MedInc: 12.82507

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.667
MedInc: 12.970072

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.668
MedInc: 13.115074

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.668
MedInc: 13.260076

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.668
MedInc: 13.405078

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.668
MedInc: 13.55008

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.677
MedInc: 13.695082

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.677
MedInc: 13.840084

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.677
MedInc: 13.985085999999999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.677
MedInc: 14.130087999999999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.677
MedInc: 14.275089999999999

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.677
MedInc: 14.420092

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.677
MedInc: 14.565094

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.677
MedInc: 14.710096

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.677
MedInc: 14.855098

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 4.677
MedInc: 15.0001

HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
AveOccup: 3.920289855072464
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.4469025999999996, - 1.8535807999999991, - 1.5192300999999995, - 1.4804799999999998, - 1.4804799999999998, - 1.4804799999999998, - 1.4885299999999995, - 1.4921499999999996, - 1.4913899999999998, - 1.4991899999999996, - 1.4727399999999997, - 1.4914899999999998, - 1.5494299999999996, - 1.5886299999999993, - 1.6801399999999995, - 1.6401899999999996, - 1.6218899999999998, - 1.6605499999999997, - 1.6587199999999995, - 1.5585299999999995, - 1.5578399999999997, - 1.5500699999999992, - 1.560769999999999, - 1.5900699999999992, - 1.61666, - 1.64641, - 1.6536700000000004, - 1.6574400000000005, - 1.70057, - 1.7395000000000005, - 1.83279, - 1.9528701000000006, - 2.0800499999999995, - 2.1468699999999985, - 2.161409999999999, - 2.1897999999999995, - 2.5231202000000006, - 2.8836804000000007, - 2.864250400000001, - 2.801000600000001, - 2.8106609000000002, - 2.840460900000001, - 2.799400900000001, - 3.0028609, - 3.2486813999999997, - 3.6643416999999987, - 3.713361899999998, - 3.654251799999999, - 3.610661599999998, - 3.5713612999999977, - 3.7184816999999977, - 3.810581699999999, - 3.8130917999999987, - 3.8494319999999984, - 4.001692399999997, - 4.042862099999997, - 4.033052199999998, - 4.068492199999998, - 4.081842399999998, - 4.370823599999999, - 4.4667938000000005, - 4.4724238000000005, - 4.4828537000000015, - 4.424133400000002, - 4.6075054, - 4.6075054, - 4.5908154, - 4.626716399999998, - 4.6268664999999976, - 4.656436699999997, - 4.6635867999999965, - 4.6635867999999965, - 4.665256899999996, - 4.665256899999996, - 4.665256899999996, - 4.665256899999996, - 4.665256899999996, - 4.665256899999996, - 4.665256899999996, - 4.665256899999996, - 4.665256899999996, - 4.665256899999996, - 4.666926999999996, - 4.666926999999996, - 4.666926999999996, - 4.666926999999996, - 4.666926999999996, - 4.6682070999999965, - 4.6682070999999965, - 4.6682070999999965, - 4.6682070999999965, - 4.676537199999996, - 4.676537199999996, - 4.676537199999996, - 4.676537199999996, - 4.676537199999996, - 4.676537199999996, - 4.676537199999996, - 4.676537199999996, - 4.676537199999996, - 4.676537199999996 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 20513
prediction: 1.032
MedInc: 0.4999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.028
MedInc: 0.644902

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.015
MedInc: 0.7899039999999999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.016
MedInc: 0.934906

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.006
MedInc: 1.079908

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.001
MedInc: 1.22491

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.001
MedInc: 1.369912

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 0.993
MedInc: 1.5149139999999999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 0.994
MedInc: 1.659916

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.03
MedInc: 1.804918

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.124
MedInc: 1.9499199999999999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.149
MedInc: 2.094922

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.141
MedInc: 2.2399240000000002

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.378
MedInc: 2.384926

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.681
MedInc: 2.529928

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.805
MedInc: 2.67493

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.79
MedInc: 2.8199319999999997

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.712
MedInc: 2.9649339999999995

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.312
MedInc: 3.1099360000000003

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 0.992
MedInc: 3.254938

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.071
MedInc: 3.39994

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.105
MedInc: 3.544942

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.153
MedInc: 3.6899439999999997

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.155
MedInc: 3.8349459999999995

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.259
MedInc: 3.9799480000000003

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.392
MedInc: 4.12495

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.481
MedInc: 4.269952

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.498
MedInc: 4.414954

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.539
MedInc: 4.559956

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.663
MedInc: 4.704958

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.723
MedInc: 4.84996

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.935
MedInc: 4.994962

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 2.168
MedInc: 5.139964

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 2.205
MedInc: 5.284966

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 2.166
MedInc: 5.429968

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 2.177
MedInc: 5.5749699999999995

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 2.175
MedInc: 5.719972

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 2.089
MedInc: 5.864974

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 2.089
MedInc: 6.009976

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 2.15
MedInc: 6.154978

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 2.253
MedInc: 6.29998

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 2.357
MedInc: 6.4449819999999995

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 2.661
MedInc: 6.589984

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 2.782
MedInc: 6.734986

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.265
MedInc: 6.879988

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.584
MedInc: 7.02499

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.661
MedInc: 7.169992

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.636
MedInc: 7.3149939999999996

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.571
MedInc: 7.459996

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.635
MedInc: 7.604998

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.644
MedInc: 7.75

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.86
MedInc: 7.895002

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.865
MedInc: 8.040004

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.855
MedInc: 8.185006

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.824
MedInc: 8.330008

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.784
MedInc: 8.47501

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.779
MedInc: 8.620012

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.776
MedInc: 8.765013999999999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.753
MedInc: 8.910016

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.61
MedInc: 9.055018

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.576
MedInc: 9.20002

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.584
MedInc: 9.345022

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.577
MedInc: 9.490024

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.557
MedInc: 9.635026

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.575
MedInc: 9.780028

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.578
MedInc: 9.92503

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.567
MedInc: 10.070032

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.649
MedInc: 10.215034

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.686
MedInc: 10.360036

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 10.505037999999999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 10.650039999999999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 10.795042

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 10.940044

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 11.085046

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 11.230048

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 11.37505

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 11.520052

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 11.665054

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 11.810056

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 11.955058

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 12.10006

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 12.245061999999999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 12.390063999999999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 12.535065999999999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 12.680068

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 12.82507

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.708
MedInc: 12.970072

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 13.115074

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 13.260076

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 13.405078

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 13.55008

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 13.695082

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 13.840084

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 13.985085999999999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 14.130087999999999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 14.275089999999999

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 14.420092

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 14.565094

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 14.710096

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 14.855098

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 3.709
MedInc: 15.0001

HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
AveOccup: 5.077922077922078
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.0317599999999998, - 1.02806, - 1.0150199999999998, - 1.0164199999999999, - 1.0057899999999997, - 1.00109, - 1.00108, - 0.9929499999999999, - 0.9938499999999999, - 1.03037, - 1.1240800000000002, - 1.1490900000000004, - 1.1406100000000006, - 1.3776599999999999, - 1.6809000000000003, - 1.8048400000000004, - 1.7902600000000004, - 1.7119200000000003, - 1.3118699999999999, - 0.9916300000000002, - 1.0705700000000002, - 1.1049, - 1.1531699999999998, - 1.15543, - 1.2588500000000002, - 1.3924100000000004, - 1.4810000000000003, - 1.4981600000000006, - 1.5388, - 1.6630900999999993, - 1.7228402, - 1.9353106, - 2.1680605, - 2.2054604999999996, - 2.165990499999999, - 2.1765404, - 2.1747801999999994, - 2.0888901, - 2.0893701, - 2.1498600000000003, - 2.2528802000000008, - 2.3566401000000012, - 2.6613301000000003, - 2.7819000999999997, - 3.2652200999999996, - 3.5841702000000004, - 3.6606306000000006, - 3.6364707, - 3.5706304999999996, - 3.634890499999999, - 3.644090399999998, - 3.8597110999999997, - 3.8646609, - 3.8547808, - 3.8242309, - 3.784211100000001, - 3.7789312000000006, - 3.7764013000000007, - 3.7531916000000005, - 3.6099818999999993, - 3.5762019999999994, - 3.5839320999999997, - 3.5770520999999995, - 3.557332, - 3.5751322000000005, - 3.5781923000000004, - 3.5674322000000007, - 3.6486929, - 3.686173, - 3.7082231, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7075332000000003, - 3.7088133000000005, - 3.7088133000000005, - 3.7088133000000005, - 3.7088133000000005, - 3.7088133000000005, - 3.7088133000000005, - 3.7088133000000005, - 3.7088133000000005, - 3.7088133000000005, - 3.7088133000000005, - 3.7088133000000005, - 3.7088133000000005, - 3.7088133000000005, - 3.7088133000000005 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 5456
prediction: 2.731
MedInc: 0.4999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.731
MedInc: 0.644902

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.746
MedInc: 0.7899039999999999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.758
MedInc: 0.934906

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.753
MedInc: 1.079908

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.814
MedInc: 1.22491

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.824
MedInc: 1.369912

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.885
MedInc: 1.5149139999999999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.924
MedInc: 1.659916

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.913
MedInc: 1.804918

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.989
MedInc: 1.9499199999999999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.997
MedInc: 2.094922

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.183
MedInc: 2.2399240000000002

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.235
MedInc: 2.384926

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.197
MedInc: 2.529928

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.067
MedInc: 2.67493

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.031
MedInc: 2.8199319999999997

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.103
MedInc: 2.9649339999999995

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.96
MedInc: 3.1099360000000003

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.9
MedInc: 3.254938

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.882
MedInc: 3.39994

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.969
MedInc: 3.544942

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.95
MedInc: 3.6899439999999997

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.101
MedInc: 3.8349459999999995

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.019
MedInc: 3.9799480000000003

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.125
MedInc: 4.12495

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.168
MedInc: 4.269952

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.159
MedInc: 4.414954

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.271
MedInc: 4.559956

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.368
MedInc: 4.704958

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.381
MedInc: 4.84996

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.379
MedInc: 4.994962

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.732
MedInc: 5.139964

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.742
MedInc: 5.284966

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.623
MedInc: 5.429968

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.701
MedInc: 5.5749699999999995

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.744
MedInc: 5.719972

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.876
MedInc: 5.864974

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.885
MedInc: 6.009976

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.038
MedInc: 6.154978

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.067
MedInc: 6.29998

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.245
MedInc: 6.4449819999999995

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.24
MedInc: 6.589984

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.204
MedInc: 6.734986

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.022
MedInc: 6.879988

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.396
MedInc: 7.02499

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.359
MedInc: 7.169992

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.44
MedInc: 7.3149939999999996

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.435
MedInc: 7.459996

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.39
MedInc: 7.604998

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.441
MedInc: 7.75

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.614
MedInc: 7.895002

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.615
MedInc: 8.040004

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.666
MedInc: 8.185006

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.597
MedInc: 8.330008

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.529
MedInc: 8.47501

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.501
MedInc: 8.620012

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.464
MedInc: 8.765013999999999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.401
MedInc: 8.910016

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.37
MedInc: 9.055018

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.395
MedInc: 9.20002

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.383
MedInc: 9.345022

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.389
MedInc: 9.490024

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.265
MedInc: 9.635026

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.408
MedInc: 9.780028

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.384
MedInc: 9.92503

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.387
MedInc: 10.070032

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.387
MedInc: 10.215034

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.387
MedInc: 10.360036

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.387
MedInc: 10.505037999999999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.387
MedInc: 10.650039999999999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.387
MedInc: 10.795042

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.387
MedInc: 10.940044

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.387
MedInc: 11.085046

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.387
MedInc: 11.230048

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 11.37505

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 11.520052

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 11.665054

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 11.810056

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 11.955058

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 12.10006

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 12.245061999999999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 12.390063999999999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 12.535065999999999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 12.680068

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 12.82507

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 12.970072

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 13.115074

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 13.260076

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 13.405078

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 13.55008

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 13.695082

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 13.840084

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 13.985085999999999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 14.130087999999999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 14.275089999999999

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 14.420092

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 14.565094

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 14.710096

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 14.855098

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 4.392
MedInc: 15.0001

HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
AveOccup: 2.36968085106383
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.7307100999999996, - 2.7307100999999996, - 2.7463900999999993, - 2.757810099999999, - 2.7525700999999994, - 2.8135300999999995, - 2.8236900999999994, - 2.8846800999999997, - 2.9235400999999994, - 2.913160199999999, - 2.9894102, - 2.9973202, - 3.1831601999999997, - 3.2345202, - 3.1970702000000006, - 3.0667400000000002, - 3.0306401, - 3.10314, - 2.9601700999999996, - 2.9001402, - 2.8824201000000005, - 2.9689900999999996, - 2.9504001000000004, - 3.1014204000000003, - 3.0187801000000003, - 3.1248, - 3.1678100000000007, - 3.1594801000000015, - 3.2709000000000015, - 3.3675900000000016, - 3.3811100000000014, - 3.3788600000000013, - 3.7322105999999984, - 3.741681099999998, - 3.6232407999999983, - 3.7011704999999977, - 3.7444105999999984, - 3.8759508999999985, - 3.8847005999999995, - 4.0376408999999995, - 4.067051500000001, - 4.2452324, - 4.2395326, - 4.2038928, - 4.0217218, - 4.395884199999998, - 4.358774299999998, - 4.440474699999997, - 4.434895099999997, - 4.389664199999998, - 4.4405145999999975, - 4.614176199999998, - 4.6151060999999975, - 4.6662060999999975, - 4.597165899999997, - 4.528975599999997, - 4.501315899999997, - 4.463835699999996, - 4.401136199999995, - 4.370116899999994, - 4.395047099999994, - 4.383277199999994, - 4.388927199999994, - 4.265256099999995, - 4.407727499999994, - 4.383977499999993, - 4.3867675999999935, - 4.3867675999999935, - 4.3867675999999935, - 4.3867675999999935, - 4.3867675999999935, - 4.3867675999999935, - 4.3867675999999935, - 4.3867675999999935, - 4.3867675999999935, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993, - 4.392367599999993 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 1050
prediction: 1.03
MedInc: 0.4999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.028
MedInc: 0.644902

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.026
MedInc: 0.7899039999999999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.026
MedInc: 0.934906

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.043
MedInc: 1.079908

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.039
MedInc: 1.22491

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.051
MedInc: 1.369912

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.042
MedInc: 1.5149139999999999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.097
MedInc: 1.659916

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.083
MedInc: 1.804918

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.103
MedInc: 1.9499199999999999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.18
MedInc: 2.094922

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.192
MedInc: 2.2399240000000002

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.184
MedInc: 2.384926

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.136
MedInc: 2.529928

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.138
MedInc: 2.67493

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.153
MedInc: 2.8199319999999997

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.175
MedInc: 2.9649339999999995

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.391
MedInc: 3.1099360000000003

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.593
MedInc: 3.254938

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.669
MedInc: 3.39994

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.733
MedInc: 3.544942

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.768
MedInc: 3.6899439999999997

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.803
MedInc: 3.8349459999999995

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.87
MedInc: 3.9799480000000003

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.984
MedInc: 4.12495

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 2.015
MedInc: 4.269952

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 2.108
MedInc: 4.414954

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 2.179
MedInc: 4.559956

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 2.328
MedInc: 4.704958

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 2.291
MedInc: 4.84996

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 2.377
MedInc: 4.994962

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 2.862
MedInc: 5.139964

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 2.887
MedInc: 5.284966

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.053
MedInc: 5.429968

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.028
MedInc: 5.5749699999999995

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.116
MedInc: 5.719972

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.291
MedInc: 5.864974

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.204
MedInc: 6.009976

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.187
MedInc: 6.154978

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.294
MedInc: 6.29998

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.343
MedInc: 6.4449819999999995

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.373
MedInc: 6.589984

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.499
MedInc: 6.734986

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.594
MedInc: 6.879988

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.559
MedInc: 7.02499

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.552
MedInc: 7.169992

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.689
MedInc: 7.3149939999999996

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.709
MedInc: 7.459996

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.669
MedInc: 7.604998

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.734
MedInc: 7.75

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.88
MedInc: 7.895002

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.878
MedInc: 8.040004

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.885
MedInc: 8.185006

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.917
MedInc: 8.330008

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.877
MedInc: 8.47501

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.825
MedInc: 8.620012

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.841
MedInc: 8.765013999999999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.749
MedInc: 8.910016

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.592
MedInc: 9.055018

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.383
MedInc: 9.20002

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.372
MedInc: 9.345022

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.379
MedInc: 9.490024

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.372
MedInc: 9.635026

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.431
MedInc: 9.780028

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.425
MedInc: 9.92503

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.428
MedInc: 10.070032

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.419
MedInc: 10.215034

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.434
MedInc: 10.360036

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.458
MedInc: 10.505037999999999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.413
MedInc: 10.650039999999999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.484
MedInc: 10.795042

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.482
MedInc: 10.940044

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.494
MedInc: 11.085046

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.494
MedInc: 11.230048

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.494
MedInc: 11.37505

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.494
MedInc: 11.520052

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.494
MedInc: 11.665054

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.494
MedInc: 11.810056

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 11.955058

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 12.10006

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 12.245061999999999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 12.390063999999999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 12.535065999999999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 12.680068

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 12.82507

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 12.970072

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 13.115074

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 13.260076

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 13.405078

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 13.55008

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 13.695082

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 13.840084

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 13.985085999999999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 14.130087999999999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 14.275089999999999

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 14.420092

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 14.565094

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 14.710096

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 14.855098

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 3.51
MedInc: 15.0001

HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
AveOccup: 2.2120141342756185
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.0295700000000005, - 1.0277500000000004, - 1.0256900000000007, - 1.0256900000000007, - 1.0428700000000006, - 1.0386500000000005, - 1.0505700000000007, - 1.0423800000000008, - 1.0971800000000007, - 1.0832300000000006, - 1.1030200000000006, - 1.1798700000000002, - 1.19205, - 1.1839799999999996, - 1.13649, - 1.1377100000000002, - 1.1528000000000005, - 1.1750200000000006, - 1.39101, - 1.593009999999999, - 1.6693199999999992, - 1.733219999999999, - 1.7678899999999986, - 1.802739999999999, - 1.8702299999999985, - 1.9840099999999978, - 2.0154499999999986, - 2.1076799999999984, - 2.1790299999999987, - 2.327840099999999, - 2.2910999999999992, - 2.3768199999999995, - 2.8619602000000004, - 2.886650100000001, - 3.0528303, - 3.0278802000000002, - 3.1160807, - 3.2914209000000003, - 3.2041704000000006, - 3.1866304, - 3.2941507999999997, - 3.3426208, - 3.373351, - 3.498891199999999, - 3.5943811999999995, - 3.5590913000000004, - 3.5524514, - 3.689262099999999, - 3.709302199999999, - 3.6689217, - 3.7342614000000003, - 3.8798813000000014, - 3.8781911000000013, - 3.8853911000000023, - 3.917331300000002, - 3.876601600000001, - 3.8252519000000014, - 3.8407324, - 3.7493223000000007, - 3.5923717999999996, - 3.382821699999998, - 3.3715315999999973, - 3.3794515999999977, - 3.3716216999999977, - 3.4314821999999974, - 3.4250521999999974, - 3.428002299999997, - 3.4190418999999967, - 3.433842099999997, - 3.457551999999997, - 3.413011999999997, - 3.4844320999999976, - 3.4820119999999974, - 3.4935421999999976, - 3.494242299999998, - 3.494242299999998, - 3.494242299999998, - 3.494242299999998, - 3.494242299999998, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976, - 3.5096523999999976 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 15405
prediction: 1.888
MedInc: 0.4999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.437
MedInc: 0.644902

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.425
MedInc: 0.7899039999999999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.379
MedInc: 0.934906

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.359
MedInc: 1.079908

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.359
MedInc: 1.22491

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.37
MedInc: 1.369912

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.351
MedInc: 1.5149139999999999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.288
MedInc: 1.659916

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.313
MedInc: 1.804918

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.299
MedInc: 1.9499199999999999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.371
MedInc: 2.094922

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.392
MedInc: 2.2399240000000002

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.351
MedInc: 2.384926

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.389
MedInc: 2.529928

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.359
MedInc: 2.67493

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.363
MedInc: 2.8199319999999997

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.383
MedInc: 2.9649339999999995

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.367
MedInc: 3.1099360000000003

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.529
MedInc: 3.254938

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.509
MedInc: 3.39994

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.564
MedInc: 3.544942

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.558
MedInc: 3.6899439999999997

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.621
MedInc: 3.8349459999999995

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.672
MedInc: 3.9799480000000003

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.621
MedInc: 4.12495

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.632
MedInc: 4.269952

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.661
MedInc: 4.414954

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.691
MedInc: 4.559956

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.657
MedInc: 4.704958

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.661
MedInc: 4.84996

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.677
MedInc: 4.994962

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.661
MedInc: 5.139964

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.677
MedInc: 5.284966

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.689
MedInc: 5.429968

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.701
MedInc: 5.5749699999999995

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.036
MedInc: 5.719972

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.365
MedInc: 5.864974

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.359
MedInc: 6.009976

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.658
MedInc: 6.154978

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.858
MedInc: 6.29998

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.762
MedInc: 6.4449819999999995

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.725
MedInc: 6.589984

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.701
MedInc: 6.734986

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.156
MedInc: 6.879988

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.016
MedInc: 7.02499

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.032
MedInc: 7.169992

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.057
MedInc: 7.3149939999999996

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.098
MedInc: 7.459996

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.137
MedInc: 7.604998

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.268
MedInc: 7.75

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.406
MedInc: 7.895002

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.493
MedInc: 8.040004

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.514
MedInc: 8.185006

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.709
MedInc: 8.330008

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.878
MedInc: 8.47501

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.87
MedInc: 8.620012

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 3.868
MedInc: 8.765013999999999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.043
MedInc: 8.910016

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.325
MedInc: 9.055018

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.447
MedInc: 9.20002

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.442
MedInc: 9.345022

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.449
MedInc: 9.490024

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.398
MedInc: 9.635026

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.62
MedInc: 9.780028

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.666
MedInc: 9.92503

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.67
MedInc: 10.070032

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.709
MedInc: 10.215034

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.708
MedInc: 10.360036

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.715
MedInc: 10.505037999999999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.647
MedInc: 10.650039999999999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.717
MedInc: 10.795042

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.71
MedInc: 10.940044

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.713
MedInc: 11.085046

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.712
MedInc: 11.230048

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.712
MedInc: 11.37505

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.713
MedInc: 11.520052

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.724
MedInc: 11.665054

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.724
MedInc: 11.810056

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.724
MedInc: 11.955058

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.724
MedInc: 12.10006

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.724
MedInc: 12.245061999999999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.724
MedInc: 12.390063999999999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.724
MedInc: 12.535065999999999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.724
MedInc: 12.680068

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.723
MedInc: 12.82507

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.723
MedInc: 12.970072

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.725
MedInc: 13.115074

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.725
MedInc: 13.260076

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.725
MedInc: 13.405078

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.725
MedInc: 13.55008

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.733
MedInc: 13.695082

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.733
MedInc: 13.840084

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.733
MedInc: 13.985085999999999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.733
MedInc: 14.130087999999999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.733
MedInc: 14.275089999999999

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.733
MedInc: 14.420092

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.733
MedInc: 14.565094

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.733
MedInc: 14.710096

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.733
MedInc: 14.855098

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 4.733
MedInc: 15.0001

HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
AveOccup: 3.826923076923077
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.8883214000000004, - 1.4372101999999995, - 1.4247500999999994, - 1.3792300999999996, - 1.3592200999999997, - 1.3592200999999997, - 1.3695400999999996, - 1.3509200999999995, - 1.2882300999999998, - 1.3128700999999998, - 1.2990301, - 1.3709900999999995, - 1.3919200999999999, - 1.3511199999999997, - 1.3887899999999995, - 1.3591499999999996, - 1.362619999999999, - 1.3825599999999991, - 1.3674299999999997, - 1.529229999999999, - 1.509069999999999, - 1.5643399999999987, - 1.5584699999999998, - 1.6208399999999992, - 1.6716800999999992, - 1.6207899999999995, - 1.6318199999999996, - 1.66145, - 1.69129, - 1.6572799999999992, - 1.660949999999999, - 1.6769999999999996, - 1.6606699999999999, - 1.6771600000000007, - 1.6888999999999998, - 1.7008200000000002, - 2.0359, - 2.36473, - 2.3594300000000006, - 2.6580199999999996, - 2.8577899999999996, - 2.7623300000000004, - 2.72457, - 2.70145, - 3.1562802, - 3.0160801, - 3.0315301, - 3.0567901, - 3.0983100999999995, - 3.136520199999999, - 3.2680502999999983, - 3.4059304999999984, - 3.493180499999998, - 3.514320499999998, - 3.708811299999998, - 3.8776513999999973, - 3.8696511999999985, - 3.867761199999998, - 4.042711999999997, - 4.3253834999999965, - 4.446844099999996, - 4.441804199999997, - 4.449424099999998, - 4.398343199999999, - 4.619744399999997, - 4.666484699999996, - 4.670284699999997, - 4.708904299999997, - 4.708254299999997, - 4.714774199999997, - 4.646623999999997, - 4.717343999999997, - 4.710273799999997, - 4.713103699999998, - 4.711903899999997, - 4.711903899999997, - 4.712773899999997, - 4.723513999999997, - 4.723513999999997, - 4.723513999999997, - 4.723513999999997, - 4.723513999999997, - 4.723513999999997, - 4.723513999999997, - 4.723513999999997, - 4.723493999999997, - 4.723493999999997, - 4.724774099999997, - 4.724774099999997, - 4.724774099999997, - 4.724774099999997, - 4.733104199999997, - 4.733104199999997, - 4.733104199999997, - 4.733104199999997, - 4.733104199999997, - 4.733104199999997, - 4.733104199999997, - 4.733104199999997, - 4.733104199999997, - 4.733104199999997 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 5058
prediction: 2.354
MedInc: 0.4999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.913
MedInc: 0.644902

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.609
MedInc: 0.7899039999999999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.609
MedInc: 0.934906

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.609
MedInc: 1.079908

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.609
MedInc: 1.22491

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.604
MedInc: 1.369912

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.603
MedInc: 1.5149139999999999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.588
MedInc: 1.659916

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.595
MedInc: 1.804918

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.63
MedInc: 1.9499199999999999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.676
MedInc: 2.094922

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.663
MedInc: 2.2399240000000002

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.608
MedInc: 2.384926

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.756
MedInc: 2.529928

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.87
MedInc: 2.67493

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.922
MedInc: 2.8199319999999997

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.998
MedInc: 2.9649339999999995

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.383
MedInc: 3.1099360000000003

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.851
MedInc: 3.254938

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.934
MedInc: 3.39994

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.981
MedInc: 3.544942

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.038
MedInc: 3.6899439999999997

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.963
MedInc: 3.8349459999999995

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.893
MedInc: 3.9799480000000003

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.687
MedInc: 4.12495

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.548
MedInc: 4.269952

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.557
MedInc: 4.414954

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.744
MedInc: 4.559956

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.708
MedInc: 4.704958

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.707
MedInc: 4.84996

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.726
MedInc: 4.994962

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.083
MedInc: 5.139964

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.116
MedInc: 5.284966

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.165
MedInc: 5.429968

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.261
MedInc: 5.5749699999999995

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.246
MedInc: 5.719972

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.355
MedInc: 5.864974

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.43
MedInc: 6.009976

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.537
MedInc: 6.154978

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.78
MedInc: 6.29998

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.919
MedInc: 6.4449819999999995

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.893
MedInc: 6.589984

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.903
MedInc: 6.734986

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.863
MedInc: 6.879988

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.052
MedInc: 7.02499

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.064
MedInc: 7.169992

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.096
MedInc: 7.3149939999999996

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.113
MedInc: 7.459996

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.081
MedInc: 7.604998

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.251
MedInc: 7.75

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.546
MedInc: 7.895002

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.538
MedInc: 8.040004

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.561
MedInc: 8.185006

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.602
MedInc: 8.330008

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.728
MedInc: 8.47501

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.738
MedInc: 8.620012

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.748
MedInc: 8.765013999999999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.83
MedInc: 8.910016

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.878
MedInc: 9.055018

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.927
MedInc: 9.20002

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.906
MedInc: 9.345022

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.912
MedInc: 9.490024

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.766
MedInc: 9.635026

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.951
MedInc: 9.780028

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.961
MedInc: 9.92503

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.956
MedInc: 10.070032

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.973
MedInc: 10.215034

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 10.360036

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 10.505037999999999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 10.650039999999999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 10.795042

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 10.940044

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 11.085046

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 11.230048

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 11.37505

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 11.520052

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 11.665054

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 11.810056

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 11.955058

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 12.10006

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 12.245061999999999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 12.390063999999999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 12.535065999999999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 12.680068

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 12.82507

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 12.970072

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 13.115074

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 13.260076

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 13.405078

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 13.55008

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 13.695082

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 13.840084

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 13.985085999999999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 14.130087999999999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 14.275089999999999

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 14.420092

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 14.565094

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 14.710096

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 14.855098

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 4.98
MedInc: 15.0001

HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
AveOccup: 2.628524046434494
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.3542118999999992, - 1.9129105999999994, - 1.6086899999999997, - 1.6086899999999997, - 1.6086899999999997, - 1.6086899999999997, - 1.60431, - 1.6029299999999997, - 1.5882099999999997, - 1.5954599999999999, - 1.6297999999999997, - 1.67632, - 1.6626299999999992, - 1.607949999999999, - 1.7558499999999995, - 1.8695500999999992, - 1.9219900999999993, - 1.9979400999999988, - 2.3831203000000003, - 2.8505799999999994, - 2.9343699999999995, - 2.9811399999999986, - 3.0376999999999996, - 2.96256, - 2.8930999999999996, - 2.68663, - 2.54756, - 2.55719, - 2.74422, - 2.7079100000000005, - 2.7067000000000005, - 2.72611, - 3.0828500000000014, - 3.11563, - 3.165249999999999, - 3.260879999999999, - 3.2456299999999993, - 3.3550399999999985, - 3.430050199999999, - 3.536690299999999, - 3.7804008999999996, - 3.9185708000000012, - 3.893060600000001, - 3.9031606999999995, - 3.8632306999999986, - 4.052161699999997, - 4.0642017999999975, - 4.095931799999997, - 4.112932099999998, - 4.081471799999997, - 4.250782499999997, - 4.545783699999997, - 4.538363699999996, - 4.560743999999997, - 4.602224399999996, - 4.727695899999996, - 4.738285999999997, - 4.747876499999995, - 4.829717399999993, - 4.8778283999999905, - 4.92660889999999, - 4.90595879999999, - 4.91160879999999, - 4.766177499999992, - 4.950839399999989, - 4.960669499999989, - 4.956059499999989, - 4.9728796999999885, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988, - 4.980279799999988 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 5171
prediction: 1.474
MedInc: 0.4999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.973
MedInc: 0.644902

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.973
MedInc: 0.7899039999999999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.925
MedInc: 0.934906

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.907
MedInc: 1.079908

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.909
MedInc: 1.22491

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.912
MedInc: 1.369912

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.914
MedInc: 1.5149139999999999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.938
MedInc: 1.659916

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.992
MedInc: 1.804918

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.064
MedInc: 1.9499199999999999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.13
MedInc: 2.094922

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.277
MedInc: 2.2399240000000002

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.346
MedInc: 2.384926

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.377
MedInc: 2.529928

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.372
MedInc: 2.67493

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.378
MedInc: 2.8199319999999997

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.391
MedInc: 2.9649339999999995

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.39
MedInc: 3.1099360000000003

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.498
MedInc: 3.254938

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.5
MedInc: 3.39994

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.487
MedInc: 3.544942

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.483
MedInc: 3.6899439999999997

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.508
MedInc: 3.8349459999999995

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.568
MedInc: 3.9799480000000003

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.698
MedInc: 4.12495

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.71
MedInc: 4.269952

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.741
MedInc: 4.414954

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.769
MedInc: 4.559956

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.764
MedInc: 4.704958

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.754
MedInc: 4.84996

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.871
MedInc: 4.994962

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.94
MedInc: 5.139964

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.01
MedInc: 5.284966

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.982
MedInc: 5.429968

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.022
MedInc: 5.5749699999999995

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.268
MedInc: 5.719972

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.544
MedInc: 5.864974

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.492
MedInc: 6.009976

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.637
MedInc: 6.154978

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.632
MedInc: 6.29998

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.661
MedInc: 6.4449819999999995

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.755
MedInc: 6.589984

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.907
MedInc: 6.734986

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 3.289
MedInc: 6.879988

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 3.833
MedInc: 7.02499

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 3.861
MedInc: 7.169992

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 3.81
MedInc: 7.3149939999999996

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 3.826
MedInc: 7.459996

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 3.766
MedInc: 7.604998

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 3.966
MedInc: 7.75

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.056
MedInc: 7.895002

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.056
MedInc: 8.040004

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.086
MedInc: 8.185006

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.043
MedInc: 8.330008

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.074
MedInc: 8.47501

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.082
MedInc: 8.620012

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.111
MedInc: 8.765013999999999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.131
MedInc: 8.910016

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.153
MedInc: 9.055018

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.209
MedInc: 9.20002

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.216
MedInc: 9.345022

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.222
MedInc: 9.490024

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.149
MedInc: 9.635026

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.275
MedInc: 9.780028

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.25
MedInc: 9.92503

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.253
MedInc: 10.070032

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.279
MedInc: 10.215034

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.279
MedInc: 10.360036

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.279
MedInc: 10.505037999999999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.279
MedInc: 10.650039999999999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.279
MedInc: 10.795042

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.279
MedInc: 10.940044

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.279
MedInc: 11.085046

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.279
MedInc: 11.230048

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.285
MedInc: 11.37505

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.285
MedInc: 11.520052

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.285
MedInc: 11.665054

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.285
MedInc: 11.810056

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.285
MedInc: 11.955058

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.285
MedInc: 12.10006

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.285
MedInc: 12.245061999999999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.285
MedInc: 12.390063999999999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.285
MedInc: 12.535065999999999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.285
MedInc: 12.680068

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.285
MedInc: 12.82507

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.285
MedInc: 12.970072

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.286
MedInc: 13.115074

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.286
MedInc: 13.260076

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.286
MedInc: 13.405078

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.286
MedInc: 13.55008

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.295
MedInc: 13.695082

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.295
MedInc: 13.840084

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.295
MedInc: 13.985085999999999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.295
MedInc: 14.130087999999999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.295
MedInc: 14.275089999999999

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.295
MedInc: 14.420092

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.295
MedInc: 14.565094

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.295
MedInc: 14.710096

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.295
MedInc: 14.855098

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 4.295
MedInc: 15.0001

HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
AveOccup: 4.191358024691358
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.4738812999999995, - 0.9727000000000006, - 0.9726700000000004, - 0.9250900000000005, - 0.9068900000000005, - 0.9093800000000006, - 0.9123500000000004, - 0.9135800000000003, - 0.9379400000000004, - 0.9917700000000005, - 1.0642600000000002, - 1.1298900000000005, - 1.2770500000000005, - 1.3460100000000006, - 1.3768800000000005, - 1.3717300000000001, - 1.3775300000000004, - 1.3914600000000001, - 1.39029, - 1.4981500000000005, - 1.5004900000000005, - 1.4866100000000007, - 1.4826000000000006, - 1.50835, - 1.5680300000000003, - 1.6978300000000004, - 1.7103399999999995, - 1.74113, - 1.7693999999999996, - 1.7641499999999999, - 1.7536599999999998, - 1.8706702000000006, - 1.9400801, - 2.0100202, - 1.9816101999999995, - 2.0224801999999995, - 2.2681305000000003, - 2.5441305000000014, - 2.491570400000001, - 2.636610500000001, - 2.6320804000000013, - 2.661340500000002, - 2.7554406000000013, - 2.9071706, - 3.288771100000001, - 3.832842299999998, - 3.8611222999999986, - 3.809661999999999, - 3.8263321999999977, - 3.7655418, - 3.966412199999998, - 4.055962999999998, - 4.055962999999998, - 4.085772999999998, - 4.042652999999999, - 4.074272899999999, - 4.082403099999998, - 4.110543399999997, - 4.130984099999997, - 4.153444899999996, - 4.209465199999996, - 4.216305499999996, - 4.221955499999996, - 4.1492948999999975, - 4.275066199999996, - 4.250396199999996, - 4.253186299999996, - 4.279436599999995, - 4.279436599999995, - 4.279436599999995, - 4.279436599999995, - 4.279436599999995, - 4.279436599999995, - 4.279436599999995, - 4.279436599999995, - 4.285036599999995, - 4.285036599999995, - 4.285036599999995, - 4.285036599999995, - 4.285036599999995, - 4.285036599999995, - 4.285036599999995, - 4.285036599999995, - 4.285036599999995, - 4.285036599999995, - 4.285036599999995, - 4.285036599999995, - 4.286316699999995, - 4.286316699999995, - 4.286316699999995, - 4.286316699999995, - 4.294646799999994, - 4.294646799999994, - 4.294646799999994, - 4.294646799999994, - 4.294646799999994, - 4.294646799999994, - 4.294646799999994, - 4.294646799999994, - 4.294646799999994, - 4.294646799999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 10439
prediction: 2.923
MedInc: 0.4999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.704
MedInc: 0.644902

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.606
MedInc: 0.7899039999999999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.606
MedInc: 0.934906

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.595
MedInc: 1.079908

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.595
MedInc: 1.22491

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.594
MedInc: 1.369912

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.633
MedInc: 1.5149139999999999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.641
MedInc: 1.659916

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.579
MedInc: 1.804918

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.528
MedInc: 1.9499199999999999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.52
MedInc: 2.094922

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.499
MedInc: 2.2399240000000002

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.346
MedInc: 2.384926

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 1.82
MedInc: 2.529928

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 1.798
MedInc: 2.67493

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 1.772
MedInc: 2.8199319999999997

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 1.792
MedInc: 2.9649339999999995

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 1.975
MedInc: 3.1099360000000003

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.222
MedInc: 3.254938

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.257
MedInc: 3.39994

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.328
MedInc: 3.544942

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.393
MedInc: 3.6899439999999997

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.439
MedInc: 3.8349459999999995

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.377
MedInc: 3.9799480000000003

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.436
MedInc: 4.12495

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.422
MedInc: 4.269952

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.542
MedInc: 4.414954

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.525
MedInc: 4.559956

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.564
MedInc: 4.704958

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.59
MedInc: 4.84996

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.796
MedInc: 4.994962

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.754
MedInc: 5.139964

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.577
MedInc: 5.284966

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.567
MedInc: 5.429968

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.634
MedInc: 5.5749699999999995

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.02
MedInc: 5.719972

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.423
MedInc: 5.864974

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.288
MedInc: 6.009976

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.286
MedInc: 6.154978

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.302
MedInc: 6.29998

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.312
MedInc: 6.4449819999999995

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.346
MedInc: 6.589984

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.473
MedInc: 6.734986

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.713
MedInc: 6.879988

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.75
MedInc: 7.02499

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.747
MedInc: 7.169992

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.835
MedInc: 7.3149939999999996

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.902
MedInc: 7.459996

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.862
MedInc: 7.604998

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.873
MedInc: 7.75

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.928
MedInc: 7.895002

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.947
MedInc: 8.040004

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.965
MedInc: 8.185006

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 3.976
MedInc: 8.330008

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.038
MedInc: 8.47501

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.104
MedInc: 8.620012

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.044
MedInc: 8.765013999999999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.006
MedInc: 8.910016

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.112
MedInc: 9.055018

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.239
MedInc: 9.20002

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.256
MedInc: 9.345022

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.25
MedInc: 9.490024

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.203
MedInc: 9.635026

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.218
MedInc: 9.780028

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.248
MedInc: 9.92503

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.233
MedInc: 10.070032

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.382
MedInc: 10.215034

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.387
MedInc: 10.360036

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.352
MedInc: 10.505037999999999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.332
MedInc: 10.650039999999999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.608
MedInc: 10.795042

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.608
MedInc: 10.940044

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.639
MedInc: 11.085046

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.647
MedInc: 11.230048

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.647
MedInc: 11.37505

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.651
MedInc: 11.520052

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 11.665054

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 11.810056

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 11.955058

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 12.10006

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 12.245061999999999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 12.390063999999999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 12.535065999999999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 12.680068

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 12.82507

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 12.970072

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 13.115074

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 13.260076

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 13.405078

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 13.55008

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 13.695082

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 13.840084

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 13.985085999999999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 14.130087999999999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 14.275089999999999

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 14.420092

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 14.565094

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 14.710096

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 14.855098

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 4.662
MedInc: 15.0001

HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
AveOccup: 2.2896551724137932
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.9230229, - 2.7039620999999987, - 2.605841899999999, - 2.605841899999999, - 2.595271899999999, - 2.595271899999999, - 2.593591899999999, - 2.632752099999999, - 2.641062099999999, - 2.5791719999999994, - 2.5282517999999996, - 2.5204717999999997, - 2.4993716999999993, - 2.3461112999999996, - 1.8201101000000008, - 1.7979201000000007, - 1.7716601000000003, - 1.7916701000000006, - 1.9752402, - 2.2217702999999993, - 2.2569202999999995, - 2.3276503999999996, - 2.3929104999999997, - 2.439250299999999, - 2.3771702999999995, - 2.4364703999999993, - 2.4216002, - 2.5418502, - 2.5245301999999996, - 2.563650199999999, - 2.5899501999999988, - 2.7964603999999986, - 2.753760799999999, - 2.577290199999999, - 2.5670801999999977, - 2.633950199999999, - 3.019941299999998, - 3.4231012999999986, - 3.2877704999999993, - 3.286200499999999, - 3.302100399999999, - 3.311840499999999, - 3.3457407, - 3.4728811999999993, - 3.7132618999999996, - 3.750292399999999, - 3.7471725999999985, - 3.8349327999999985, - 3.901872699999999, - 3.8624023999999992, - 3.8730924999999985, - 3.9283116999999987, - 3.9465615999999977, - 3.9651615999999983, - 3.975571599999997, - 4.037741099999996, - 4.1036911999999965, - 4.044011199999996, - 4.006371299999997, - 4.111782099999996, - 4.239272399999997, - 4.256132399999997, - 4.250172399999997, - 4.202542199999997, - 4.2179524999999956, - 4.248042699999995, - 4.233152399999996, - 4.381522999999995, - 4.3874130999999945, - 4.351902999999996, - 4.331742799999996, - 4.607693699999995, - 4.607693699999995, - 4.638753699999995, - 4.646864199999994, - 4.646864199999994, - 4.650834299999994, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995, - 4.661574399999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 2657
prediction: 0.865
MedInc: 0.4999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.863
MedInc: 0.644902

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.868
MedInc: 0.7899039999999999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.868
MedInc: 0.934906

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.872
MedInc: 1.079908

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.875
MedInc: 1.22491

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.864
MedInc: 1.369912

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.863
MedInc: 1.5149139999999999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.842
MedInc: 1.659916

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.839
MedInc: 1.804918

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.876
MedInc: 1.9499199999999999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.889
MedInc: 2.094922

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.922
MedInc: 2.2399240000000002

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.035
MedInc: 2.384926

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.189
MedInc: 2.529928

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.241
MedInc: 2.67493

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.23
MedInc: 2.8199319999999997

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.229
MedInc: 2.9649339999999995

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.381
MedInc: 3.1099360000000003

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.263
MedInc: 3.254938

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.309
MedInc: 3.39994

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.306
MedInc: 3.544942

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.227
MedInc: 3.6899439999999997

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.226
MedInc: 3.8349459999999995

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.392
MedInc: 3.9799480000000003

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.829
MedInc: 4.12495

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.999
MedInc: 4.269952

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 2.066
MedInc: 4.414954

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 2.069
MedInc: 4.559956

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 2.096
MedInc: 4.704958

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 2.108
MedInc: 4.84996

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 2.101
MedInc: 4.994962

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 2.608
MedInc: 5.139964

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 2.755
MedInc: 5.284966

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.098
MedInc: 5.429968

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.078
MedInc: 5.5749699999999995

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.092
MedInc: 5.719972

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.182
MedInc: 5.864974

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.093
MedInc: 6.009976

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.189
MedInc: 6.154978

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.364
MedInc: 6.29998

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.437
MedInc: 6.4449819999999995

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.472
MedInc: 6.589984

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.595
MedInc: 6.734986

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.698
MedInc: 6.879988

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.73
MedInc: 7.02499

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.706
MedInc: 7.169992

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.83
MedInc: 7.3149939999999996

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.91
MedInc: 7.459996

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.859
MedInc: 7.604998

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.892
MedInc: 7.75

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 4.079
MedInc: 7.895002

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 4.117
MedInc: 8.040004

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 4.146
MedInc: 8.185006

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 4.161
MedInc: 8.330008

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 4.166
MedInc: 8.47501

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 4.109
MedInc: 8.620012

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 4.044
MedInc: 8.765013999999999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.944
MedInc: 8.910016

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.662
MedInc: 9.055018

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.238
MedInc: 9.20002

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.237
MedInc: 9.345022

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.242
MedInc: 9.490024

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.233
MedInc: 9.635026

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.201
MedInc: 9.780028

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.197
MedInc: 9.92503

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.233
MedInc: 10.070032

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.248
MedInc: 10.215034

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.248
MedInc: 10.360036

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.269
MedInc: 10.505037999999999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.198
MedInc: 10.650039999999999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.262
MedInc: 10.795042

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.262
MedInc: 10.940044

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.264
MedInc: 11.085046

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.266
MedInc: 11.230048

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.259
MedInc: 11.37505

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.259
MedInc: 11.520052

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.281
MedInc: 11.665054

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.281
MedInc: 11.810056

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 11.955058

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 12.10006

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 12.245061999999999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 12.390063999999999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 12.535065999999999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 12.680068

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 12.82507

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 12.970072

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 13.115074

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 13.260076

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 13.405078

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 13.55008

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 13.695082

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 13.840084

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 13.985085999999999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 14.130087999999999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 14.275089999999999

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 14.420092

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 14.565094

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 14.710096

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 14.855098

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 3.291
MedInc: 15.0001

HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
AveOccup: 2.411042944785276
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.8651299999999995, - 0.8627199999999995, - 0.8679999999999995, - 0.8679999999999995, - 0.8717799999999996, - 0.8746899999999996, - 0.8643299999999996, - 0.8627299999999997, - 0.8418699999999998, - 0.8386399999999999, - 0.8761799999999995, - 0.8893299999999997, - 0.9220899999999996, - 1.0353599999999994, - 1.1892999999999991, - 1.240929999999999, - 1.2295499999999993, - 1.2286799999999998, - 1.3813900000000003, - 1.2628499999999998, - 1.3091599999999997, - 1.3061399999999994, - 1.2268999999999999, - 1.2263, - 1.3919999999999997, - 1.8290002, - 1.9986102000000003, - 2.0658902, - 2.0688002, - 2.0962902, - 2.1083501999999994, - 2.1006900999999996, - 2.6080604, - 2.7547002000000003, - 3.0975203000000007, - 3.0783704, - 3.0921308999999995, - 3.1815315999999982, - 3.0929709999999995, - 3.1887910999999978, - 3.3639712999999976, - 3.4366613999999975, - 3.472371499999998, - 3.5952814999999987, - 3.6976913999999983, - 3.729561399999998, - 3.7059313999999977, - 3.830061799999997, - 3.909811699999997, - 3.8585611999999974, - 3.8917012999999976, - 4.079381499999998, - 4.116791499999999, - 4.146211699999999, - 4.160821799999999, - 4.165952099999999, - 4.108732099999999, - 4.043512299999999, - 3.9441125, - 3.662151700000001, - 3.2379212999999982, - 3.2369312999999975, - 3.2419912999999974, - 3.2331711999999975, - 3.2010013999999973, - 3.1966713999999974, - 3.2333318999999974, - 3.2481318999999975, - 3.2481318999999975, - 3.2686719999999974, - 3.1984116999999976, - 3.262401799999998, - 3.262401799999998, - 3.2641214999999977, - 3.265981799999998, - 3.259101799999998, - 3.259101799999998, - 3.2805819999999977, - 3.2805819999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977, - 3.2913220999999977 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 18888
prediction: 0.98
MedInc: 0.4999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.98
MedInc: 0.644902

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.986
MedInc: 0.7899039999999999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.985
MedInc: 0.934906

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.99
MedInc: 1.079908

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.978
MedInc: 1.22491

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.981
MedInc: 1.369912

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.982
MedInc: 1.5149139999999999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.013
MedInc: 1.659916

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.991
MedInc: 1.804918

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.012
MedInc: 1.9499199999999999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.013
MedInc: 2.094922

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.013
MedInc: 2.2399240000000002

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.112
MedInc: 2.384926

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.147
MedInc: 2.529928

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.163
MedInc: 2.67493

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.181
MedInc: 2.8199319999999997

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.207
MedInc: 2.9649339999999995

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.299
MedInc: 3.1099360000000003

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.376
MedInc: 3.254938

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.41
MedInc: 3.39994

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.4
MedInc: 3.544942

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.462
MedInc: 3.6899439999999997

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.478
MedInc: 3.8349459999999995

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.566
MedInc: 3.9799480000000003

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.862
MedInc: 4.12495

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.084
MedInc: 4.269952

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.156
MedInc: 4.414954

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.213
MedInc: 4.559956

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.299
MedInc: 4.704958

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.337
MedInc: 4.84996

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.434
MedInc: 4.994962

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.59
MedInc: 5.139964

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.669
MedInc: 5.284966

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.688
MedInc: 5.429968

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.705
MedInc: 5.5749699999999995

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.802
MedInc: 5.719972

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.913
MedInc: 5.864974

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 2.996
MedInc: 6.009976

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.154
MedInc: 6.154978

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.413
MedInc: 6.29998

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.388
MedInc: 6.4449819999999995

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.404
MedInc: 6.589984

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.463
MedInc: 6.734986

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.773
MedInc: 6.879988

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.851
MedInc: 7.02499

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.857
MedInc: 7.169992

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.797
MedInc: 7.3149939999999996

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.761
MedInc: 7.459996

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.851
MedInc: 7.604998

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.924
MedInc: 7.75

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 4.326
MedInc: 7.895002

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 4.327
MedInc: 8.040004

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 4.331
MedInc: 8.185006

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 4.347
MedInc: 8.330008

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 4.291
MedInc: 8.47501

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 4.323
MedInc: 8.620012

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 4.331
MedInc: 8.765013999999999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 4.189
MedInc: 8.910016

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 4.014
MedInc: 9.055018

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.953
MedInc: 9.20002

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.943
MedInc: 9.345022

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.943
MedInc: 9.490024

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.918
MedInc: 9.635026

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.888
MedInc: 9.780028

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.891
MedInc: 9.92503

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.904
MedInc: 10.070032

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.976
MedInc: 10.215034

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.984
MedInc: 10.360036

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.991
MedInc: 10.505037999999999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.991
MedInc: 10.650039999999999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.991
MedInc: 10.795042

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.991
MedInc: 10.940044

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.991
MedInc: 11.085046

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.991
MedInc: 11.230048

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 11.37505

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 11.520052

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 11.665054

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 11.810056

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 11.955058

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 12.10006

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 12.245061999999999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 12.390063999999999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 12.535065999999999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 12.680068

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 12.82507

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 12.970072

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 13.115074

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 13.260076

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 13.405078

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 13.55008

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 13.695082

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 13.840084

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 13.985085999999999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 14.130087999999999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 14.275089999999999

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 14.420092

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 14.565094

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 14.710096

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 14.855098

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 3.997
MedInc: 15.0001

HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
AveOccup: 2.6070381231671553
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.9798700000000001, - 0.9802900000000001, - 0.98551, - 0.98539, - 0.9895600000000002, - 0.97799, - 0.9807700000000001, - 0.98177, - 1.0129900000000003, - 0.9911999999999999, - 1.01175, - 1.0133900000000002, - 1.0131000000000006, - 1.1122799999999997, - 1.1470699999999991, - 1.1632699999999998, - 1.1810600000000004, - 1.2074900000000004, - 1.2989600000000003, - 1.3755899999999996, - 1.4097799999999998, - 1.39964, - 1.46174, - 1.4775200000000002, - 1.5657400000000008, - 1.8619599999999996, - 2.08444, - 2.1562700000000006, - 2.2130900000000002, - 2.298530000000001, - 2.3368, - 2.43422, - 2.5897199999999994, - 2.6692100000000005, - 2.6884100000000006, - 2.7046500000000004, - 2.8023301000000007, - 2.9127601000000016, - 2.9955702000000013, - 3.1544705000000004, - 3.4130509000000004, - 3.3878708, - 3.4037707, - 3.4631605000000003, - 3.773051099999998, - 3.850561499999999, - 3.857211499999999, - 3.7965910999999988, - 3.761280999999999, - 3.850801199999998, - 3.924321799999997, - 4.326333299999996, - 4.327303099999997, - 4.330762899999998, - 4.347173299999998, - 4.290823399999998, - 4.3228139999999975, - 4.331254299999997, - 4.189364299999998, - 4.014464399999997, - 3.9531145999999975, - 3.9428144999999972, - 3.9428144999999972, - 3.9175241999999972, - 3.8883645999999983, - 3.891424699999998, - 3.904124699999999, - 3.976455299999998, - 3.9838553999999977, - 3.9909053999999973, - 3.9909053999999973, - 3.9909053999999973, - 3.9909053999999973, - 3.9909053999999973, - 3.9909053999999973, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975, - 3.9965053999999975 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 14236
prediction: 1.518
MedInc: 0.4999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.081
MedInc: 0.644902

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.051
MedInc: 0.7899039999999999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 0.982
MedInc: 0.934906

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 0.963
MedInc: 1.079908

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 0.967
MedInc: 1.22491

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 0.973
MedInc: 1.369912

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 0.97
MedInc: 1.5149139999999999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 0.974
MedInc: 1.659916

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.004
MedInc: 1.804918

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.03
MedInc: 1.9499199999999999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.082
MedInc: 2.094922

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.204
MedInc: 2.2399240000000002

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.184
MedInc: 2.384926

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.137
MedInc: 2.529928

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.14
MedInc: 2.67493

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.13
MedInc: 2.8199319999999997

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.123
MedInc: 2.9649339999999995

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.213
MedInc: 3.1099360000000003

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.27
MedInc: 3.254938

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.338
MedInc: 3.39994

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.36
MedInc: 3.544942

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.332
MedInc: 3.6899439999999997

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.362
MedInc: 3.8349459999999995

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.396
MedInc: 3.9799480000000003

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.456
MedInc: 4.12495

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.505
MedInc: 4.269952

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.539
MedInc: 4.414954

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.569
MedInc: 4.559956

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.571
MedInc: 4.704958

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.587
MedInc: 4.84996

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.593
MedInc: 4.994962

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.693
MedInc: 5.139964

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.749
MedInc: 5.284966

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.79
MedInc: 5.429968

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.831
MedInc: 5.5749699999999995

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.991
MedInc: 5.719972

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.123
MedInc: 5.864974

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.099
MedInc: 6.009976

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.169
MedInc: 6.154978

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.335
MedInc: 6.29998

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.488
MedInc: 6.4449819999999995

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.484
MedInc: 6.589984

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.513
MedInc: 6.734986

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.991
MedInc: 6.879988

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.089
MedInc: 7.02499

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.103
MedInc: 7.169992

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.168
MedInc: 7.3149939999999996

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.179
MedInc: 7.459996

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.217
MedInc: 7.604998

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.237
MedInc: 7.75

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.336
MedInc: 7.895002

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.366
MedInc: 8.040004

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.37
MedInc: 8.185006

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.437
MedInc: 8.330008

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.598
MedInc: 8.47501

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.665
MedInc: 8.620012

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.621
MedInc: 8.765013999999999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.676
MedInc: 8.910016

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 3.765
MedInc: 9.055018

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.105
MedInc: 9.20002

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.129
MedInc: 9.345022

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.123
MedInc: 9.490024

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.095
MedInc: 9.635026

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.245
MedInc: 9.780028

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.261
MedInc: 9.92503

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.29
MedInc: 10.070032

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.38
MedInc: 10.215034

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.401
MedInc: 10.360036

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.339
MedInc: 10.505037999999999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.225
MedInc: 10.650039999999999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.533
MedInc: 10.795042

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.527
MedInc: 10.940044

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.543
MedInc: 11.085046

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.551
MedInc: 11.230048

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.551
MedInc: 11.37505

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.547
MedInc: 11.520052

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 11.665054

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 11.810056

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 11.955058

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 12.10006

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 12.245061999999999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 12.390063999999999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 12.535065999999999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 12.680068

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 12.82507

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 12.970072

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 13.115074

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 13.260076

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 13.405078

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 13.55008

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 13.695082

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 13.840084

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 13.985085999999999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 14.130087999999999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 14.275089999999999

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 14.420092

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 14.565094

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 14.710096

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 14.855098

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 4.558
MedInc: 15.0001

HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
AveOccup: 4.179640718562874
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.5180012999999994, - 1.0809900999999997, - 1.05131, - 0.9818499999999998, - 0.9629699999999999, - 0.9670599999999999, - 0.97316, - 0.9702399999999998, - 0.9738899999999997, - 1.0038399999999996, - 1.0295499999999997, - 1.08165, - 1.2035101000000001, - 1.1844799999999998, - 1.1367899999999989, - 1.1401599999999994, - 1.1297999999999992, - 1.1234599999999995, - 1.213, - 1.26966, - 1.3380699999999999, - 1.3603999999999998, - 1.3320499999999997, - 1.36195, - 1.39615, - 1.4563900000000007, - 1.5051300000000012, - 1.538810000000002, - 1.5686100000000025, - 1.5714900000000016, - 1.5871900000000014, - 1.5929200000000003, - 1.6929499999999995, - 1.7488499999999996, - 1.7901099999999999, - 1.8307899999999993, - 1.991219999999999, - 2.123499999999999, - 2.0991199999999997, - 2.168719999999999, - 2.335089999999999, - 2.4876399999999994, - 2.483509999999999, - 2.5133399999999995, - 2.9910206999999986, - 3.089040799999999, - 3.103450699999999, - 3.168100699999999, - 3.1786507999999993, - 3.2172108999999995, - 3.2372109999999985, - 3.335940499999999, - 3.365890499999998, - 3.370280399999999, - 3.4367704999999984, - 3.5978801999999996, - 3.664560199999998, - 3.620950199999998, - 3.676200499999999, - 3.765160699999999, - 4.105390799999999, - 4.1292008, - 4.123340799999999, - 4.095170799999999, - 4.2449912, - 4.2611712, - 4.2901714, - 4.380021800000001, - 4.401121800000001, - 4.339251700000002, - 4.224761400000002, - 4.532913299999999, - 4.527123199999999, - 4.542863299999999, - 4.550753699999999, - 4.550753699999999, - 4.547083699999998, - 4.557823799999998, - 4.557823799999998, - 4.557823799999998, - 4.557823799999998, - 4.557823799999998, - 4.557823799999998, - 4.557823799999998, - 4.557823799999998, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985, - 4.5578037999999985 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 14811
prediction: 1.83
MedInc: 0.4999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.601
MedInc: 0.644902

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.581
MedInc: 0.7899039999999999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.541
MedInc: 0.934906

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.487
MedInc: 1.079908

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.484
MedInc: 1.22491

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.495
MedInc: 1.369912

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.509
MedInc: 1.5149139999999999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.515
MedInc: 1.659916

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.529
MedInc: 1.804918

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.574
MedInc: 1.9499199999999999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.656
MedInc: 2.094922

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.761
MedInc: 2.2399240000000002

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.975
MedInc: 2.384926

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 2.207
MedInc: 2.529928

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 2.279
MedInc: 2.67493

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 2.339
MedInc: 2.8199319999999997

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 2.233
MedInc: 2.9649339999999995

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 2.118
MedInc: 3.1099360000000003

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 2.385
MedInc: 3.254938

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 2.438
MedInc: 3.39994

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 2.568
MedInc: 3.544942

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 2.782
MedInc: 3.6899439999999997

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 2.971
MedInc: 3.8349459999999995

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 3.679
MedInc: 3.9799480000000003

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 3.755
MedInc: 4.12495

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 3.955
MedInc: 4.269952

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.018
MedInc: 4.414954

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 3.992
MedInc: 4.559956

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.086
MedInc: 4.704958

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.074
MedInc: 4.84996

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.192
MedInc: 4.994962

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.095
MedInc: 5.139964

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.107
MedInc: 5.284966

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 3.964
MedInc: 5.429968

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 3.943
MedInc: 5.5749699999999995

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 3.935
MedInc: 5.719972

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.008
MedInc: 5.864974

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.012
MedInc: 6.009976

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 3.994
MedInc: 6.154978

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 3.965
MedInc: 6.29998

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.042
MedInc: 6.4449819999999995

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.157
MedInc: 6.589984

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.271
MedInc: 6.734986

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.117
MedInc: 6.879988

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.263
MedInc: 7.02499

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.263
MedInc: 7.169992

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.26
MedInc: 7.3149939999999996

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.281
MedInc: 7.459996

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.371
MedInc: 7.604998

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.544
MedInc: 7.75

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.693
MedInc: 7.895002

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.686
MedInc: 8.040004

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.683
MedInc: 8.185006

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.698
MedInc: 8.330008

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.636
MedInc: 8.47501

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.57
MedInc: 8.620012

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.517
MedInc: 8.765013999999999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.581
MedInc: 8.910016

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.665
MedInc: 9.055018

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.712
MedInc: 9.20002

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.708
MedInc: 9.345022

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.709
MedInc: 9.490024

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.584
MedInc: 9.635026

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.797
MedInc: 9.780028

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.825
MedInc: 9.92503

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.834
MedInc: 10.070032

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.873
MedInc: 10.215034

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.878
MedInc: 10.360036

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.889
MedInc: 10.505037999999999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.888
MedInc: 10.650039999999999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.888
MedInc: 10.795042

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 10.940044

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 11.085046

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 11.230048

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 11.37505

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 11.520052

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 11.665054

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 11.810056

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 11.955058

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 12.10006

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 12.245061999999999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 12.390063999999999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 12.535065999999999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.883
MedInc: 12.680068

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 12.82507

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 12.970072

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 13.115074

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 13.260076

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 13.405078

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 13.55008

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 13.695082

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 13.840084

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 13.985085999999999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 14.130087999999999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 14.275089999999999

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 14.420092

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 14.565094

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 14.710096

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 14.855098

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.881
MedInc: 15.0001

HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
AveOccup: 2.178173719376392
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.8303011000000005, - 1.6014004, - 1.5814903, - 1.5406602999999999, - 1.4872802999999999, - 1.4843802999999998, - 1.4953203, - 1.5086703, - 1.5145003, - 1.5285903000000003, - 1.5740903, - 1.6555802999999998, - 1.7610803000000002, - 1.9752004000000003, - 2.2073204, - 2.2790505, - 2.3391805000000003, - 2.2325005, - 2.1178803, - 2.384810099999999, - 2.438300099999999, - 2.568490099999999, - 2.7822301999999985, - 2.9709407999999993, - 3.6788619999999987, - 3.755372199999998, - 3.955442399999998, - 4.018422199999998, - 3.9920518999999985, - 4.085982099999999, - 4.0735221, - 4.191822400000001, - 4.094511400000004, - 4.106792200000002, - 3.9639619000000006, - 3.9425720000000006, - 3.934962399999998, - 4.007532599999998, - 4.0122424999999975, - 3.9935324999999966, - 3.964602699999995, - 4.041722799999996, - 4.157493299999996, - 4.270853999999996, - 4.117413099999997, - 4.263353199999995, - 4.263493099999995, - 4.259633199999995, - 4.280623199999995, - 4.371152999999994, - 4.544033999999994, - 4.692654399999994, - 4.685764499999993, - 4.682794599999993, - 4.697715299999993, - 4.636285099999992, - 4.569784699999993, - 4.516834499999993, - 4.581015199999992, - 4.6653269999999925, - 4.711587499999992, - 4.707667499999992, - 4.709007399999993, - 4.583636299999994, - 4.797268099999992, - 4.824908299999992, - 4.834288399999991, - 4.8729787999999905, - 4.877548899999991, - 4.889028899999991, - 4.888328799999991, - 4.888328799999991, - 4.882538699999991, - 4.882538699999991, - 4.882538699999991, - 4.882538699999991, - 4.882538699999991, - 4.882538699999991, - 4.882538699999991, - 4.882538699999991, - 4.882538699999991, - 4.882538699999991, - 4.882538699999991, - 4.882538699999991, - 4.882538699999991, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992, - 4.881238599999992 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 8998
prediction: 2.211
MedInc: 0.4999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.7
MedInc: 0.644902

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.386
MedInc: 0.7899039999999999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.386
MedInc: 0.934906

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.386
MedInc: 1.079908

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.386
MedInc: 1.22491

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.374
MedInc: 1.369912

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.379
MedInc: 1.5149139999999999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.345
MedInc: 1.659916

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.35
MedInc: 1.804918

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.358
MedInc: 1.9499199999999999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.389
MedInc: 2.094922

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.333
MedInc: 2.2399240000000002

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.338
MedInc: 2.384926

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.431
MedInc: 2.529928

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.471
MedInc: 2.67493

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.509
MedInc: 2.8199319999999997

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 1.543
MedInc: 2.9649339999999995

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 2.013
MedInc: 3.1099360000000003

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 2.644
MedInc: 3.254938

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 2.701
MedInc: 3.39994

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 2.72
MedInc: 3.544942

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 2.779
MedInc: 3.6899439999999997

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 2.695
MedInc: 3.8349459999999995

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 2.8
MedInc: 3.9799480000000003

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 2.912
MedInc: 4.12495

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 2.709
MedInc: 4.269952

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.036
MedInc: 4.414954

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.093
MedInc: 4.559956

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.101
MedInc: 4.704958

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.171
MedInc: 4.84996

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.146
MedInc: 4.994962

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.345
MedInc: 5.139964

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.288
MedInc: 5.284966

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.323
MedInc: 5.429968

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.422
MedInc: 5.5749699999999995

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.544
MedInc: 5.719972

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.569
MedInc: 5.864974

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.591
MedInc: 6.009976

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.677
MedInc: 6.154978

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.788
MedInc: 6.29998

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.842
MedInc: 6.4449819999999995

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.858
MedInc: 6.589984

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.986
MedInc: 6.734986

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.164
MedInc: 6.879988

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.682
MedInc: 7.02499

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.684
MedInc: 7.169992

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.759
MedInc: 7.3149939999999996

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.768
MedInc: 7.459996

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.721
MedInc: 7.604998

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.813
MedInc: 7.75

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.85
MedInc: 7.895002

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.853
MedInc: 8.040004

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.863
MedInc: 8.185006

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.884
MedInc: 8.330008

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.871
MedInc: 8.47501

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.826
MedInc: 8.620012

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.823
MedInc: 8.765013999999999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.896
MedInc: 8.910016

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.939
MedInc: 9.055018

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.962
MedInc: 9.20002

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.974
MedInc: 9.345022

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.974
MedInc: 9.490024

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.771
MedInc: 9.635026

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.983
MedInc: 9.780028

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.973
MedInc: 9.92503

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.982
MedInc: 10.070032

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 10.215034

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 10.360036

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 10.505037999999999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 10.650039999999999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 10.795042

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 10.940044

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 11.085046

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 11.230048

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 11.37505

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 11.520052

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 11.665054

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 11.810056

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 11.955058

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 12.10006

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 12.245061999999999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 12.390063999999999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 12.535065999999999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 12.680068

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 12.82507

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 12.970072

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 13.115074

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 13.260076

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 13.405078

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 13.55008

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 13.695082

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 13.840084

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 13.985085999999999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 14.130087999999999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 14.275089999999999

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 14.420092

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 14.565094

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 14.710096

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 14.855098

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 5.0
MedInc: 15.0001

HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
AveOccup: 2.729064039408867
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.2105419000000004, - 1.6999706000000003, - 1.3856400000000002, - 1.3856400000000002, - 1.3856700000000002, - 1.3856899999999999, - 1.3744800000000001, - 1.3790300000000002, - 1.34539, - 1.34951, - 1.3580000000000003, - 1.3888500000000006, - 1.3332900000000008, - 1.3384300000000005, - 1.4305699999999997, - 1.4707500000000004, - 1.5093000000000003, - 1.5425899999999997, - 2.0129199999999994, - 2.643549999999998, - 2.7013699999999976, - 2.7204299999999972, - 2.7794099999999973, - 2.694929999999997, - 2.7997099999999984, - 2.9122801000000003, - 2.7085600999999997, - 3.0358104000000004, - 3.0926804, - 3.1006004000000003, - 3.1712606999999995, - 3.1464906999999993, - 3.3454610999999996, - 3.2877608000000005, - 3.3225207000000005, - 3.4223607, - 3.5436306999999987, - 3.5688705999999986, - 3.5906906, - 3.6771405999999978, - 3.787951099999997, - 3.8423311999999976, - 3.857971599999999, - 3.9857824999999973, - 4.163973199999998, - 4.682316499999996, - 4.684266499999995, - 4.758786699999995, - 4.768486999999994, - 4.720686499999994, - 4.8134474999999926, - 4.850456999999994, - 4.853247299999993, - 4.863157599999993, - 4.884227699999993, - 4.870887899999992, - 4.826207199999994, - 4.823227399999992, - 4.8960881999999915, - 4.9391089999999895, - 4.9617992999999885, - 4.973979499999989, - 4.973979499999989, - 4.770677399999992, - 4.982869699999988, - 4.972569599999988, - 4.981949699999989, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 889
prediction: 1.867
MedInc: 0.4999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.872
MedInc: 0.644902

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.872
MedInc: 0.7899039999999999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.872
MedInc: 0.934906

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.872
MedInc: 1.079908

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.873
MedInc: 1.22491

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.873
MedInc: 1.369912

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.863
MedInc: 1.5149139999999999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.866
MedInc: 1.659916

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.856
MedInc: 1.804918

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.84
MedInc: 1.9499199999999999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.83
MedInc: 2.094922

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.822
MedInc: 2.2399240000000002

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.901
MedInc: 2.384926

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 1.945
MedInc: 2.529928

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.034
MedInc: 2.67493

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.035
MedInc: 2.8199319999999997

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.022
MedInc: 2.9649339999999995

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.245
MedInc: 3.1099360000000003

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.359
MedInc: 3.254938

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.436
MedInc: 3.39994

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.43
MedInc: 3.544942

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.49
MedInc: 3.6899439999999997

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.542
MedInc: 3.8349459999999995

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.709
MedInc: 3.9799480000000003

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.81
MedInc: 4.12495

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.681
MedInc: 4.269952

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.706
MedInc: 4.414954

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.702
MedInc: 4.559956

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.636
MedInc: 4.704958

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.599
MedInc: 4.84996

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.54
MedInc: 4.994962

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.528
MedInc: 5.139964

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.481
MedInc: 5.284966

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.712
MedInc: 5.429968

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.736
MedInc: 5.5749699999999995

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.873
MedInc: 5.719972

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.897
MedInc: 5.864974

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.834
MedInc: 6.009976

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.955
MedInc: 6.154978

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.085
MedInc: 6.29998

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.27
MedInc: 6.4449819999999995

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.414
MedInc: 6.589984

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.333
MedInc: 6.734986

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.545
MedInc: 6.879988

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.493
MedInc: 7.02499

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.459
MedInc: 7.169992

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.455
MedInc: 7.3149939999999996

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.601
MedInc: 7.459996

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.588
MedInc: 7.604998

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.931
MedInc: 7.75

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.165
MedInc: 7.895002

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.191
MedInc: 8.040004

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.16
MedInc: 8.185006

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.273
MedInc: 8.330008

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.337
MedInc: 8.47501

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.394
MedInc: 8.620012

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.391
MedInc: 8.765013999999999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.418
MedInc: 8.910016

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.701
MedInc: 9.055018

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.766
MedInc: 9.20002

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.8
MedInc: 9.345022

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.811
MedInc: 9.490024

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.766
MedInc: 9.635026

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.968
MedInc: 9.780028

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.973
MedInc: 9.92503

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 10.070032

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 10.215034

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 10.360036

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 10.505037999999999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.898
MedInc: 10.650039999999999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.973
MedInc: 10.795042

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.973
MedInc: 10.940044

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.977
MedInc: 11.085046

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 11.230048

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 11.37505

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.968
MedInc: 11.520052

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 11.665054

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 11.810056

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 11.955058

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 12.10006

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 12.245061999999999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 12.390063999999999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 12.535065999999999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 12.680068

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 12.82507

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 12.970072

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 13.115074

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 13.260076

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 13.405078

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 13.55008

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 13.695082

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 13.840084

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 13.985085999999999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 14.130087999999999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 14.275089999999999

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 14.420092

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 14.565094

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 14.710096

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 14.855098

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.978
MedInc: 15.0001

HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
AveOccup: 2.9947368421052634
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.8665300000000002, - 1.8720999999999999, - 1.8720999999999999, - 1.8720999999999999, - 1.8720999999999999, - 1.8730799999999999, - 1.8730799999999999, - 1.8625999999999998, - 1.8655199999999996, - 1.8559299999999996, - 1.8404799999999994, - 1.82998, - 1.82166, - 1.9006899999999995, - 1.94521, - 2.0344400000000005, - 2.0348, - 2.0220500000000006, - 2.2447301, - 2.3585601000000005, - 2.4363801000000005, - 2.4301001000000007, - 2.490240000000001, - 2.5423703000000013, - 2.7087807000000015, - 2.809591000000001, - 2.680551000000001, - 2.7056209000000013, - 2.702130800000001, - 2.6364707, - 2.5990007000000004, - 2.5397803999999993, - 2.527740099999999, - 2.48138, - 2.7116100000000007, - 2.7360601000000004, - 2.8731301, - 2.8970102000000004, - 2.8341002000000004, - 2.9549302000000006, - 3.0847802, - 3.2697003000000002, - 3.4144402000000027, - 3.3327901000000004, - 3.5450501, - 3.4931500999999994, - 3.4594699999999996, - 3.454880099999999, - 3.601010199999999, - 3.5884101999999984, - 3.9309707999999977, - 4.165491699999999, - 4.191361399999998, - 4.159741499999999, - 4.273252099999997, - 4.337262599999997, - 4.394283199999997, - 4.391293899999996, - 4.418094199999996, - 4.700745999999993, - 4.766476499999993, - 4.800016899999993, - 4.810976999999993, - 4.765606499999994, - 4.96769919999999, - 4.97329929999999, - 4.97769929999999, - 4.9783392999999885, - 4.9783392999999885, - 4.9783392999999885, - 4.89808889999999, - 4.973499099999989, - 4.973499099999989, - 4.977179099999989, - 4.978339299999989, - 4.978339299999989, - 4.96759919999999, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989, - 4.978339299999989 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 4941
prediction: 1.65
MedInc: 0.4999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.07
MedInc: 0.644902

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.07
MedInc: 0.7899039999999999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.046
MedInc: 0.934906

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.002
MedInc: 1.079908

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.021
MedInc: 1.22491

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.033
MedInc: 1.369912

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.042
MedInc: 1.5149139999999999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.049
MedInc: 1.659916

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.017
MedInc: 1.804918

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.08
MedInc: 1.9499199999999999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.126
MedInc: 2.094922

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.284
MedInc: 2.2399240000000002

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.329
MedInc: 2.384926

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.346
MedInc: 2.529928

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.407
MedInc: 2.67493

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.414
MedInc: 2.8199319999999997

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.433
MedInc: 2.9649339999999995

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.538
MedInc: 3.1099360000000003

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.603
MedInc: 3.254938

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.601
MedInc: 3.39994

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.579
MedInc: 3.544942

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.579
MedInc: 3.6899439999999997

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.6
MedInc: 3.8349459999999995

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.604
MedInc: 3.9799480000000003

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.666
MedInc: 4.12495

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.658
MedInc: 4.269952

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.665
MedInc: 4.414954

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.718
MedInc: 4.559956

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.872
MedInc: 4.704958

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.917
MedInc: 4.84996

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.078
MedInc: 4.994962

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.097
MedInc: 5.139964

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.096
MedInc: 5.284966

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.112
MedInc: 5.429968

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.172
MedInc: 5.5749699999999995

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.362
MedInc: 5.719972

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.668
MedInc: 5.864974

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.62
MedInc: 6.009976

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.811
MedInc: 6.154978

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.785
MedInc: 6.29998

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.857
MedInc: 6.4449819999999995

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.908
MedInc: 6.589984

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 3.033
MedInc: 6.734986

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 3.262
MedInc: 6.879988

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 3.787
MedInc: 7.02499

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 3.806
MedInc: 7.169992

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 3.761
MedInc: 7.3149939999999996

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 3.739
MedInc: 7.459996

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 3.695
MedInc: 7.604998

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 3.986
MedInc: 7.75

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.115
MedInc: 7.895002

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.118
MedInc: 8.040004

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.174
MedInc: 8.185006

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.126
MedInc: 8.330008

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.162
MedInc: 8.47501

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.15
MedInc: 8.620012

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.187
MedInc: 8.765013999999999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.202
MedInc: 8.910016

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.227
MedInc: 9.055018

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.224
MedInc: 9.20002

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.219
MedInc: 9.345022

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.224
MedInc: 9.490024

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.148
MedInc: 9.635026

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.271
MedInc: 9.780028

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.248
MedInc: 9.92503

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.25
MedInc: 10.070032

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.278
MedInc: 10.215034

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.278
MedInc: 10.360036

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.278
MedInc: 10.505037999999999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.278
MedInc: 10.650039999999999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.278
MedInc: 10.795042

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.278
MedInc: 10.940044

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.278
MedInc: 11.085046

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.278
MedInc: 11.230048

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.284
MedInc: 11.37505

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.284
MedInc: 11.520052

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.284
MedInc: 11.665054

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.284
MedInc: 11.810056

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.284
MedInc: 11.955058

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.284
MedInc: 12.10006

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.284
MedInc: 12.245061999999999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.284
MedInc: 12.390063999999999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.284
MedInc: 12.535065999999999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.284
MedInc: 12.680068

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.284
MedInc: 12.82507

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.284
MedInc: 12.970072

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.285
MedInc: 13.115074

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.285
MedInc: 13.260076

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.285
MedInc: 13.405078

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.285
MedInc: 13.55008

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.294
MedInc: 13.695082

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.294
MedInc: 13.840084

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.294
MedInc: 13.985085999999999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.294
MedInc: 14.130087999999999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.294
MedInc: 14.275089999999999

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.294
MedInc: 14.420092

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.294
MedInc: 14.565094

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.294
MedInc: 14.710096

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.294
MedInc: 14.855098

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 4.294
MedInc: 15.0001

HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
AveOccup: 4.435323383084577
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.649531500000001, - 1.0703199999999997, - 1.0703199999999997, - 1.0462099999999999, - 1.00223, - 1.0212400000000001, - 1.0326600000000001, - 1.0422500000000003, - 1.0493600000000005, - 1.0169900000000007, - 1.0802500000000002, - 1.1262, - 1.2844300000000002, - 1.3289900000000006, - 1.3463800000000004, - 1.4071300000000002, - 1.4144700000000001, - 1.4325199999999998, - 1.5380699999999996, - 1.6030000000000002, - 1.6014100000000002, - 1.5786300000000002, - 1.5793599999999999, - 1.60022, - 1.6043499999999997, - 1.6660599999999994, - 1.6578599999999994, - 1.6650199999999995, - 1.7181899999999992, - 1.8716199999999992, - 1.9173399999999992, - 2.0781302999999998, - 2.0974699999999995, - 2.0956299999999994, - 2.1116599999999996, - 2.172439999999999, - 2.3621501999999994, - 2.6684702000000002, - 2.620310100000001, - 2.8110203000000014, - 2.7846904000000006, - 2.8570806000000015, - 2.9083507, - 3.0334307999999996, - 3.2623406999999998, - 3.7874520999999985, - 3.8064020999999992, - 3.7614618999999987, - 3.738951999999999, - 3.6947517, - 3.9857022999999994, - 4.115492899999999, - 4.117712999999999, - 4.1738130999999985, - 4.125763199999999, - 4.1619731999999985, - 4.150243399999998, - 4.186793799999998, - 4.202034599999997, - 4.226615399999996, - 4.224235299999996, - 4.2186454999999965, - 4.224295499999997, - 4.1478949999999974, - 4.271346299999996, - 4.247596299999996, - 4.250386399999996, - 4.278306699999995, - 4.278306699999995, - 4.278306699999995, - 4.278306699999995, - 4.278306699999995, - 4.278306699999995, - 4.278306699999995, - 4.278306699999995, - 4.283906699999995, - 4.283906699999995, - 4.283906699999995, - 4.283906699999995, - 4.283906699999995, - 4.283906699999995, - 4.283906699999995, - 4.283906699999995, - 4.283906699999995, - 4.283906699999995, - 4.283906699999995, - 4.283906699999995, - 4.285186799999995, - 4.285186799999995, - 4.285186799999995, - 4.285186799999995, - 4.293516899999995, - 4.293516899999995, - 4.293516899999995, - 4.293516899999995, - 4.293516899999995, - 4.293516899999995, - 4.293516899999995, - 4.293516899999995, - 4.293516899999995, - 4.293516899999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 9145
prediction: 2.323
MedInc: 0.4999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.0
MedInc: 0.644902

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 1.703
MedInc: 0.7899039999999999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 1.703
MedInc: 0.934906

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 1.703
MedInc: 1.079908

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 1.703
MedInc: 1.22491

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 1.702
MedInc: 1.369912

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 1.697
MedInc: 1.5149139999999999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 1.724
MedInc: 1.659916

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 1.72
MedInc: 1.804918

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 1.725
MedInc: 1.9499199999999999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 1.806
MedInc: 2.094922

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 1.894
MedInc: 2.2399240000000002

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.1
MedInc: 2.384926

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.468
MedInc: 2.529928

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.489
MedInc: 2.67493

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.521
MedInc: 2.8199319999999997

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.539
MedInc: 2.9649339999999995

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.461
MedInc: 3.1099360000000003

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.327
MedInc: 3.254938

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.308
MedInc: 3.39994

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.286
MedInc: 3.544942

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.346
MedInc: 3.6899439999999997

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.431
MedInc: 3.8349459999999995

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.281
MedInc: 3.9799480000000003

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.08
MedInc: 4.12495

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.025
MedInc: 4.269952

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.106
MedInc: 4.414954

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.13
MedInc: 4.559956

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.511
MedInc: 4.704958

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.587
MedInc: 4.84996

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.612
MedInc: 4.994962

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.804
MedInc: 5.139964

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.705
MedInc: 5.284966

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.943
MedInc: 5.429968

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.992
MedInc: 5.5749699999999995

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 3.221
MedInc: 5.719972

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 3.664
MedInc: 5.864974

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 3.407
MedInc: 6.009976

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 3.406
MedInc: 6.154978

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 3.495
MedInc: 6.29998

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 3.576
MedInc: 6.4449819999999995

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 3.652
MedInc: 6.589984

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 3.801
MedInc: 6.734986

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 3.896
MedInc: 6.879988

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 3.937
MedInc: 7.02499

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 3.901
MedInc: 7.169992

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 3.99
MedInc: 7.3149939999999996

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.055
MedInc: 7.459996

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.011
MedInc: 7.604998

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.042
MedInc: 7.75

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.171
MedInc: 7.895002

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.208
MedInc: 8.040004

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.213
MedInc: 8.185006

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.302
MedInc: 8.330008

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.361
MedInc: 8.47501

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.331
MedInc: 8.620012

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.278
MedInc: 8.765013999999999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.329
MedInc: 8.910016

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.161
MedInc: 9.055018

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.519
MedInc: 9.20002

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.545
MedInc: 9.345022

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.549
MedInc: 9.490024

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.535
MedInc: 9.635026

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.599
MedInc: 9.780028

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.621
MedInc: 9.92503

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.672
MedInc: 10.070032

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.643
MedInc: 10.215034

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.674
MedInc: 10.360036

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.612
MedInc: 10.505037999999999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.567
MedInc: 10.650039999999999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.808
MedInc: 10.795042

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.806
MedInc: 10.940044

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.816
MedInc: 11.085046

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.824
MedInc: 11.230048

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.824
MedInc: 11.37505

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.828
MedInc: 11.520052

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 11.665054

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 11.810056

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 11.955058

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 12.10006

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 12.245061999999999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 12.390063999999999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 12.535065999999999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 12.680068

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 12.82507

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 12.970072

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 13.115074

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 13.260076

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 13.405078

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 13.55008

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 13.695082

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 13.840084

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 13.985085999999999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 14.130087999999999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 14.275089999999999

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 14.420092

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 14.565094

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 14.710096

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 14.855098

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 4.839
MedInc: 15.0001

HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
AveOccup: 2.3329621380846324
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.3234816999999994, - 2.000180699999999, - 1.7032000999999992, - 1.7032000999999992, - 1.7032000999999992, - 1.7032000999999992, - 1.701640099999999, - 1.696800099999999, - 1.723990099999999, - 1.7199600999999993, - 1.7249000999999995, - 1.8063701, - 1.8944800999999996, - 2.1002704, - 2.467580800000001, - 2.4885608, - 2.5211509000000003, - 2.538950999999999, - 2.4610605999999997, - 2.3271702999999997, - 2.3075202, - 2.2859702, - 2.3463502999999997, - 2.4313504, - 2.2812902999999998, - 2.080070100000001, - 2.0251800000000006, - 2.106210000000001, - 2.130160000000001, - 2.51054, - 2.5873699999999995, - 2.6115900000000005, - 2.8040405000000006, - 2.704590400000001, - 2.9426606999999994, - 2.9920904999999993, - 3.220590799999999, - 3.6643520999999963, - 3.4068806999999985, - 3.405740699999999, - 3.4947905999999995, - 3.575920999999998, - 3.6516613999999974, - 3.800661699999998, - 3.896182299999997, - 3.9366624999999957, - 3.9008024999999957, - 3.9903731999999956, - 4.054873299999996, - 4.011022999999996, - 4.041732699999996, - 4.171092799999998, - 4.208452699999997, - 4.213302999999997, - 4.302433199999996, - 4.361083699999996, - 4.330703999999997, - 4.277603999999997, - 4.328844099999996, - 4.161373099999995, - 4.518704699999994, - 4.544534899999994, - 4.549155099999995, - 4.534914999999995, - 4.598625299999994, - 4.621355399999994, - 4.6717956999999934, - 4.642665399999994, - 4.673695899999994, - 4.611925899999994, - 4.566535499999994, - 4.808427499999992, - 4.8060073999999915, - 4.8161471999999925, - 4.824497699999991, - 4.824497699999991, - 4.828467799999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991, - 4.839207899999991 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 2434
prediction: 0.585
MedInc: 0.4999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.58
MedInc: 0.644902

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.561
MedInc: 0.7899039999999999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.561
MedInc: 0.934906

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.565
MedInc: 1.079908

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.563
MedInc: 1.22491

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.567
MedInc: 1.369912

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.576
MedInc: 1.5149139999999999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.576
MedInc: 1.659916

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.583
MedInc: 1.804918

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.582
MedInc: 1.9499199999999999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.587
MedInc: 2.094922

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.625
MedInc: 2.2399240000000002

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.669
MedInc: 2.384926

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.7
MedInc: 2.529928

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.706
MedInc: 2.67493

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.745
MedInc: 2.8199319999999997

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.804
MedInc: 2.9649339999999995

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.981
MedInc: 3.1099360000000003

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.207
MedInc: 3.254938

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.191
MedInc: 3.39994

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.21
MedInc: 3.544942

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.226
MedInc: 3.6899439999999997

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.206
MedInc: 3.8349459999999995

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.157
MedInc: 3.9799480000000003

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.05
MedInc: 4.12495

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.999
MedInc: 4.269952

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.015
MedInc: 4.414954

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.14
MedInc: 4.559956

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.191
MedInc: 4.704958

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.247
MedInc: 4.84996

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.289
MedInc: 4.994962

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.51
MedInc: 5.139964

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.612
MedInc: 5.284966

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.639
MedInc: 5.429968

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.705
MedInc: 5.5749699999999995

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.984
MedInc: 5.719972

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 2.202
MedInc: 5.864974

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 2.249
MedInc: 6.009976

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 2.402
MedInc: 6.154978

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 2.447
MedInc: 6.29998

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 2.603
MedInc: 6.4449819999999995

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 2.803
MedInc: 6.589984

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 2.788
MedInc: 6.734986

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.34
MedInc: 6.879988

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.148
MedInc: 7.02499

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.187
MedInc: 7.169992

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.184
MedInc: 7.3149939999999996

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.182
MedInc: 7.459996

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.189
MedInc: 7.604998

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.276
MedInc: 7.75

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.364
MedInc: 7.895002

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.383
MedInc: 8.040004

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.246
MedInc: 8.185006

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.195
MedInc: 8.330008

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.419
MedInc: 8.47501

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.416
MedInc: 8.620012

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.364
MedInc: 8.765013999999999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.374
MedInc: 8.910016

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.468
MedInc: 9.055018

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.025
MedInc: 9.20002

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.048
MedInc: 9.345022

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.051
MedInc: 9.490024

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.038
MedInc: 9.635026

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.134
MedInc: 9.780028

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.112
MedInc: 9.92503

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.145
MedInc: 10.070032

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.162
MedInc: 10.215034

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.16
MedInc: 10.360036

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.007
MedInc: 10.505037999999999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 3.954
MedInc: 10.650039999999999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.302
MedInc: 10.795042

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.302
MedInc: 10.940044

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.315
MedInc: 11.085046

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.324
MedInc: 11.230048

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.329
MedInc: 11.37505

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.33
MedInc: 11.520052

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 11.665054

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 11.810056

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 11.955058

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 12.10006

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 12.245061999999999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 12.390063999999999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 12.535065999999999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 12.680068

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 12.82507

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 12.970072

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 13.115074

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 13.260076

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 13.405078

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 13.55008

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 13.695082

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 13.840084

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 13.985085999999999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 14.130087999999999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 14.275089999999999

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 14.420092

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 14.565094

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 14.710096

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 14.855098

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 4.341
MedInc: 15.0001

HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
AveOccup: 4.019464720194647
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.5848999999999999, - 0.5804199999999998, - 0.5611599999999999, - 0.5611599999999999, - 0.5652499999999999, - 0.56297, - 0.5666399999999999, - 0.5758699999999998, - 0.5763199999999997, - 0.5825700000000003, - 0.5818100000000004, - 0.5866800000000002, - 0.6246900000000003, - 0.6691600000000001, - 0.7001600000000002, - 0.7060600000000002, - 0.7453199999999999, - 0.8044899999999996, - 0.9814799999999999, - 1.2066000000000003, - 1.1908, - 1.2100799999999996, - 1.2260599999999997, - 1.2058799999999996, - 1.1567999999999996, - 1.0501799999999997, - 0.9985599999999996, - 1.0149599999999994, - 1.1400999999999994, - 1.1906399999999995, - 1.2470099999999995, - 1.288549999999999, - 1.50991, - 1.61156, - 1.6387100000000003, - 1.7053700000000012, - 1.9835400000000007, - 2.2019799999999994, - 2.248689999999999, - 2.401639999999999, - 2.446759999999999, - 2.6028899999999986, - 2.802940199999999, - 2.7880699999999985, - 3.3404804999999995, - 3.1478401000000003, - 3.1870500999999996, - 3.1843801, - 3.1821000999999995, - 3.1894501, - 3.2756102000000005, - 3.3641006, - 3.3834005999999994, - 3.2457905000000005, - 3.194530499999999, - 3.419460499999999, - 3.416080499999999, - 3.3636504999999994, - 3.3742508000000004, - 3.468041699999999, - 4.025033599999997, - 4.048053799999997, - 4.050853899999997, - 4.038283899999997, - 4.133554299999997, - 4.112144199999998, - 4.144754399999997, - 4.161704199999997, - 4.159904199999997, - 4.0072934999999985, - 3.953573099999998, - 4.302475399999995, - 4.302475399999995, - 4.314885199999996, - 4.323695799999995, - 4.329295799999995, - 4.330165799999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995, - 4.340905899999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 12733
prediction: 1.069
MedInc: 0.4999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.067
MedInc: 0.644902

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.019
MedInc: 0.7899039999999999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.013
MedInc: 0.934906

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.006
MedInc: 1.079908

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 0.997
MedInc: 1.22491

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 0.995
MedInc: 1.369912

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 0.993
MedInc: 1.5149139999999999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 0.998
MedInc: 1.659916

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.013
MedInc: 1.804918

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.063
MedInc: 1.9499199999999999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.079
MedInc: 2.094922

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.101
MedInc: 2.2399240000000002

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.159
MedInc: 2.384926

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.099
MedInc: 2.529928

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.081
MedInc: 2.67493

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.139
MedInc: 2.8199319999999997

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.17
MedInc: 2.9649339999999995

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.129
MedInc: 3.1099360000000003

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.132
MedInc: 3.254938

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.172
MedInc: 3.39994

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.191
MedInc: 3.544942

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.307
MedInc: 3.6899439999999997

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.355
MedInc: 3.8349459999999995

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.484
MedInc: 3.9799480000000003

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.66
MedInc: 4.12495

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.731
MedInc: 4.269952

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.739
MedInc: 4.414954

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.735
MedInc: 4.559956

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.686
MedInc: 4.704958

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.675
MedInc: 4.84996

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 1.753
MedInc: 4.994962

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 2.087
MedInc: 5.139964

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 2.215
MedInc: 5.284966

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 2.243
MedInc: 5.429968

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 2.257
MedInc: 5.5749699999999995

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 2.27
MedInc: 5.719972

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 2.353
MedInc: 5.864974

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 2.316
MedInc: 6.009976

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 2.49
MedInc: 6.154978

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 2.524
MedInc: 6.29998

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 2.647
MedInc: 6.4449819999999995

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.11
MedInc: 6.589984

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.074
MedInc: 6.734986

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.185
MedInc: 6.879988

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.28
MedInc: 7.02499

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.28
MedInc: 7.169992

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.282
MedInc: 7.3149939999999996

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.338
MedInc: 7.459996

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.338
MedInc: 7.604998

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.489
MedInc: 7.75

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.608
MedInc: 7.895002

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.6
MedInc: 8.040004

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.613
MedInc: 8.185006

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.581
MedInc: 8.330008

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.541
MedInc: 8.47501

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.466
MedInc: 8.620012

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.48
MedInc: 8.765013999999999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.562
MedInc: 8.910016

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.468
MedInc: 9.055018

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.287
MedInc: 9.20002

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.284
MedInc: 9.345022

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.292
MedInc: 9.490024

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.278
MedInc: 9.635026

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.297
MedInc: 9.780028

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.303
MedInc: 9.92503

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.3
MedInc: 10.070032

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.331
MedInc: 10.215034

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.331
MedInc: 10.360036

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.355
MedInc: 10.505037999999999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.298
MedInc: 10.650039999999999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.373
MedInc: 10.795042

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.371
MedInc: 10.940044

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.382
MedInc: 11.085046

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.383
MedInc: 11.230048

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.376
MedInc: 11.37505

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.376
MedInc: 11.520052

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 11.665054

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 11.810056

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 11.955058

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 12.10006

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 12.245061999999999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 12.390063999999999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 12.535065999999999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 12.680068

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 12.82507

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 12.970072

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 13.115074

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 13.260076

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 13.405078

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 13.55008

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 13.695082

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 13.840084

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 13.985085999999999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 14.130087999999999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 14.275089999999999

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 14.420092

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 14.565094

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 14.710096

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 14.855098

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.387
MedInc: 15.0001

HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
AveOccup: 3.0027173913043477
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.0690600000000001, - 1.06719, - 1.01851, - 1.01306, - 1.00572, - 0.99665, - 0.9948700000000001, - 0.9930700000000001, - 0.9980300000000001, - 1.01349, - 1.06278, - 1.0791300000000001, - 1.1007700000000007, - 1.1589200000000004, - 1.0985000000000007, - 1.0814400000000004, - 1.1388200000000004, - 1.1699400000000004, - 1.12918, - 1.1322300000000003, - 1.1715900000000004, - 1.1910300000000005, - 1.3073900000000003, - 1.3554700000000006, - 1.4837401000000006, - 1.6596201000000006, - 1.7310101999999998, - 1.7394502000000005, - 1.7346402000000003, - 1.6862000999999998, - 1.67516, - 1.752680000000001, - 2.08697, - 2.2152100000000003, - 2.2433100000000006, - 2.25674, - 2.2696999999999994, - 2.353179999999999, - 2.3158999999999987, - 2.4896000000000003, - 2.52392, - 2.6469401, - 3.1102502, - 3.0736802000000005, - 3.1848901000000014, - 3.2799304000000005, - 3.2803003, - 3.2821202000000005, - 3.337540200000002, - 3.3375502000000017, - 3.489000300000002, - 3.6078604999999992, - 3.6000202000000003, - 3.6130603999999993, - 3.580550299999999, - 3.5411003999999995, - 3.466440599999999, - 3.4803109999999986, - 3.5624815999999986, - 3.4682213999999982, - 3.2868911999999995, - 3.284231199999999, - 3.2921511999999984, - 3.277951299999998, - 3.296861699999998, - 3.3034017999999974, - 3.300231799999998, - 3.331311899999997, - 3.331311899999997, - 3.355021799999997, - 3.2977316999999977, - 3.373261999999998, - 3.370841899999998, - 3.3823720999999978, - 3.383072199999998, - 3.376192199999998, - 3.376192199999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998, - 3.386932299999998 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 2256
prediction: 0.825
MedInc: 0.4999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.823
MedInc: 0.644902

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.823
MedInc: 0.7899039999999999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.823
MedInc: 0.934906

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.824
MedInc: 1.079908

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.824
MedInc: 1.22491

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.823
MedInc: 1.369912

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.824
MedInc: 1.5149139999999999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.818
MedInc: 1.659916

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.829
MedInc: 1.804918

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.839
MedInc: 1.9499199999999999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.862
MedInc: 2.094922

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.867
MedInc: 2.2399240000000002

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.824
MedInc: 2.384926

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.848
MedInc: 2.529928

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.857
MedInc: 2.67493

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.865
MedInc: 2.8199319999999997

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.863
MedInc: 2.9649339999999995

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.837
MedInc: 3.1099360000000003

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.829
MedInc: 3.254938

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.807
MedInc: 3.39994

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.827
MedInc: 3.544942

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.847
MedInc: 3.6899439999999997

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.87
MedInc: 3.8349459999999995

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.932
MedInc: 3.9799480000000003

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.04
MedInc: 4.12495

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.073
MedInc: 4.269952

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.108
MedInc: 4.414954

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.166
MedInc: 4.559956

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.274
MedInc: 4.704958

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.315
MedInc: 4.84996

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.373
MedInc: 4.994962

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.719
MedInc: 5.139964

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.718
MedInc: 5.284966

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.773
MedInc: 5.429968

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.903
MedInc: 5.5749699999999995

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.285
MedInc: 5.719972

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.528
MedInc: 5.864974

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.553
MedInc: 6.009976

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.555
MedInc: 6.154978

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.437
MedInc: 6.29998

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.484
MedInc: 6.4449819999999995

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.716
MedInc: 6.589984

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.816
MedInc: 6.734986

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.479
MedInc: 6.879988

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.376
MedInc: 7.02499

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.358
MedInc: 7.169992

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.39
MedInc: 7.3149939999999996

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.445
MedInc: 7.459996

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.474
MedInc: 7.604998

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.546
MedInc: 7.75

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.571
MedInc: 7.895002

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.55
MedInc: 8.040004

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.465
MedInc: 8.185006

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.605
MedInc: 8.330008

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.721
MedInc: 8.47501

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.742
MedInc: 8.620012

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.725
MedInc: 8.765013999999999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.77
MedInc: 8.910016

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 3.811
MedInc: 9.055018

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.313
MedInc: 9.20002

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.348
MedInc: 9.345022

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.346
MedInc: 9.490024

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.334
MedInc: 9.635026

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.392
MedInc: 9.780028

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.386
MedInc: 9.92503

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.461
MedInc: 10.070032

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.449
MedInc: 10.215034

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.471
MedInc: 10.360036

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.391
MedInc: 10.505037999999999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.337
MedInc: 10.650039999999999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.656
MedInc: 10.795042

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.653
MedInc: 10.940044

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.674
MedInc: 11.085046

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.683
MedInc: 11.230048

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.683
MedInc: 11.37505

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.684
MedInc: 11.520052

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.695
MedInc: 11.665054

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.695
MedInc: 11.810056

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 11.955058

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 12.10006

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 12.245061999999999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 12.390063999999999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 12.535065999999999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 12.680068

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 12.82507

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 12.970072

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 13.115074

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 13.260076

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 13.405078

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 13.55008

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 13.695082

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 13.840084

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 13.985085999999999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 14.130087999999999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 14.275089999999999

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 14.420092

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 14.565094

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 14.710096

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 14.855098

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 4.71
MedInc: 15.0001

HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
AveOccup: 3.1548117154811717
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.8247300000000002, - 0.8225500000000001, - 0.8225500000000001, - 0.8225500000000001, - 0.8238600000000001, - 0.8241500000000002, - 0.8234200000000002, - 0.8241100000000001, - 0.8178300000000001, - 0.8293300000000001, - 0.8389099999999999, - 0.8622399999999999, - 0.86701, - 0.8244499999999999, - 0.8476600000000002, - 0.8572100000000005, - 0.8648900000000002, - 0.8628399999999999, - 0.8367800000000001, - 0.8287899999999996, - 0.8070799999999998, - 0.8274199999999997, - 0.8466000000000001, - 0.87032, - 0.9319399999999999, - 1.0402699999999998, - 1.0727299999999997, - 1.1083100000000001, - 1.16615, - 1.2735499999999997, - 1.3148999999999997, - 1.3725899999999998, - 1.7189500000000002, - 1.7182800000000007, - 1.77265, - 1.9030600000000006, - 2.284540000000001, - 2.5284100999999994, - 2.55287, - 2.5549299999999993, - 2.437299999999999, - 2.4842500000000007, - 2.7159502999999994, - 2.8159003, - 3.478951799999999, - 3.3755411000000004, - 3.358141, - 3.389701100000001, - 3.444721200000001, - 3.474001200000001, - 3.5460912000000007, - 3.5705507000000023, - 3.550270600000001, - 3.4654606000000014, - 3.6049909000000007, - 3.7208811000000015, - 3.741971700000001, - 3.7251121, - 3.770402199999999, - 3.8109223999999977, - 4.312864299999996, - 4.348454599999996, - 4.346364699999996, - 4.333794699999996, - 4.391924699999995, - 4.386284699999996, - 4.4614248999999955, - 4.448534599999996, - 4.471074799999996, - 4.390954599999995, - 4.337274399999996, - 4.655546399999994, - 4.653126299999994, - 4.674186199999995, - 4.683476799999993, - 4.683476799999993, - 4.684346799999993, - 4.6950868999999935, - 4.6950868999999935, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993, - 4.710496999999993 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 16175
prediction: 2.749
MedInc: 0.4999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.784
MedInc: 0.644902

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.788
MedInc: 0.7899039999999999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.788
MedInc: 0.934906

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.788
MedInc: 1.079908

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.784
MedInc: 1.22491

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.786
MedInc: 1.369912

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.795
MedInc: 1.5149139999999999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.885
MedInc: 1.659916

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.989
MedInc: 1.804918

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.959
MedInc: 1.9499199999999999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.916
MedInc: 2.094922

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.867
MedInc: 2.2399240000000002

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.04
MedInc: 2.384926

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.376
MedInc: 2.529928

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.375
MedInc: 2.67493

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.302
MedInc: 2.8199319999999997

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.311
MedInc: 2.9649339999999995

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.245
MedInc: 3.1099360000000003

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.958
MedInc: 3.254938

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.031
MedInc: 3.39994

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.061
MedInc: 3.544942

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.97
MedInc: 3.6899439999999997

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.96
MedInc: 3.8349459999999995

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.975
MedInc: 3.9799480000000003

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.069
MedInc: 4.12495

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.196
MedInc: 4.269952

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.207
MedInc: 4.414954

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.213
MedInc: 4.559956

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.214
MedInc: 4.704958

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.257
MedInc: 4.84996

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.269
MedInc: 4.994962

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.647
MedInc: 5.139964

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.727
MedInc: 5.284966

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.769
MedInc: 5.429968

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.821
MedInc: 5.5749699999999995

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.757
MedInc: 5.719972

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.786
MedInc: 5.864974

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.778
MedInc: 6.009976

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.757
MedInc: 6.154978

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.72
MedInc: 6.29998

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.764
MedInc: 6.4449819999999995

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.792
MedInc: 6.589984

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.749
MedInc: 6.734986

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.476
MedInc: 6.879988

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.223
MedInc: 7.02499

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.223
MedInc: 7.169992

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.148
MedInc: 7.3149939999999996

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.076
MedInc: 7.459996

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.287
MedInc: 7.604998

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.32
MedInc: 7.75

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.463
MedInc: 7.895002

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.475
MedInc: 8.040004

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.526
MedInc: 8.185006

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.475
MedInc: 8.330008

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.364
MedInc: 8.47501

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.33
MedInc: 8.620012

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.351
MedInc: 8.765013999999999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.115
MedInc: 8.910016

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.803
MedInc: 9.055018

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.66
MedInc: 9.20002

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.66
MedInc: 9.345022

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.654
MedInc: 9.490024

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.654
MedInc: 9.635026

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.648
MedInc: 9.780028

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.636
MedInc: 9.92503

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.625
MedInc: 10.070032

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.69
MedInc: 10.215034

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.69
MedInc: 10.360036

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.69
MedInc: 10.505037999999999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.692
MedInc: 10.650039999999999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.692
MedInc: 10.795042

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.692
MedInc: 10.940044

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.789
MedInc: 11.085046

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.789
MedInc: 11.230048

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.925
MedInc: 11.37505

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.002
MedInc: 11.520052

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.067
MedInc: 11.665054

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.067
MedInc: 11.810056

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.067
MedInc: 11.955058

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.095
MedInc: 12.10006

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.095
MedInc: 12.245061999999999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.095
MedInc: 12.390063999999999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.117
MedInc: 12.535065999999999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.172
MedInc: 12.680068

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.172
MedInc: 12.82507

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.172
MedInc: 12.970072

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.172
MedInc: 13.115074

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.273
MedInc: 13.260076

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.273
MedInc: 13.405078

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.273
MedInc: 13.55008

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.273
MedInc: 13.695082

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.374
MedInc: 13.840084

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.374
MedInc: 13.985085999999999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.374
MedInc: 14.130087999999999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.374
MedInc: 14.275089999999999

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.374
MedInc: 14.420092

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.374
MedInc: 14.565094

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.374
MedInc: 14.710096

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.374
MedInc: 14.855098

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 3.374
MedInc: 15.0001

HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
AveOccup: 1.3703703703703705
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.7487002, - 2.7837002, - 2.7875802000000003, - 2.7875802000000003, - 2.7875802000000003, - 2.7844102000000004, - 2.7864302000000003, - 2.7953102000000003, - 2.885230199999999, - 2.9890602, - 2.9586401999999996, - 2.9156301999999994, - 2.866650199999999, - 3.0403303999999998, - 3.3760311999999963, - 3.375091399999997, - 3.302461399999997, - 3.3109010999999975, - 3.245240899999999, - 2.957620799999999, - 3.0313008999999984, - 3.0613309999999982, - 2.9700807999999994, - 2.9604207, - 2.9745906000000004, - 3.0692508, - 3.195710799999999, - 3.2066908999999995, - 3.2129108999999993, - 3.2136510999999994, - 3.2568810999999993, - 3.2685109999999993, - 3.646520799999998, - 3.727431099999996, - 3.7689311999999955, - 3.8213309999999963, - 3.757130599999995, - 3.7855006999999956, - 3.7784706999999953, - 3.7569606999999956, - 3.7195305999999952, - 3.763680699999996, - 3.7923508999999966, - 3.7487508999999966, - 3.4763607999999984, - 3.222890499999999, - 3.222890499999999, - 3.1476904999999995, - 3.075780399999999, - 3.286970599999999, - 3.3197207999999985, - 3.463361299999999, - 3.474971399999999, - 3.5259314999999987, - 3.4749015999999995, - 3.3642715999999995, - 3.330041799999999, - 3.3505418999999987, - 3.1154914999999987, - 2.8034908, - 2.6604207000000004, - 2.6604207000000004, - 2.6535407, - 2.6535407, - 2.6480109000000005, - 2.6355109000000003, - 2.6252107999999996, - 2.6898811, - 2.6898811, - 2.6898811, - 2.6917311000000006, - 2.6917311000000006, - 2.6917311000000006, - 2.7892314999999996, - 2.7892314999999996, - 2.924631799999999, - 3.0020821999999994, - 3.0670824999999993, - 3.0670824999999993, - 3.0670824999999993, - 3.094582599999999, - 3.094582599999999, - 3.094582599999999, - 3.117082699999999, - 3.172082899999999, - 3.172082899999999, - 3.172082899999999, - 3.172082899999999, - 3.2733332999999987, - 3.2733332999999987, - 3.2733332999999987, - 3.2733332999999987, - 3.3740335999999984, - 3.3740335999999984, - 3.3740335999999984, - 3.3740335999999984, - 3.3740335999999984, - 3.3740335999999984, - 3.3740335999999984, - 3.3740335999999984, - 3.3740335999999984 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 10014
prediction: 1.302
MedInc: 0.4999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.304
MedInc: 0.644902

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.297
MedInc: 0.7899039999999999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.293
MedInc: 0.934906

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.293
MedInc: 1.079908

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.292
MedInc: 1.22491

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.3
MedInc: 1.369912

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.304
MedInc: 1.5149139999999999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.309
MedInc: 1.659916

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.308
MedInc: 1.804918

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.32
MedInc: 1.9499199999999999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.336
MedInc: 2.094922

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.352
MedInc: 2.2399240000000002

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.37
MedInc: 2.384926

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.297
MedInc: 2.529928

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.329
MedInc: 2.67493

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.335
MedInc: 2.8199319999999997

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.34
MedInc: 2.9649339999999995

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.497
MedInc: 3.1099360000000003

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.609
MedInc: 3.254938

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.642
MedInc: 3.39994

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.605
MedInc: 3.544942

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.578
MedInc: 3.6899439999999997

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.588
MedInc: 3.8349459999999995

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.635
MedInc: 3.9799480000000003

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.774
MedInc: 4.12495

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.944
MedInc: 4.269952

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.915
MedInc: 4.414954

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.957
MedInc: 4.559956

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.982
MedInc: 4.704958

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.986
MedInc: 4.84996

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.004
MedInc: 4.994962

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.687
MedInc: 5.139964

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.63
MedInc: 5.284966

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.816
MedInc: 5.429968

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.844
MedInc: 5.5749699999999995

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.926
MedInc: 5.719972

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.154
MedInc: 5.864974

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.896
MedInc: 6.009976

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.031
MedInc: 6.154978

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.089
MedInc: 6.29998

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.149
MedInc: 6.4449819999999995

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.202
MedInc: 6.589984

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.287
MedInc: 6.734986

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.328
MedInc: 6.879988

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.357
MedInc: 7.02499

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.381
MedInc: 7.169992

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.518
MedInc: 7.3149939999999996

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.593
MedInc: 7.459996

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.554
MedInc: 7.604998

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.651
MedInc: 7.75

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.936
MedInc: 7.895002

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.971
MedInc: 8.040004

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 4.025
MedInc: 8.185006

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.958
MedInc: 8.330008

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 4.012
MedInc: 8.47501

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.995
MedInc: 8.620012

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.898
MedInc: 8.765013999999999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.803
MedInc: 8.910016

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.552
MedInc: 9.055018

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.267
MedInc: 9.20002

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.285
MedInc: 9.345022

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.279
MedInc: 9.490024

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.259
MedInc: 9.635026

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.269
MedInc: 9.780028

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.251
MedInc: 9.92503

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.313
MedInc: 10.070032

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.319
MedInc: 10.215034

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.319
MedInc: 10.360036

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.322
MedInc: 10.505037999999999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.24
MedInc: 10.650039999999999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.341
MedInc: 10.795042

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.338
MedInc: 10.940044

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.37
MedInc: 11.085046

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.372
MedInc: 11.230048

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.365
MedInc: 11.37505

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.365
MedInc: 11.520052

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 11.665054

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 11.810056

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 11.955058

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 12.10006

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 12.245061999999999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 12.390063999999999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 12.535065999999999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 12.680068

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 12.82507

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 12.970072

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 13.115074

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 13.260076

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 13.405078

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 13.55008

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 13.695082

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 13.840084

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 13.985085999999999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 14.130087999999999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 14.275089999999999

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 14.420092

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 14.565094

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 14.710096

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 14.855098

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 3.375
MedInc: 15.0001

HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
AveOccup: 2.521920668058455
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.3024600000000004, - 1.3043100000000003, - 1.29728, - 1.29288, - 1.29288, - 1.2918600000000005, - 1.2996400000000006, - 1.3043100000000003, - 1.3090500000000003, - 1.3078000000000003, - 1.31957, - 1.3356500000000004, - 1.3516500000000005, - 1.3696000000000006, - 1.29746, - 1.32864, - 1.3354400000000006, - 1.3402100000000001, - 1.4971899999999996, - 1.6089199999999995, - 1.642459999999999, - 1.604629999999999, - 1.5775599999999994, - 1.5875599999999996, - 1.6345099999999997, - 1.7742399999999996, - 1.944260000000001, - 1.9152700000000007, - 1.957290000000001, - 1.9815500000000004, - 1.9859400000000005, - 2.00356, - 2.6866110000000014, - 2.6299904000000005, - 2.816390700000001, - 2.8439506, - 2.9256108999999992, - 3.1536617999999974, - 2.8960407, - 3.0306206999999987, - 3.089420499999999, - 3.1492705999999986, - 3.202140999999998, - 3.2874810999999964, - 3.3284913999999977, - 3.3574914999999983, - 3.3807415999999977, - 3.517852099999997, - 3.592522099999998, - 3.553801599999998, - 3.651431499999999, - 3.9363512999999988, - 3.9709111999999993, - 4.024671399999999, - 3.958391699999999, - 4.0120318999999975, - 3.994602099999998, - 3.8977921999999983, - 3.8030021, - 3.551971499999999, - 3.2672615999999977, - 3.284871699999998, - 3.2789116999999974, - 3.2592015999999977, - 3.268771899999997, - 3.250841899999997, - 3.312532299999997, - 3.319262299999997, - 3.319262299999997, - 3.321952299999997, - 3.240031899999997, - 3.340732199999997, - 3.3383120999999973, - 3.3696920999999973, - 3.3715523999999975, - 3.3646723999999972, - 3.3646723999999972, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973, - 3.3754124999999973 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 5831
prediction: 2.458
MedInc: 0.4999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.095
MedInc: 0.644902

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 1.817
MedInc: 0.7899039999999999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 1.817
MedInc: 0.934906

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 1.817
MedInc: 1.079908

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 1.825
MedInc: 1.22491

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 1.824
MedInc: 1.369912

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 1.844
MedInc: 1.5149139999999999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 1.786
MedInc: 1.659916

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 1.809
MedInc: 1.804918

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 1.832
MedInc: 1.9499199999999999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 1.853
MedInc: 2.094922

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 1.793
MedInc: 2.2399240000000002

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 1.891
MedInc: 2.384926

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.004
MedInc: 2.529928

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.054
MedInc: 2.67493

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.085
MedInc: 2.8199319999999997

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.132
MedInc: 2.9649339999999995

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.241
MedInc: 3.1099360000000003

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.166
MedInc: 3.254938

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.229
MedInc: 3.39994

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.237
MedInc: 3.544942

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.208
MedInc: 3.6899439999999997

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.192
MedInc: 3.8349459999999995

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.251
MedInc: 3.9799480000000003

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.229
MedInc: 4.12495

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.085
MedInc: 4.269952

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.181
MedInc: 4.414954

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.351
MedInc: 4.559956

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.458
MedInc: 4.704958

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.452
MedInc: 4.84996

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.493
MedInc: 4.994962

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.732
MedInc: 5.139964

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.738
MedInc: 5.284966

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.921
MedInc: 5.429968

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.981
MedInc: 5.5749699999999995

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.044
MedInc: 5.719972

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.99
MedInc: 5.864974

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 2.914
MedInc: 6.009976

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.153
MedInc: 6.154978

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.293
MedInc: 6.29998

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.301
MedInc: 6.4449819999999995

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.4
MedInc: 6.589984

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.591
MedInc: 6.734986

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.568
MedInc: 6.879988

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.931
MedInc: 7.02499

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.058
MedInc: 7.169992

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.124
MedInc: 7.3149939999999996

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.155
MedInc: 7.459996

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.13
MedInc: 7.604998

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.264
MedInc: 7.75

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.539
MedInc: 7.895002

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.522
MedInc: 8.040004

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.52
MedInc: 8.185006

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.573
MedInc: 8.330008

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.68
MedInc: 8.47501

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.663
MedInc: 8.620012

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.665
MedInc: 8.765013999999999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.776
MedInc: 8.910016

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.846
MedInc: 9.055018

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.923
MedInc: 9.20002

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.89
MedInc: 9.345022

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.896
MedInc: 9.490024

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.775
MedInc: 9.635026

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.934
MedInc: 9.780028

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.934
MedInc: 9.92503

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.935
MedInc: 10.070032

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.952
MedInc: 10.215034

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 10.360036

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 10.505037999999999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 10.650039999999999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 10.795042

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 10.940044

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 11.085046

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 11.230048

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 11.37505

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 11.520052

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 11.665054

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 11.810056

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 11.955058

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 12.10006

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 12.245061999999999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 12.390063999999999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 12.535065999999999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 12.680068

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 12.82507

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 12.970072

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 13.115074

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 13.260076

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 13.405078

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 13.55008

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 13.695082

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 13.840084

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 13.985085999999999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 14.130087999999999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 14.275089999999999

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 14.420092

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 14.565094

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 14.710096

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 14.855098

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.96
MedInc: 15.0001

HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
AveOccup: 2.8771929824561404
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.458251899999999, - 2.094880699999999, - 1.816950099999999, - 1.816950099999999, - 1.816950099999999, - 1.824970099999999, - 1.8242300999999994, - 1.8440900999999994, - 1.7861500999999997, - 1.8090100999999998, - 1.8316101, - 1.8529501, - 1.7929600999999997, - 1.8907600999999992, - 2.0043900999999997, - 2.0542000999999996, - 2.0851900999999997, - 2.1318101999999994, - 2.240920300000001, - 2.1662401000000013, - 2.2289501000000014, - 2.237260100000001, - 2.2077801000000017, - 2.1919501000000015, - 2.251220100000001, - 2.2291900999999994, - 2.0847899999999986, - 2.1814499999999986, - 2.3508199999999992, - 2.4578299999999995, - 2.4523600999999995, - 2.49291, - 2.7321199999999988, - 2.7381299999999977, - 2.9206599999999994, - 2.981099999999998, - 3.043809999999998, - 2.9897699999999996, - 2.913679999999998, - 3.1527299999999987, - 3.293360299999998, - 3.3008701999999976, - 3.3996901999999993, - 3.5913805999999977, - 3.567870299999998, - 3.9313215999999938, - 4.057711799999994, - 4.124371899999994, - 4.155092099999994, - 4.130061999999994, - 4.264352699999995, - 4.538984399999995, - 4.521764099999995, - 4.519614099999995, - 4.572644599999993, - 4.679765499999993, - 4.662875399999994, - 4.664885699999994, - 4.776076899999992, - 4.845838199999991, - 4.92322899999999, - 4.89004889999999, - 4.89569889999999, - 4.775267599999991, - 4.934399399999989, - 4.934399399999989, - 4.935409399999989, - 4.952229599999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988, - 4.959629699999988 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 13456
prediction: 1.803
MedInc: 0.4999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.367
MedInc: 0.644902

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.086
MedInc: 0.7899039999999999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.086
MedInc: 0.934906

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.086
MedInc: 1.079908

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.09
MedInc: 1.22491

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.091
MedInc: 1.369912

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.074
MedInc: 1.5149139999999999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.08
MedInc: 1.659916

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.092
MedInc: 1.804918

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.095
MedInc: 1.9499199999999999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.112
MedInc: 2.094922

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.216
MedInc: 2.2399240000000002

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.149
MedInc: 2.384926

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.151
MedInc: 2.529928

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.182
MedInc: 2.67493

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.171
MedInc: 2.8199319999999997

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.18
MedInc: 2.9649339999999995

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.152
MedInc: 3.1099360000000003

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.202
MedInc: 3.254938

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.237
MedInc: 3.39994

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.264
MedInc: 3.544942

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.285
MedInc: 3.6899439999999997

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.292
MedInc: 3.8349459999999995

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.26
MedInc: 3.9799480000000003

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.27
MedInc: 4.12495

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.279
MedInc: 4.269952

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.307
MedInc: 4.414954

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.354
MedInc: 4.559956

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.361
MedInc: 4.704958

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.358
MedInc: 4.84996

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.404
MedInc: 4.994962

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.547
MedInc: 5.139964

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.588
MedInc: 5.284966

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.621
MedInc: 5.429968

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.744
MedInc: 5.5749699999999995

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.977
MedInc: 5.719972

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.123
MedInc: 5.864974

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.093
MedInc: 6.009976

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.156
MedInc: 6.154978

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.262
MedInc: 6.29998

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.334
MedInc: 6.4449819999999995

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.424
MedInc: 6.589984

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.454
MedInc: 6.734986

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.709
MedInc: 6.879988

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.776
MedInc: 7.02499

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.805
MedInc: 7.169992

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.854
MedInc: 7.3149939999999996

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.802
MedInc: 7.459996

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.774
MedInc: 7.604998

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.719
MedInc: 7.75

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.883
MedInc: 7.895002

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.937
MedInc: 8.040004

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.963
MedInc: 8.185006

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 3.032
MedInc: 8.330008

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 3.181
MedInc: 8.47501

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 3.253
MedInc: 8.620012

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 3.288
MedInc: 8.765013999999999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 3.401
MedInc: 8.910016

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 3.58
MedInc: 9.055018

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.033
MedInc: 9.20002

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.057
MedInc: 9.345022

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.078
MedInc: 9.490024

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.049
MedInc: 9.635026

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.172
MedInc: 9.780028

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.227
MedInc: 9.92503

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.246
MedInc: 10.070032

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.283
MedInc: 10.215034

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.285
MedInc: 10.360036

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.257
MedInc: 10.505037999999999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.184
MedInc: 10.650039999999999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.538
MedInc: 10.795042

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.545
MedInc: 10.940044

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.554
MedInc: 11.085046

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.56
MedInc: 11.230048

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.569
MedInc: 11.37505

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.582
MedInc: 11.520052

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.592
MedInc: 11.665054

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.601
MedInc: 11.810056

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.604
MedInc: 11.955058

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.604
MedInc: 12.10006

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.604
MedInc: 12.245061999999999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.604
MedInc: 12.390063999999999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.604
MedInc: 12.535065999999999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.604
MedInc: 12.680068

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.604
MedInc: 12.82507

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.604
MedInc: 12.970072

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.604
MedInc: 13.115074

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.611
MedInc: 13.260076

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.611
MedInc: 13.405078

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.612
MedInc: 13.55008

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.612
MedInc: 13.695082

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.612
MedInc: 13.840084

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.612
MedInc: 13.985085999999999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.615
MedInc: 14.130087999999999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.615
MedInc: 14.275089999999999

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.615
MedInc: 14.420092

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.615
MedInc: 14.565094

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.615
MedInc: 14.710096

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.615
MedInc: 14.855098

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 4.615
MedInc: 15.0001

HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
AveOccup: 3.0436893203883497
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.8026517000000006, - 1.3669705999999997, - 1.0864500000000001, - 1.0864500000000001, - 1.0864500000000001, - 1.09046, - 1.09064, - 1.0738800000000004, - 1.07952, - 1.0923800000000001, - 1.0945800000000003, - 1.1116500000000005, - 1.2155901000000007, - 1.1489800000000003, - 1.1513600000000002, - 1.1818799999999998, - 1.1713399999999998, - 1.17953, - 1.1522899999999998, - 1.2018599999999995, - 1.2374599999999998, - 1.2637699999999996, - 1.2846499999999998, - 1.29171, - 1.2600399999999998, - 1.2702199999999992, - 1.2791699999999993, - 1.3073899999999994, - 1.3540299999999994, - 1.3613499999999987, - 1.357759999999999, - 1.4040899999999992, - 1.5466699999999998, - 1.5879899999999998, - 1.6207699999999996, - 1.7435199999999997, - 1.97726, - 2.12258, - 2.0929200000000003, - 2.1564099999999997, - 2.2624, - 2.33372, - 2.4238000000000004, - 2.4541001, - 2.7093301000000007, - 2.7761501000000006, - 2.804610100000001, - 2.8539100000000004, - 2.8020900000000006, - 2.7736100000000006, - 2.7190000999999997, - 2.8828499999999995, - 2.9373000999999994, - 2.9627701000000015, - 3.0322202000000016, - 3.1808300000000003, - 3.2531300000000023, - 3.287660000000001, - 3.4013902000000007, - 3.5797304999999993, - 4.032730900000001, - 4.0573309, - 4.078191100000001, - 4.048681, - 4.172101499999999, - 4.227431699999999, - 4.245901699999999, - 4.2828317999999985, - 4.284501899999999, - 4.2571717, - 4.183601199999999, - 4.537831699999999, - 4.545221799999998, - 4.554421799999998, - 4.560211899999998, - 4.569131999999998, - 4.581612099999998, - 4.592352199999998, - 4.600722199999998, - 4.604162299999998, - 4.604162299999998, - 4.604162299999998, - 4.604162299999998, - 4.604162299999998, - 4.604162299999998, - 4.604142299999998, - 4.604142299999998, - 4.604142299999998, - 4.610622499999997, - 4.610622499999997, - 4.611922599999997, - 4.611922599999997, - 4.611922599999997, - 4.611922599999997, - 4.615162699999997, - 4.615162699999997, - 4.615162699999997, - 4.615162699999997, - 4.615162699999997, - 4.615162699999997, - 4.615162699999997 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 17980
prediction: 1.728
MedInc: 0.4999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.738
MedInc: 0.644902

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.744
MedInc: 0.7899039999999999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
MedInc: 0.934906

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.744
MedInc: 1.079908

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.738
MedInc: 1.22491

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.739
MedInc: 1.369912

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.741
MedInc: 1.5149139999999999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.808
MedInc: 1.659916

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.863
MedInc: 1.804918

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.936
MedInc: 1.9499199999999999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.863
MedInc: 2.094922

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.866
MedInc: 2.2399240000000002

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.927
MedInc: 2.384926

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.261
MedInc: 2.529928

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.335
MedInc: 2.67493

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.378
MedInc: 2.8199319999999997

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.411
MedInc: 2.9649339999999995

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.687
MedInc: 3.1099360000000003

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.835
MedInc: 3.254938

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.931
MedInc: 3.39994

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.138
MedInc: 3.544942

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.052
MedInc: 3.6899439999999997

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.174
MedInc: 3.8349459999999995

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.336
MedInc: 3.9799480000000003

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.409
MedInc: 4.12495

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.459
MedInc: 4.269952

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.495
MedInc: 4.414954

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.53
MedInc: 4.559956

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.651
MedInc: 4.704958

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.623
MedInc: 4.84996

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.642
MedInc: 4.994962

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.207
MedInc: 5.139964

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.48
MedInc: 5.284966

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.533
MedInc: 5.429968

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.647
MedInc: 5.5749699999999995

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.682
MedInc: 5.719972

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.682
MedInc: 5.864974

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.715
MedInc: 6.009976

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.707
MedInc: 6.154978

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.688
MedInc: 6.29998

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.725
MedInc: 6.4449819999999995

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.709
MedInc: 6.589984

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.634
MedInc: 6.734986

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.29
MedInc: 6.879988

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.425
MedInc: 7.02499

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.4
MedInc: 7.169992

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.414
MedInc: 7.3149939999999996

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.379
MedInc: 7.459996

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.353
MedInc: 7.604998

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.364
MedInc: 7.75

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.338
MedInc: 7.895002

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.335
MedInc: 8.040004

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.328
MedInc: 8.185006

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.366
MedInc: 8.330008

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.441
MedInc: 8.47501

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.469
MedInc: 8.620012

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.449
MedInc: 8.765013999999999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.392
MedInc: 8.910016

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.369
MedInc: 9.055018

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.379
MedInc: 9.20002

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.37
MedInc: 9.345022

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.376
MedInc: 9.490024

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.261
MedInc: 9.635026

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.4
MedInc: 9.780028

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.378
MedInc: 9.92503

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.387
MedInc: 10.070032

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.399
MedInc: 10.215034

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.399
MedInc: 10.360036

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.399
MedInc: 10.505037999999999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.399
MedInc: 10.650039999999999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.399
MedInc: 10.795042

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.399
MedInc: 10.940044

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.399
MedInc: 11.085046

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.399
MedInc: 11.230048

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 11.37505

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 11.520052

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 11.665054

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 11.810056

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 11.955058

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 12.10006

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 12.245061999999999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 12.390063999999999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 12.535065999999999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 12.680068

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 12.82507

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 12.970072

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 13.115074

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 13.260076

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 13.405078

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 13.55008

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 13.695082

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 13.840084

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 13.985085999999999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 14.130087999999999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 14.275089999999999

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 14.420092

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 14.565094

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 14.710096

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 14.855098

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 4.411
MedInc: 15.0001

HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
AveOccup: 1.9691358024691359
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.7283900000000005, - 1.7380300000000006, - 1.7443800000000005, - 1.7260200000000003, - 1.7435500000000002, - 1.7383800000000003, - 1.7385500000000003, - 1.7406300000000001, - 1.8077100000000002, - 1.8634699999999997, - 1.9355799999999996, - 1.8625599999999993, - 1.8662799999999993, - 1.9273599999999995, - 2.2612600000000005, - 2.335010000000001, - 2.3780600000000014, - 2.4105500000000015, - 2.687420100000001, - 2.8346101, - 2.9312400999999992, - 3.1383700999999995, - 3.052340199999999, - 3.174490499999997, - 3.335960799999998, - 3.4091511999999984, - 3.4586911999999983, - 3.4947711999999984, - 3.5298912, - 3.6510613999999992, - 3.622561299999999, - 3.641641399999999, - 4.2073724999999955, - 4.479624899999994, - 4.532775299999994, - 4.646846199999992, - 4.681806299999992, - 4.681806299999992, - 4.714766499999992, - 4.707236099999991, - 4.6877959999999925, - 4.724746099999994, - 4.709305999999993, - 4.634235299999993, - 4.2899230999999975, - 4.425013899999996, - 4.400143799999998, - 4.413584299999996, - 4.379374299999996, - 4.352934099999996, - 4.363923599999996, - 4.338163399999997, - 4.334903399999997, - 4.328243499999997, - 4.365953999999997, - 4.440864799999996, - 4.4686853999999965, - 4.449225499999996, - 4.392055399999995, - 4.369445899999994, - 4.379235799999993, - 4.369915799999994, - 4.375565799999993, - 4.260964999999995, - 4.400046399999993, - 4.378146299999994, - 4.386556399999993, - 4.399496699999993, - 4.399496699999993, - 4.399496699999993, - 4.399496699999993, - 4.399496699999993, - 4.399496699999993, - 4.399496699999993, - 4.399496699999993, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994, - 4.410696699999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 6599
prediction: 2.539
MedInc: 0.4999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.002
MedInc: 0.644902

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.676
MedInc: 0.7899039999999999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.676
MedInc: 0.934906

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.676
MedInc: 1.079908

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.68
MedInc: 1.22491

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.679
MedInc: 1.369912

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.702
MedInc: 1.5149139999999999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.655
MedInc: 1.659916

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.656
MedInc: 1.804918

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.627
MedInc: 1.9499199999999999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.613
MedInc: 2.094922

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.632
MedInc: 2.2399240000000002

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.66
MedInc: 2.384926

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.734
MedInc: 2.529928

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.843
MedInc: 2.67493

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.846
MedInc: 2.8199319999999997

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.876
MedInc: 2.9649339999999995

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.776
MedInc: 3.1099360000000003

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.692
MedInc: 3.254938

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.713
MedInc: 3.39994

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.758
MedInc: 3.544942

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.798
MedInc: 3.6899439999999997

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.818
MedInc: 3.8349459999999995

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.843
MedInc: 3.9799480000000003

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.061
MedInc: 4.12495

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.022
MedInc: 4.269952

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.072
MedInc: 4.414954

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.161
MedInc: 4.559956

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.238
MedInc: 4.704958

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.411
MedInc: 4.84996

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.542
MedInc: 4.994962

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.67
MedInc: 5.139964

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.8
MedInc: 5.284966

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.845
MedInc: 5.429968

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.916
MedInc: 5.5749699999999995

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.236
MedInc: 5.719972

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.667
MedInc: 5.864974

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.614
MedInc: 6.009976

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.517
MedInc: 6.154978

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.587
MedInc: 6.29998

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.644
MedInc: 6.4449819999999995

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.485
MedInc: 6.589984

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.464
MedInc: 6.734986

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.523
MedInc: 6.879988

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.976
MedInc: 7.02499

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.03
MedInc: 7.169992

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.041
MedInc: 7.3149939999999996

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.027
MedInc: 7.459996

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.957
MedInc: 7.604998

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.032
MedInc: 7.75

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.096
MedInc: 7.895002

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.092
MedInc: 8.040004

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.106
MedInc: 8.185006

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.158
MedInc: 8.330008

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.258
MedInc: 8.47501

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.253
MedInc: 8.620012

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.221
MedInc: 8.765013999999999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.34
MedInc: 8.910016

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.626
MedInc: 9.055018

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.745
MedInc: 9.20002

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.731
MedInc: 9.345022

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.718
MedInc: 9.490024

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.609
MedInc: 9.635026

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.818
MedInc: 9.780028

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.825
MedInc: 9.92503

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.818
MedInc: 10.070032

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.927
MedInc: 10.215034

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.934
MedInc: 10.360036

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.934
MedInc: 10.505037999999999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 10.650039999999999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 10.795042

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 10.940044

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 11.085046

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 11.230048

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 11.37505

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 11.520052

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 11.665054

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 11.810056

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 11.955058

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 12.10006

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 12.245061999999999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 12.390063999999999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 12.535065999999999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 12.680068

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 12.82507

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.941
MedInc: 12.970072

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 13.115074

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 13.260076

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 13.405078

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 13.55008

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 13.695082

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 13.840084

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 13.985085999999999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 14.130087999999999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 14.275089999999999

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 14.420092

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 14.565094

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 14.710096

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 14.855098

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 4.943
MedInc: 15.0001

HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
AveOccup: 3.180995475113122
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.5391923, - 2.0017906999999995, - 1.6763199999999998, - 1.6763199999999998, - 1.6763199999999998, - 1.6801599999999999, - 1.67914, - 1.7023299999999997, - 1.65465, - 1.65631, - 1.6271900000000001, - 1.6127300000000004, - 1.63192, - 1.6598200000000003, - 1.7343600000000003, - 1.8428, - 1.8455200000000003, - 1.8758101000000003, - 1.7755300000000016, - 1.6918800000000014, - 1.713380000000001, - 1.758180000000001, - 1.7976200000000009, - 1.8183500000000004, - 1.8425300000000002, - 2.06148, - 2.0221099999999996, - 2.072339999999999, - 2.1609099999999994, - 2.2382500000000003, - 2.41071, - 2.5416, - 2.669589999999998, - 2.8004900999999984, - 2.8449200999999995, - 2.915830099999999, - 3.2359108000000005, - 3.6670606999999986, - 3.614190699999998, - 3.5165209999999996, - 3.587231399999999, - 3.643571699999999, - 3.485091399999998, - 3.4643107, - 3.5225610000000014, - 3.975791999999998, - 4.0296822999999975, - 4.041332399999998, - 4.026862399999998, - 3.957132099999998, - 4.032002599999998, - 4.096262999999998, - 4.091532899999998, - 4.106222699999998, - 4.1579625999999985, - 4.258172799999997, - 4.253182799999997, - 4.2206426999999955, - 4.339543699999996, - 4.625755799999994, - 4.744816699999994, - 4.731126599999994, - 4.7180163999999944, - 4.609055699999996, - 4.818427699999993, - 4.825497799999993, - 4.818437699999993, - 4.926928699999991, - 4.934328799999991, - 4.934328799999991, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.94147889999999, - 4.942758999999991, - 4.942758999999991, - 4.942758999999991, - 4.942758999999991, - 4.942758999999991, - 4.942758999999991, - 4.942758999999991, - 4.942758999999991, - 4.942758999999991, - 4.942758999999991, - 4.942758999999991, - 4.942758999999991, - 4.942758999999991, - 4.942758999999991 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 19726
prediction: 0.703
MedInc: 0.4999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.7
MedInc: 0.644902

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.701
MedInc: 0.7899039999999999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.701
MedInc: 0.934906

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.7
MedInc: 1.079908

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.697
MedInc: 1.22491

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.704
MedInc: 1.369912

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.717
MedInc: 1.5149139999999999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.725
MedInc: 1.659916

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.72
MedInc: 1.804918

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.772
MedInc: 1.9499199999999999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.8
MedInc: 2.094922

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.807
MedInc: 2.2399240000000002

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.89
MedInc: 2.384926

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.866
MedInc: 2.529928

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.936
MedInc: 2.67493

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.946
MedInc: 2.8199319999999997

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
MedInc: 2.9649339999999995

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.054
MedInc: 3.1099360000000003

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.036
MedInc: 3.254938

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.048
MedInc: 3.39994

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.066
MedInc: 3.544942

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.115
MedInc: 3.6899439999999997

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.127
MedInc: 3.8349459999999995

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.241
MedInc: 3.9799480000000003

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.332
MedInc: 4.12495

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.413
MedInc: 4.269952

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.444
MedInc: 4.414954

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.474
MedInc: 4.559956

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.524
MedInc: 4.704958

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.537
MedInc: 4.84996

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.551
MedInc: 4.994962

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.679
MedInc: 5.139964

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.711
MedInc: 5.284966

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.821
MedInc: 5.429968

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.821
MedInc: 5.5749699999999995

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.867
MedInc: 5.719972

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 2.182
MedInc: 5.864974

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 2.184
MedInc: 6.009976

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 2.433
MedInc: 6.154978

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 2.529
MedInc: 6.29998

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 2.593
MedInc: 6.4449819999999995

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 2.992
MedInc: 6.589984

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.135
MedInc: 6.734986

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.362
MedInc: 6.879988

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.297
MedInc: 7.02499

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.305
MedInc: 7.169992

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.244
MedInc: 7.3149939999999996

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.33
MedInc: 7.459996

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.385
MedInc: 7.604998

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.461
MedInc: 7.75

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.678
MedInc: 7.895002

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.667
MedInc: 8.040004

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.659
MedInc: 8.185006

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.654
MedInc: 8.330008

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.63
MedInc: 8.47501

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.668
MedInc: 8.620012

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.634
MedInc: 8.765013999999999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.707
MedInc: 8.910016

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.628
MedInc: 9.055018

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.612
MedInc: 9.20002

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.601
MedInc: 9.345022

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.616
MedInc: 9.490024

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.599
MedInc: 9.635026

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.618
MedInc: 9.780028

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.621
MedInc: 9.92503

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.61
MedInc: 10.070032

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.671
MedInc: 10.215034

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.679
MedInc: 10.360036

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.686
MedInc: 10.505037999999999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 10.650039999999999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 10.795042

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 10.940044

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 11.085046

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 11.230048

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 11.37505

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 11.520052

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 11.665054

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 11.810056

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 11.955058

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 12.10006

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 12.245061999999999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 12.390063999999999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 12.535065999999999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 12.680068

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 12.82507

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 12.970072

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 13.115074

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 13.260076

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 13.405078

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 13.55008

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 13.695082

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 13.840084

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 13.985085999999999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 14.130087999999999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 14.275089999999999

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 14.420092

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 14.565094

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 14.710096

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 14.855098

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 3.689
MedInc: 15.0001

HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
AveOccup: 2.8455445544554454
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.7033900000000002, - 0.6996000000000001, - 0.7011200000000001, - 0.7011200000000001, - 0.6996800000000002, - 0.6968099999999999, - 0.70411, - 0.7174200000000001, - 0.72453, - 0.7199499999999999, - 0.7720900000000003, - 0.7997300000000003, - 0.8065300000000002, - 0.8903699999999999, - 0.8663800000000004, - 0.93584, - 0.9461900000000001, - 0.9666599999999996, - 1.0539, - 1.03559, - 1.0478800000000001, - 1.0660900000000004, - 1.1153700000000004, - 1.1265000000000003, - 1.2410100000000002, - 1.3315900000000003, - 1.4125300000000007, - 1.4436300000000006, - 1.4739600000000004, - 1.5236000000000007, - 1.5374800000000008, - 1.5511800000000004, - 1.6790000000000003, - 1.7110900000000007, - 1.8210600000000006, - 1.8206499999999999, - 1.8674299999999995, - 2.1819299999999995, - 2.1842300999999993, - 2.4333202999999997, - 2.5286204000000008, - 2.593160400000001, - 2.9915602000000012, - 3.1348604000000004, - 3.361970399999999, - 3.2968102999999984, - 3.3052903, - 3.2440403, - 3.330220300000001, - 3.384930300000001, - 3.4613604000000016, - 3.677790900000001, - 3.667000600000002, - 3.6589707000000016, - 3.654181000000001, - 3.6297911000000003, - 3.6676213999999994, - 3.6341015, - 3.707482, - 3.628112599999999, - 3.6115426999999998, - 3.6013325999999988, - 3.6162525999999997, - 3.5989524, - 3.6175626999999992, - 3.620622799999999, - 3.6096427999999996, - 3.6714032999999997, - 3.678803399999999, - 3.685853399999999, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995, - 3.6889134999999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 4239
prediction: 2.24
MedInc: 0.4999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.962
MedInc: 0.644902

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.773
MedInc: 0.7899039999999999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.759
MedInc: 0.934906

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.748
MedInc: 1.079908

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.75
MedInc: 1.22491

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.76
MedInc: 1.369912

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.813
MedInc: 1.5149139999999999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.853
MedInc: 1.659916

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.789
MedInc: 1.804918

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.884
MedInc: 1.9499199999999999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.942
MedInc: 2.094922

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.907
MedInc: 2.2399240000000002

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.93
MedInc: 2.384926

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 2.19
MedInc: 2.529928

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 2.428
MedInc: 2.67493

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 2.689
MedInc: 2.8199319999999997

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 2.807
MedInc: 2.9649339999999995

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 3.411
MedInc: 3.1099360000000003

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.024
MedInc: 3.254938

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.16
MedInc: 3.39994

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.428
MedInc: 3.544942

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.53
MedInc: 3.6899439999999997

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.484
MedInc: 3.8349459999999995

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.475
MedInc: 3.9799480000000003

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.448
MedInc: 4.12495

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.466
MedInc: 4.269952

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.404
MedInc: 4.414954

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.46
MedInc: 4.559956

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.479
MedInc: 4.704958

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.461
MedInc: 4.84996

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.454
MedInc: 4.994962

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.491
MedInc: 5.139964

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.83
MedInc: 5.284966

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.844
MedInc: 5.429968

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.933
MedInc: 5.5749699999999995

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.973
MedInc: 5.719972

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.973
MedInc: 5.864974

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.971
MedInc: 6.009976

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.967
MedInc: 6.154978

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.957
MedInc: 6.29998

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.957
MedInc: 6.4449819999999995

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.942
MedInc: 6.589984

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.906
MedInc: 6.734986

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.463
MedInc: 6.879988

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.516
MedInc: 7.02499

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.488
MedInc: 7.169992

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.518
MedInc: 7.3149939999999996

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.496
MedInc: 7.459996

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.426
MedInc: 7.604998

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.486
MedInc: 7.75

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.585
MedInc: 7.895002

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.579
MedInc: 8.040004

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.564
MedInc: 8.185006

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.592
MedInc: 8.330008

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.58
MedInc: 8.47501

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.608
MedInc: 8.620012

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.608
MedInc: 8.765013999999999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.648
MedInc: 8.910016

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.712
MedInc: 9.055018

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.768
MedInc: 9.20002

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.747
MedInc: 9.345022

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.753
MedInc: 9.490024

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.588
MedInc: 9.635026

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.777
MedInc: 9.780028

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.777
MedInc: 9.92503

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.777
MedInc: 10.070032

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.802
MedInc: 10.215034

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 10.360036

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 10.505037999999999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 10.650039999999999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 10.795042

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 10.940044

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 11.085046

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 11.230048

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 11.37505

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 11.520052

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 11.665054

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 11.810056

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 11.955058

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 12.10006

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 12.245061999999999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 12.390063999999999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 12.535065999999999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 12.680068

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 12.82507

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 12.970072

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 13.115074

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 13.260076

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 13.405078

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 13.55008

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 13.695082

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 13.840084

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 13.985085999999999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 14.130087999999999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 14.275089999999999

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 14.420092

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 14.565094

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 14.710096

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 14.855098

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.809
MedInc: 15.0001

HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
AveOccup: 1.7780082987551866
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.2400314999999993, - 1.9621406999999993, - 1.7730002999999996, - 1.7592502999999997, - 1.7479302999999995, - 1.7504502999999998, - 1.7597102999999998, - 1.8134202999999998, - 1.8531302999999997, - 1.7892800999999994, - 1.8836400999999992, - 1.9422099999999998, - 1.9065299999999996, - 1.9295699999999993, - 2.1903401999999996, - 2.4281603000000005, - 2.6893106000000007, - 2.8067009000000014, - 3.4106412, - 4.023662499999999, - 4.159952699999996, - 4.427573199999995, - 4.530193799999994, - 4.4835130999999935, - 4.4752926999999945, - 4.448342199999994, - 4.466242599999994, - 4.404162199999995, - 4.459552699999994, - 4.479373099999994, - 4.460993199999994, - 4.454142999999995, - 4.491494299999992, - 4.83013759999999, - 4.84428799999999, - 4.93267899999999, - 4.973159499999989, - 4.972869499999989, - 4.97124939999999, - 4.967429299999989, - 4.957339399999989, - 4.95673929999999, - 4.94152919999999, - 4.90556869999999, - 4.462874299999997, - 4.516303599999992, - 4.488173099999992, - 4.517973499999993, - 4.4963331999999925, - 4.4262129999999935, - 4.486143599999995, - 4.584854199999996, - 4.579203999999997, - 4.564443899999998, - 4.592214499999997, - 4.579675199999997, - 4.607955599999996, - 4.607785699999995, - 4.648256599999994, - 4.712307899999992, - 4.767628399999991, - 4.746978299999991, - 4.752628299999991, - 4.588156899999993, - 4.7771488999999905, - 4.7771488999999905, - 4.776728899999991, - 4.8018690999999905, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895, - 4.8092691999999895 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 1332
prediction: 1.198
MedInc: 0.4999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.204
MedInc: 0.644902

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.198
MedInc: 0.7899039999999999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.195
MedInc: 0.934906

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.195
MedInc: 1.079908

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.187
MedInc: 1.22491

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.187
MedInc: 1.369912

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.179
MedInc: 1.5149139999999999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.193
MedInc: 1.659916

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.179
MedInc: 1.804918

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.195
MedInc: 1.9499199999999999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.212
MedInc: 2.094922

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.219
MedInc: 2.2399240000000002

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.365
MedInc: 2.384926

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.272
MedInc: 2.529928

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.28
MedInc: 2.67493

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.305
MedInc: 2.8199319999999997

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.315
MedInc: 2.9649339999999995

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.397
MedInc: 3.1099360000000003

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.46
MedInc: 3.254938

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.499
MedInc: 3.39994

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.497
MedInc: 3.544942

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.515
MedInc: 3.6899439999999997

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.529
MedInc: 3.8349459999999995

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.541
MedInc: 3.9799480000000003

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.5
MedInc: 4.12495

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.573
MedInc: 4.269952

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.608
MedInc: 4.414954

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.637
MedInc: 4.559956

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.637
MedInc: 4.704958

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.663
MedInc: 4.84996

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.682
MedInc: 4.994962

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.717
MedInc: 5.139964

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.719
MedInc: 5.284966

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.762
MedInc: 5.429968

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.79
MedInc: 5.5749699999999995

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.925
MedInc: 5.719972

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.188
MedInc: 5.864974

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.154
MedInc: 6.009976

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.346
MedInc: 6.154978

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.533
MedInc: 6.29998

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.574
MedInc: 6.4449819999999995

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.869
MedInc: 6.589984

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.935
MedInc: 6.734986

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.222
MedInc: 6.879988

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.105
MedInc: 7.02499

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.063
MedInc: 7.169992

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.083
MedInc: 7.3149939999999996

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.026
MedInc: 7.459996

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.054
MedInc: 7.604998

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.123
MedInc: 7.75

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.439
MedInc: 7.895002

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.454
MedInc: 8.040004

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.429
MedInc: 8.185006

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.551
MedInc: 8.330008

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.591
MedInc: 8.47501

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.632
MedInc: 8.620012

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.635
MedInc: 8.765013999999999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.636
MedInc: 8.910016

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.739
MedInc: 9.055018

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.774
MedInc: 9.20002

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.774
MedInc: 9.345022

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.772
MedInc: 9.490024

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.802
MedInc: 9.635026

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.895
MedInc: 9.780028

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.918
MedInc: 9.92503

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.922
MedInc: 10.070032

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.02
MedInc: 10.215034

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.028
MedInc: 10.360036

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.064
MedInc: 10.505037999999999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 10.650039999999999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 10.795042

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 10.940044

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 11.085046

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 11.230048

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 11.37505

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 11.520052

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 11.665054

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 11.810056

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 11.955058

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 12.10006

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 12.245061999999999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 12.390063999999999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 12.535065999999999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 12.680068

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 12.82507

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 12.970072

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 13.115074

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 13.260076

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 13.405078

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 13.55008

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 13.695082

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 13.840084

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 13.985085999999999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 14.130087999999999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 14.275089999999999

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 14.420092

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 14.565094

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 14.710096

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 14.855098

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 4.063
MedInc: 15.0001

HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
AveOccup: 2.8449612403100777
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.19827, - 1.2042499999999998, - 1.1976999999999998, - 1.1951599999999998, - 1.1945699999999997, - 1.1873499999999997, - 1.1873499999999997, - 1.1791899999999997, - 1.1929699999999996, - 1.1785899999999996, - 1.19525, - 1.21216, - 1.2187299999999999, - 1.3652399999999998, - 1.2721299999999998, - 1.2799799999999995, - 1.3049600000000001, - 1.3150300000000001, - 1.3966299999999998, - 1.4604799999999996, - 1.4988799999999995, - 1.49684, - 1.5150700000000001, - 1.5285100000000003, - 1.5413099999999995, - 1.4995199999999995, - 1.573419999999999, - 1.6075599999999994, - 1.636639999999999, - 1.637189999999999, - 1.6631399999999994, - 1.6816999999999995, - 1.7173600000000004, - 1.7193400000000008, - 1.7618200000000004, - 1.78973, - 1.9249999999999994, - 2.1881199999999987, - 2.154009999999999, - 2.3463499999999997, - 2.5328101000000003, - 2.5741201, - 2.868570099999999, - 2.9349101999999987, - 3.2215400999999986, - 3.1049799999999976, - 3.0632699999999975, - 3.0825399999999985, - 3.025999999999999, - 3.0542599999999993, - 3.1228200000000004, - 3.438940299999999, - 3.4536201999999996, - 3.4290502, - 3.5508707, - 3.5914209999999986, - 3.6323811999999993, - 3.6349310999999993, - 3.635691399999999, - 3.7392923999999983, - 3.7738027999999986, - 3.7736429999999985, - 3.771822999999998, - 3.8019130999999993, - 3.8945040999999985, - 3.9182142999999985, - 3.921804399999999, - 4.020355299999998, - 4.0277553999999975, - 4.0635755999999965, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996, - 4.062885699999996 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 16659
prediction: 2.109
MedInc: 0.4999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.029
MedInc: 0.644902

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.877
MedInc: 0.7899039999999999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.877
MedInc: 0.934906

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.877
MedInc: 1.079908

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.877
MedInc: 1.22491

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.86
MedInc: 1.369912

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.86
MedInc: 1.5149139999999999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.885
MedInc: 1.659916

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.909
MedInc: 1.804918

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.943
MedInc: 1.9499199999999999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.0
MedInc: 2.094922

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.054
MedInc: 2.2399240000000002

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.868
MedInc: 2.384926

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.824
MedInc: 2.529928

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.847
MedInc: 2.67493

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.872
MedInc: 2.8199319999999997

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.92
MedInc: 2.9649339999999995

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.99
MedInc: 3.1099360000000003

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.109
MedInc: 3.254938

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.141
MedInc: 3.39994

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.162
MedInc: 3.544942

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.233
MedInc: 3.6899439999999997

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.256
MedInc: 3.8349459999999995

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.369
MedInc: 3.9799480000000003

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.539
MedInc: 4.12495

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.609
MedInc: 4.269952

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.611
MedInc: 4.414954

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.788
MedInc: 4.559956

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.892
MedInc: 4.704958

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.905
MedInc: 4.84996

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.966
MedInc: 4.994962

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 3.41
MedInc: 5.139964

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 3.551
MedInc: 5.284966

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 3.412
MedInc: 5.429968

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 3.483
MedInc: 5.5749699999999995

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 3.499
MedInc: 5.719972

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 3.573
MedInc: 5.864974

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 3.523
MedInc: 6.009976

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 3.678
MedInc: 6.154978

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 3.803
MedInc: 6.29998

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 3.977
MedInc: 6.4449819999999995

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 3.985
MedInc: 6.589984

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.023
MedInc: 6.734986

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 3.91
MedInc: 6.879988

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.171
MedInc: 7.02499

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.136
MedInc: 7.169992

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.174
MedInc: 7.3149939999999996

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.171
MedInc: 7.459996

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.149
MedInc: 7.604998

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.396
MedInc: 7.75

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.338
MedInc: 7.895002

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.314
MedInc: 8.040004

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.312
MedInc: 8.185006

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.341
MedInc: 8.330008

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.404
MedInc: 8.47501

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.419
MedInc: 8.620012

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.416
MedInc: 8.765013999999999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.409
MedInc: 8.910016

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.373
MedInc: 9.055018

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.388
MedInc: 9.20002

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.371
MedInc: 9.345022

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.376
MedInc: 9.490024

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.265
MedInc: 9.635026

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.411
MedInc: 9.780028

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.373
MedInc: 9.92503

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.381
MedInc: 10.070032

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.39
MedInc: 10.215034

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.39
MedInc: 10.360036

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.39
MedInc: 10.505037999999999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.39
MedInc: 10.650039999999999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.39
MedInc: 10.795042

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.39
MedInc: 10.940044

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.39
MedInc: 11.085046

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.39
MedInc: 11.230048

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 11.37505

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 11.520052

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 11.665054

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 11.810056

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 11.955058

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 12.10006

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 12.245061999999999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 12.390063999999999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 12.535065999999999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 12.680068

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 12.82507

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 12.970072

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 13.115074

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 13.260076

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 13.405078

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 13.55008

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 13.695082

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 13.840084

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 13.985085999999999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 14.130087999999999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 14.275089999999999

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 14.420092

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 14.565094

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 14.710096

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 14.855098

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 4.401
MedInc: 15.0001

HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
AveOccup: 2.4152719665271967
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.1088706000000017, - 2.0294303000000014, - 1.8773400000000011, - 1.8773400000000011, - 1.8773400000000011, - 1.8773400000000011, - 1.8603400000000014, - 1.8603400000000014, - 1.8847900000000013, - 1.9086600000000014, - 1.9426300000000014, - 1.999630000000002, - 2.0543700000000022, - 1.86791, - 1.8239399999999997, - 1.8466699999999994, - 1.8717199999999992, - 1.9198999999999993, - 1.99011, - 2.1085599999999998, - 2.1412999999999998, - 2.16228, - 2.23327, - 2.25648, - 2.36895, - 2.5390201, - 2.6094901, - 2.6107801, - 2.787630100000001, - 2.8919901000000015, - 2.905420100000002, - 2.9659101000000008, - 3.4100303999999992, - 3.5506405999999995, - 3.4117004999999994, - 3.4828403000000008, - 3.499250400000002, - 3.5726202000000007, - 3.522700200000001, - 3.6781205999999997, - 3.8027505, - 3.9771412, - 3.9851413000000004, - 4.023321499999998, - 3.9097310999999975, - 4.170751999999999, - 4.135571999999999, - 4.1744223, - 4.170742399999998, - 4.149102699999998, - 4.396483499999997, - 4.337502999999997, - 4.3138127999999965, - 4.312462699999997, - 4.341193299999996, - 4.404304199999996, - 4.419464599999997, - 4.415774999999997, - 4.408775699999995, - 4.373016399999994, - 4.388146399999993, - 4.370706299999993, - 4.376356299999993, - 4.264555599999994, - 4.411346999999993, - 4.372596899999993, - 4.381006999999993, - 4.390187299999993, - 4.390187299999993, - 4.390187299999993, - 4.390187299999993, - 4.390187299999993, - 4.390187299999993, - 4.390187299999993, - 4.390187299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993, - 4.401387299999993 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 10880
prediction: 2.625
MedInc: 0.4999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.121
MedInc: 0.644902

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.871
MedInc: 0.7899039999999999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.871
MedInc: 0.934906

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.871
MedInc: 1.079908

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.871
MedInc: 1.22491

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.871
MedInc: 1.369912

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.871
MedInc: 1.5149139999999999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.872
MedInc: 1.659916

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.792
MedInc: 1.804918

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.774
MedInc: 1.9499199999999999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.774
MedInc: 2.094922

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.802
MedInc: 2.2399240000000002

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.838
MedInc: 2.384926

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.843
MedInc: 2.529928

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.858
MedInc: 2.67493

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.865
MedInc: 2.8199319999999997

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.891
MedInc: 2.9649339999999995

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.982
MedInc: 3.1099360000000003

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.964
MedInc: 3.254938

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.971
MedInc: 3.39994

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.997
MedInc: 3.544942

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.902
MedInc: 3.6899439999999997

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.893
MedInc: 3.8349459999999995

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.915
MedInc: 3.9799480000000003

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.905
MedInc: 4.12495

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.907
MedInc: 4.269952

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.941
MedInc: 4.414954

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.97
MedInc: 4.559956

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.994
MedInc: 4.704958

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.005
MedInc: 4.84996

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.074
MedInc: 4.994962

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.154
MedInc: 5.139964

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.15
MedInc: 5.284966

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.159
MedInc: 5.429968

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.168
MedInc: 5.5749699999999995

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.285
MedInc: 5.719972

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.356
MedInc: 5.864974

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.34
MedInc: 6.009976

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.523
MedInc: 6.154978

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.641
MedInc: 6.29998

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.655
MedInc: 6.4449819999999995

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.677
MedInc: 6.589984

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.744
MedInc: 6.734986

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.241
MedInc: 6.879988

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.214
MedInc: 7.02499

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.227
MedInc: 7.169992

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.235
MedInc: 7.3149939999999996

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.256
MedInc: 7.459996

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.278
MedInc: 7.604998

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.404
MedInc: 7.75

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.448
MedInc: 7.895002

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.514
MedInc: 8.040004

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.519
MedInc: 8.185006

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.73
MedInc: 8.330008

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.92
MedInc: 8.47501

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.905
MedInc: 8.620012

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.928
MedInc: 8.765013999999999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.035
MedInc: 8.910016

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.352
MedInc: 9.055018

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.435
MedInc: 9.20002

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.43
MedInc: 9.345022

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.447
MedInc: 9.490024

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.416
MedInc: 9.635026

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.602
MedInc: 9.780028

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.633
MedInc: 9.92503

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.628
MedInc: 10.070032

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.673
MedInc: 10.215034

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.702
MedInc: 10.360036

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.715
MedInc: 10.505037999999999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.722
MedInc: 10.650039999999999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.722
MedInc: 10.795042

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.723
MedInc: 10.940044

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.727
MedInc: 11.085046

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 11.230048

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 11.37505

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 11.520052

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 11.665054

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 11.810056

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 11.955058

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 12.10006

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 12.245061999999999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 12.390063999999999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 12.535065999999999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 12.680068

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 12.82507

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.725
MedInc: 12.970072

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.726
MedInc: 13.115074

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.726
MedInc: 13.260076

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.726
MedInc: 13.405078

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.726
MedInc: 13.55008

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.735
MedInc: 13.695082

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.735
MedInc: 13.840084

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.735
MedInc: 13.985085999999999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.735
MedInc: 14.130087999999999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.735
MedInc: 14.275089999999999

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.735
MedInc: 14.420092

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.735
MedInc: 14.565094

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.735
MedInc: 14.710096

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.735
MedInc: 14.855098

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 4.735
MedInc: 15.0001

HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
AveOccup: 4.152091254752852
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.6251424, - 2.1210507999999995, - 1.8713702999999993, - 1.8713702999999993, - 1.8713702999999993, - 1.8713702999999993, - 1.8708302999999993, - 1.8714002999999995, - 1.8722702999999994, - 1.7924701999999997, - 1.7737301999999997, - 1.7742800999999995, - 1.8022299999999998, - 1.8381800000000001, - 1.8427399999999998, - 1.8581599999999994, - 1.8646799999999992, - 1.8909599999999998, - 1.9822499999999996, - 1.9642099999999996, - 1.9707899999999998, - 1.9969799999999995, - 1.9016800000000007, - 1.8933900000000004, - 1.9146500000000006, - 1.904520000000001, - 1.90719, - 1.9406800000000002, - 1.969530000000001, - 1.9936100000000008, - 2.0054800000000004, - 2.07351, - 2.154469999999998, - 2.150219999999998, - 2.159269999999999, - 2.1679999999999993, - 2.28468, - 2.3562799999999986, - 2.339839999999999, - 2.5231599999999994, - 2.6408899999999993, - 2.6553699999999996, - 2.67705, - 2.744439999999999, - 3.2411701999999987, - 3.2137799999999985, - 3.2268899999999987, - 3.234979999999999, - 3.2562999999999995, - 3.2782499999999986, - 3.4038305999999983, - 3.4483407999999973, - 3.514010799999998, - 3.518980699999998, - 3.7301613999999983, - 3.9201813999999984, - 3.9047211999999987, - 3.9276612999999987, - 4.035021799999998, - 4.352163599999996, - 4.435414199999997, - 4.430294299999997, - 4.447334299999998, - 4.4160337999999975, - 4.6017350999999955, - 4.6334151999999955, - 4.627685099999996, - 4.672845499999995, - 4.701995599999995, - 4.714755699999995, - 4.721905799999995, - 4.721905799999995, - 4.723495899999994, - 4.726785899999994, - 4.725125999999994, - 4.725125999999994, - 4.725125999999994, - 4.725125999999994, - 4.725125999999994, - 4.725125999999994, - 4.725125999999994, - 4.725125999999994, - 4.725125999999994, - 4.725125999999994, - 4.725125999999994, - 4.725125999999994, - 4.725125999999994, - 4.726406099999994, - 4.726406099999994, - 4.726406099999994, - 4.726406099999994, - 4.734736199999994, - 4.734736199999994, - 4.734736199999994, - 4.734736199999994, - 4.734736199999994, - 4.734736199999994, - 4.734736199999994, - 4.734736199999994, - 4.734736199999994, - 4.734736199999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 8578
prediction: 2.456
MedInc: 0.4999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.411
MedInc: 0.644902

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.411
MedInc: 0.7899039999999999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.342
MedInc: 0.934906

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.332
MedInc: 1.079908

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.33
MedInc: 1.22491

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.331
MedInc: 1.369912

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.443
MedInc: 1.5149139999999999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.589
MedInc: 1.659916

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.56
MedInc: 1.804918

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.665
MedInc: 1.9499199999999999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.717
MedInc: 2.094922

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.888
MedInc: 2.2399240000000002

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 2.969
MedInc: 2.384926

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.014
MedInc: 2.529928

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.167
MedInc: 2.67493

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.161
MedInc: 2.8199319999999997

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.095
MedInc: 2.9649339999999995

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.328
MedInc: 3.1099360000000003

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.548
MedInc: 3.254938

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.586
MedInc: 3.39994

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.777
MedInc: 3.544942

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.913
MedInc: 3.6899439999999997

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.633
MedInc: 3.8349459999999995

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.67
MedInc: 3.9799480000000003

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.771
MedInc: 4.12495

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.754
MedInc: 4.269952

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.792
MedInc: 4.414954

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.801
MedInc: 4.559956

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.903
MedInc: 4.704958

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.962
MedInc: 4.84996

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 3.999
MedInc: 4.994962

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.507
MedInc: 5.139964

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.725
MedInc: 5.284966

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.75
MedInc: 5.429968

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.751
MedInc: 5.5749699999999995

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.732
MedInc: 5.719972

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.753
MedInc: 5.864974

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.767
MedInc: 6.009976

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.757
MedInc: 6.154978

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.766
MedInc: 6.29998

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.773
MedInc: 6.4449819999999995

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.775
MedInc: 6.589984

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.737
MedInc: 6.734986

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.574
MedInc: 6.879988

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.748
MedInc: 7.02499

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.734
MedInc: 7.169992

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.731
MedInc: 7.3149939999999996

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.717
MedInc: 7.459996

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.644
MedInc: 7.604998

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.587
MedInc: 7.75

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.624
MedInc: 7.895002

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.628
MedInc: 8.040004

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.63
MedInc: 8.185006

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.569
MedInc: 8.330008

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.518
MedInc: 8.47501

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.494
MedInc: 8.620012

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.467
MedInc: 8.765013999999999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.44
MedInc: 8.910016

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.407
MedInc: 9.055018

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.446
MedInc: 9.20002

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.432
MedInc: 9.345022

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.438
MedInc: 9.490024

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.325
MedInc: 9.635026

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.421
MedInc: 9.780028

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.382
MedInc: 9.92503

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.382
MedInc: 10.070032

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.382
MedInc: 10.215034

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.382
MedInc: 10.360036

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.382
MedInc: 10.505037999999999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.382
MedInc: 10.650039999999999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.382
MedInc: 10.795042

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.382
MedInc: 10.940044

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.382
MedInc: 11.085046

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.382
MedInc: 11.230048

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 11.37505

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 11.520052

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 11.665054

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 11.810056

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 11.955058

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 12.10006

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 12.245061999999999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 12.390063999999999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 12.535065999999999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 12.680068

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 12.82507

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 12.970072

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 13.115074

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 13.260076

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 13.405078

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 13.55008

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 13.695082

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 13.840084

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 13.985085999999999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 14.130087999999999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 14.275089999999999

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 14.420092

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 14.565094

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 14.710096

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 14.855098

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.388
MedInc: 15.0001

HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
AveOccup: 1.7186440677966102
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.4559505999999995, - 2.411180399999999, - 2.411180399999999, - 2.341540399999999, - 2.331640399999999, - 2.330440399999999, - 2.3312703999999993, - 2.4426803999999995, - 2.5889404999999988, - 2.5603303999999993, - 2.6653303999999984, - 2.7169203999999985, - 2.8879304999999986, - 2.9694905, - 3.0136705, - 3.166740500000001, - 3.1611905, - 3.0951603999999993, - 3.3281604999999983, - 3.5477307999999987, - 3.5860107999999995, - 3.777431299999998, - 3.9131218999999975, - 3.6333316999999994, - 3.670172199999998, - 3.770732599999998, - 3.7540425999999973, - 3.791772599999998, - 3.800972499999998, - 3.9026030999999977, - 3.9617834999999975, - 3.999333399999998, - 4.506974499999995, - 4.725486499999993, - 4.749686499999993, - 4.751105399999995, - 4.732214599999995, - 4.752994799999995, - 4.767304799999995, - 4.7574539999999965, - 4.766254399999995, - 4.773154299999996, - 4.774714699999995, - 4.736584799999996, - 4.574484799999995, - 4.747505799999995, - 4.734365699999995, - 4.731165799999994, - 4.717425999999994, - 4.643704799999996, - 4.587464299999996, - 4.623514799999998, - 4.627595099999997, - 4.630075299999998, - 4.569045299999998, - 4.5182154999999975, - 4.493585799999997, - 4.467195699999996, - 4.439526399999995, - 4.407377399999993, - 4.446427799999992, - 4.431867799999993, - 4.437517799999992, - 4.324706699999994, - 4.420887699999993, - 4.382137599999993, - 4.382137599999993, - 4.382137599999993, - 4.382137599999993, - 4.382137599999993, - 4.382137599999993, - 4.382137599999993, - 4.382137599999993, - 4.382137599999993, - 4.382137599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993, - 4.387737599999993 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 18803
prediction: 0.722
MedInc: 0.4999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.72
MedInc: 0.644902

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.72
MedInc: 0.7899039999999999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.72
MedInc: 0.934906

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.71
MedInc: 1.079908

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.709
MedInc: 1.22491

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.704
MedInc: 1.369912

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.714
MedInc: 1.5149139999999999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.722
MedInc: 1.659916

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.694
MedInc: 1.804918

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.719
MedInc: 1.9499199999999999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.726
MedInc: 2.094922

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.759
MedInc: 2.2399240000000002

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.858
MedInc: 2.384926

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.865
MedInc: 2.529928

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.91
MedInc: 2.67493

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.939
MedInc: 2.8199319999999997

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 0.952
MedInc: 2.9649339999999995

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.01
MedInc: 3.1099360000000003

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.037
MedInc: 3.254938

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.035
MedInc: 3.39994

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.042
MedInc: 3.544942

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.11
MedInc: 3.6899439999999997

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.164
MedInc: 3.8349459999999995

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.302
MedInc: 3.9799480000000003

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.529
MedInc: 4.12495

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.673
MedInc: 4.269952

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.719
MedInc: 4.414954

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.773
MedInc: 4.559956

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.801
MedInc: 4.704958

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.788
MedInc: 4.84996

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.807
MedInc: 4.994962

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 2.158
MedInc: 5.139964

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 2.248
MedInc: 5.284966

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 2.263
MedInc: 5.429968

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 2.278
MedInc: 5.5749699999999995

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 2.292
MedInc: 5.719972

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 2.419
MedInc: 5.864974

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 2.43
MedInc: 6.009976

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 2.504
MedInc: 6.154978

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 2.745
MedInc: 6.29998

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 2.787
MedInc: 6.4449819999999995

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 2.958
MedInc: 6.589984

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.063
MedInc: 6.734986

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.319
MedInc: 6.879988

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.324
MedInc: 7.02499

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.304
MedInc: 7.169992

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.399
MedInc: 7.3149939999999996

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.442
MedInc: 7.459996

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.417
MedInc: 7.604998

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.488
MedInc: 7.75

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.703
MedInc: 7.895002

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.746
MedInc: 8.040004

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.743
MedInc: 8.185006

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.816
MedInc: 8.330008

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.84
MedInc: 8.47501

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.801
MedInc: 8.620012

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.775
MedInc: 8.765013999999999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.747
MedInc: 8.910016

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.507
MedInc: 9.055018

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.228
MedInc: 9.20002

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.227
MedInc: 9.345022

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.236
MedInc: 9.490024

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.222
MedInc: 9.635026

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.227
MedInc: 9.780028

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.224
MedInc: 9.92503

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.243
MedInc: 10.070032

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.23
MedInc: 10.215034

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.245
MedInc: 10.360036

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.274
MedInc: 10.505037999999999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.223
MedInc: 10.650039999999999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.31
MedInc: 10.795042

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.307
MedInc: 10.940044

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.321
MedInc: 11.085046

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.323
MedInc: 11.230048

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.323
MedInc: 11.37505

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.323
MedInc: 11.520052

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.323
MedInc: 11.665054

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.323
MedInc: 11.810056

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 11.955058

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 12.10006

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 12.245061999999999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 12.390063999999999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 12.535065999999999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 12.680068

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 12.82507

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 12.970072

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 13.115074

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 13.260076

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 13.405078

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 13.55008

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 13.695082

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 13.840084

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 13.985085999999999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 14.130087999999999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 14.275089999999999

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 14.420092

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 14.565094

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 14.710096

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 14.855098

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 3.338
MedInc: 15.0001

HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
AveOccup: 2.6924460431654675
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.72221, - 0.7203400000000001, - 0.7203400000000001, - 0.7203400000000001, - 0.7097000000000001, - 0.7091900000000002, - 0.7039200000000002, - 0.7136900000000002, - 0.7218800000000001, - 0.6938900000000002, - 0.7190400000000001, - 0.7259100000000004, - 0.7586100000000003, - 0.8576500000000002, - 0.86472, - 0.91033, - 0.9388200000000001, - 0.95234, - 1.0104300000000002, - 1.0365700000000002, - 1.0350800000000004, - 1.0415400000000004, - 1.1097700000000004, - 1.1636900000000003, - 1.30248, - 1.5289799999999998, - 1.6730100000000006, - 1.7185000000000008, - 1.7730200000000005, - 1.8010800000000002, - 1.7876500000000004, - 1.8069700000000006, - 2.157690000000001, - 2.24814, - 2.2627600000000005, - 2.2782399999999994, - 2.2923399999999994, - 2.41929, - 2.4303900999999994, - 2.5040401, - 2.7445101000000007, - 2.786640100000001, - 2.9580101999999995, - 3.0630704999999985, - 3.318780499999998, - 3.324230499999999, - 3.3038404000000003, - 3.3987307999999996, - 3.4415208, - 3.4167705, - 3.4878805000000006, - 3.7030703000000016, - 3.746190200000001, - 3.7430504000000013, - 3.8163406, - 3.8402106000000007, - 3.8013109000000003, - 3.7750410999999997, - 3.7467613000000015, - 3.5073013000000004, - 3.2280113999999975, - 3.227021399999997, - 3.2359813999999973, - 3.2217412999999975, - 3.2266415999999976, - 3.2241016999999976, - 3.2427218999999976, - 3.2304915999999975, - 3.2452917999999973, - 3.2738418999999976, - 3.223141799999998, - 3.3096021999999983, - 3.307182099999998, - 3.321382199999998, - 3.322782399999998, - 3.322782399999998, - 3.322782399999998, - 3.322782399999998, - 3.322782399999998, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986, - 3.3381924999999986 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 12793
prediction: 0.702
MedInc: 0.4999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.699
MedInc: 0.644902

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.623
MedInc: 0.7899039999999999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.625
MedInc: 0.934906

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.601
MedInc: 1.079908

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.603
MedInc: 1.22491

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.605
MedInc: 1.369912

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.61
MedInc: 1.5149139999999999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.613
MedInc: 1.659916

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.623
MedInc: 1.804918

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.663
MedInc: 1.9499199999999999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.715
MedInc: 2.094922

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.705
MedInc: 2.2399240000000002

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.832
MedInc: 2.384926

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.891
MedInc: 2.529928

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.937
MedInc: 2.67493

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.956
MedInc: 2.8199319999999997

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.007
MedInc: 2.9649339999999995

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.086
MedInc: 3.1099360000000003

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.092
MedInc: 3.254938

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.149
MedInc: 3.39994

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.135
MedInc: 3.544942

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.169
MedInc: 3.6899439999999997

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.212
MedInc: 3.8349459999999995

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.225
MedInc: 3.9799480000000003

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.322
MedInc: 4.12495

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.383
MedInc: 4.269952

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.36
MedInc: 4.414954

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.413
MedInc: 4.559956

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.496
MedInc: 4.704958

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.532
MedInc: 4.84996

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.664
MedInc: 4.994962

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 2.012
MedInc: 5.139964

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 2.002
MedInc: 5.284966

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.947
MedInc: 5.429968

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.989
MedInc: 5.5749699999999995

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 2.012
MedInc: 5.719972

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 2.079
MedInc: 5.864974

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 2.057
MedInc: 6.009976

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 2.124
MedInc: 6.154978

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 2.149
MedInc: 6.29998

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 2.248
MedInc: 6.4449819999999995

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 2.634
MedInc: 6.589984

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 2.725
MedInc: 6.734986

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.063
MedInc: 6.879988

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.071
MedInc: 7.02499

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.066
MedInc: 7.169992

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.154
MedInc: 7.3149939999999996

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.182
MedInc: 7.459996

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.163
MedInc: 7.604998

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.399
MedInc: 7.75

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.717
MedInc: 7.895002

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.736
MedInc: 8.040004

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.698
MedInc: 8.185006

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.738
MedInc: 8.330008

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.675
MedInc: 8.47501

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.581
MedInc: 8.620012

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.581
MedInc: 8.765013999999999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.582
MedInc: 8.910016

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.523
MedInc: 9.055018

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.489
MedInc: 9.20002

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.485
MedInc: 9.345022

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.485
MedInc: 9.490024

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.466
MedInc: 9.635026

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.468
MedInc: 9.780028

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.449
MedInc: 9.92503

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.444
MedInc: 10.070032

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.478
MedInc: 10.215034

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.478
MedInc: 10.360036

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.485
MedInc: 10.505037999999999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.488
MedInc: 10.650039999999999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.488
MedInc: 10.795042

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.488
MedInc: 10.940044

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.488
MedInc: 11.085046

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.488
MedInc: 11.230048

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.511
MedInc: 11.37505

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.511
MedInc: 11.520052

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.511
MedInc: 11.665054

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.511
MedInc: 11.810056

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.511
MedInc: 11.955058

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.511
MedInc: 12.10006

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.511
MedInc: 12.245061999999999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.511
MedInc: 12.390063999999999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.511
MedInc: 12.535065999999999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.511
MedInc: 12.680068

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.511
MedInc: 12.82507

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.511
MedInc: 12.970072

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 13.115074

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 13.260076

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 13.405078

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 13.55008

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 13.695082

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 13.840084

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 13.985085999999999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 14.130087999999999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 14.275089999999999

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 14.420092

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 14.565094

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 14.710096

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 14.855098

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 3.512
MedInc: 15.0001

HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
AveOccup: 3.425396825396825
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.7022800000000001, - 0.69931, - 0.6234900000000004, - 0.6253900000000004, - 0.6010100000000004, - 0.6028400000000005, - 0.6047900000000005, - 0.6098100000000004, - 0.6132000000000005, - 0.6227300000000006, - 0.6634, - 0.7145400000000001, - 0.7047699999999999, - 0.8316999999999998, - 0.8910600000000001, - 0.9368100000000003, - 0.9559400000000003, - 1.0066400000000004, - 1.0862700000000003, - 1.0915100000000002, - 1.14853, - 1.13536, - 1.16938, - 1.2122900000000003, - 1.2252900000000007, - 1.3222600000000007, - 1.3827400000000005, - 1.3595800000000011, - 1.4132100000000012, - 1.496350000000001, - 1.5315500000000009, - 1.663740000000001, - 2.01168, - 2.002480000000001, - 1.9473400000000007, - 1.9888000000000008, - 2.0124300000000006, - 2.07947, - 2.0570200000000005, - 2.124329999999999, - 2.1492099999999987, - 2.248179999999999, - 2.63352, - 2.72519, - 3.062930300000001, - 3.0712502, - 3.0660301999999997, - 3.1538502999999998, - 3.1816402999999998, - 3.1633402999999998, - 3.3994507000000005, - 3.7165309999999994, - 3.7356508999999996, - 3.6977709, - 3.7380811000000005, - 3.6747710999999996, - 3.5811212, - 3.580771599999999, - 3.5818315999999997, - 3.5225019999999985, - 3.4885221, - 3.485272, - 3.485272, - 3.4655519000000004, - 3.4679821000000004, - 3.449142100000001, - 3.4444121000000005, - 3.4783823000000003, - 3.4783823000000003, - 3.4854323000000007, - 3.4884924000000006, - 3.4884924000000006, - 3.4884924000000006, - 3.4884924000000006, - 3.4884924000000006, - 3.510892400000001, - 3.510892400000001, - 3.510892400000001, - 3.510892400000001, - 3.510892400000001, - 3.510892400000001, - 3.510892400000001, - 3.510892400000001, - 3.510892400000001, - 3.510892400000001, - 3.510892400000001, - 3.510892400000001, - 3.512172500000001, - 3.512172500000001, - 3.512172500000001, - 3.512172500000001, - 3.512172500000001, - 3.512172500000001, - 3.512172500000001, - 3.512172500000001, - 3.512172500000001, - 3.512172500000001, - 3.512172500000001, - 3.512172500000001, - 3.512172500000001, - 3.512172500000001 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 14111
prediction: 1.548
MedInc: 0.4999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.146
MedInc: 0.644902

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.116
MedInc: 0.7899039999999999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.042
MedInc: 0.934906

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.022
MedInc: 1.079908

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.025
MedInc: 1.22491

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.026
MedInc: 1.369912

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.007
MedInc: 1.5149139999999999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.973
MedInc: 1.659916

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.996
MedInc: 1.804918

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.01
MedInc: 1.9499199999999999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.051
MedInc: 2.094922

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.045
MedInc: 2.2399240000000002

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.065
MedInc: 2.384926

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.09
MedInc: 2.529928

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.141
MedInc: 2.67493

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.153
MedInc: 2.8199319999999997

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.261
MedInc: 2.9649339999999995

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.243
MedInc: 3.1099360000000003

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.384
MedInc: 3.254938

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.419
MedInc: 3.39994

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.431
MedInc: 3.544942

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.441
MedInc: 3.6899439999999997

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.502
MedInc: 3.8349459999999995

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.572
MedInc: 3.9799480000000003

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.646
MedInc: 4.12495

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.684
MedInc: 4.269952

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.698
MedInc: 4.414954

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.73
MedInc: 4.559956

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.764
MedInc: 4.704958

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.82
MedInc: 4.84996

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.847
MedInc: 4.994962

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 2.139
MedInc: 5.139964

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 2.225
MedInc: 5.284966

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 2.238
MedInc: 5.429968

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 2.259
MedInc: 5.5749699999999995

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 2.309
MedInc: 5.719972

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 2.373
MedInc: 5.864974

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 2.381
MedInc: 6.009976

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 2.573
MedInc: 6.154978

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 2.557
MedInc: 6.29998

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 2.634
MedInc: 6.4449819999999995

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 2.748
MedInc: 6.589984

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 2.646
MedInc: 6.734986

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.19
MedInc: 6.879988

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.153
MedInc: 7.02499

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.151
MedInc: 7.169992

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.17
MedInc: 7.3149939999999996

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.194
MedInc: 7.459996

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.216
MedInc: 7.604998

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.538
MedInc: 7.75

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.773
MedInc: 7.895002

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.788
MedInc: 8.040004

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.872
MedInc: 8.185006

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.88
MedInc: 8.330008

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.876
MedInc: 8.47501

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.858
MedInc: 8.620012

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.829
MedInc: 8.765013999999999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.798
MedInc: 8.910016

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.839
MedInc: 9.055018

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.928
MedInc: 9.20002

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.95
MedInc: 9.345022

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.953
MedInc: 9.490024

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.93
MedInc: 9.635026

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.989
MedInc: 9.780028

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.975
MedInc: 9.92503

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 3.992
MedInc: 10.070032

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.084
MedInc: 10.215034

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.082
MedInc: 10.360036

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.08
MedInc: 10.505037999999999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.033
MedInc: 10.650039999999999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.253
MedInc: 10.795042

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.253
MedInc: 10.940044

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.262
MedInc: 11.085046

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.271
MedInc: 11.230048

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.276
MedInc: 11.37505

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.277
MedInc: 11.520052

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 11.665054

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 11.810056

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 11.955058

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 12.10006

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 12.245061999999999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 12.390063999999999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 12.535065999999999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 12.680068

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 12.82507

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 12.970072

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 13.115074

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 13.260076

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 13.405078

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 13.55008

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 13.695082

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 13.840084

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 13.985085999999999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 14.130087999999999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 14.275089999999999

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 14.420092

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 14.565094

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 14.710096

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 14.855098

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 4.288
MedInc: 15.0001

HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
AveOccup: 3.4809885931558937
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.547931199999999, - 1.1462800999999994, - 1.1157899999999996, - 1.0422999999999996, - 1.0223499999999994, - 1.0249899999999994, - 1.0259899999999993, - 1.0073899999999991, - 0.9732899999999991, - 0.9961699999999992, - 1.0103199999999992, - 1.0514699999999997, - 1.0453699999999997, - 1.0648000000000002, - 1.0902299999999998, - 1.1413400000000002, - 1.1531500000000003, - 1.2611200000000005, - 1.2433400000000008, - 1.3839800000000009, - 1.4191900000000006, - 1.431130000000001, - 1.4405800000000004, - 1.5024000000000004, - 1.5723000000000003, - 1.6457699999999997, - 1.68379, - 1.6975900000000004, - 1.7301999999999997, - 1.7636699999999996, - 1.8196599999999998, - 1.8467199999999995, - 2.138689999999999, - 2.225419999999999, - 2.237939999999999, - 2.259499999999999, - 2.3092999999999995, - 2.3726000999999997, - 2.3806200999999994, - 2.5729699999999998, - 2.5572201000000003, - 2.6343202000000003, - 2.7482303000000003, - 2.6460900999999994, - 3.1896207999999975, - 3.1530706999999984, - 3.1510806999999983, - 3.169610699999998, - 3.1942705999999976, - 3.2159606999999983, - 3.5379515999999978, - 3.7734612999999992, - 3.7883311999999982, - 3.8716413999999975, - 3.879961199999997, - 3.8756408999999974, - 3.8575709999999974, - 3.8289308999999987, - 3.7984209999999985, - 3.839441399999998, - 3.9277815999999994, - 3.9499016, - 3.9528016999999993, - 3.9301417000000005, - 3.9893619999999994, - 3.974732099999999, - 3.9918221999999997, - 4.0837324, - 4.082432399999999, - 4.0796124, - 4.033061999999999, - 4.253003399999999, - 4.253003399999999, - 4.262463199999999, - 4.270793799999998, - 4.276393799999998, - 4.277263799999998, - 4.288003899999998, - 4.288003899999998, - 4.288003899999998, - 4.288003899999998, - 4.288003899999998, - 4.288003899999998, - 4.288003899999998, - 4.288003899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998, - 4.287983899999998 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 18032
prediction: 2.193
MedInc: 0.4999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.201
MedInc: 0.644902

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.208
MedInc: 0.7899039999999999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.208
MedInc: 0.934906

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.212
MedInc: 1.079908

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.208
MedInc: 1.22491

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.209
MedInc: 1.369912

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.2
MedInc: 1.5149139999999999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.276
MedInc: 1.659916

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.29
MedInc: 1.804918

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.252
MedInc: 1.9499199999999999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.225
MedInc: 2.094922

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.247
MedInc: 2.2399240000000002

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.229
MedInc: 2.384926

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.318
MedInc: 2.529928

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.323
MedInc: 2.67493

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.305
MedInc: 2.8199319999999997

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.292
MedInc: 2.9649339999999995

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.247
MedInc: 3.1099360000000003

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.191
MedInc: 3.254938

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.281
MedInc: 3.39994

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.327
MedInc: 3.544942

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.299
MedInc: 3.6899439999999997

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.357
MedInc: 3.8349459999999995

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.418
MedInc: 3.9799480000000003

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.48
MedInc: 4.12495

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.532
MedInc: 4.269952

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.642
MedInc: 4.414954

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.75
MedInc: 4.559956

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.789
MedInc: 4.704958

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.733
MedInc: 4.84996

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.716
MedInc: 4.994962

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.837
MedInc: 5.139964

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.841
MedInc: 5.284966

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.866
MedInc: 5.429968

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.925
MedInc: 5.5749699999999995

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.03
MedInc: 5.719972

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.405
MedInc: 5.864974

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.216
MedInc: 6.009976

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.314
MedInc: 6.154978

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.643
MedInc: 6.29998

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.804
MedInc: 6.4449819999999995

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.918
MedInc: 6.589984

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.025
MedInc: 6.734986

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.098
MedInc: 6.879988

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.134
MedInc: 7.02499

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.111
MedInc: 7.169992

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.249
MedInc: 7.3149939999999996

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.306
MedInc: 7.459996

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.227
MedInc: 7.604998

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.173
MedInc: 7.75

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.181
MedInc: 7.895002

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.227
MedInc: 8.040004

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.22
MedInc: 8.185006

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.183
MedInc: 8.330008

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.151
MedInc: 8.47501

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.191
MedInc: 8.620012

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.203
MedInc: 8.765013999999999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.127
MedInc: 8.910016

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.124
MedInc: 9.055018

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.487
MedInc: 9.20002

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.493
MedInc: 9.345022

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.491
MedInc: 9.490024

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.51
MedInc: 9.635026

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.685
MedInc: 9.780028

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.691
MedInc: 9.92503

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.738
MedInc: 10.070032

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.662
MedInc: 10.215034

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.684
MedInc: 10.360036

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.666
MedInc: 10.505037999999999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.569
MedInc: 10.650039999999999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.776
MedInc: 10.795042

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.773
MedInc: 10.940044

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.786
MedInc: 11.085046

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.793
MedInc: 11.230048

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.793
MedInc: 11.37505

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.791
MedInc: 11.520052

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.806
MedInc: 11.665054

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.806
MedInc: 11.810056

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 11.955058

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 12.10006

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 12.245061999999999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 12.390063999999999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 12.535065999999999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 12.680068

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 12.82507

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 12.970072

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 13.115074

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 13.260076

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 13.405078

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 13.55008

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 13.695082

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 13.840084

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.821
MedInc: 13.985085999999999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.825
MedInc: 14.130087999999999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.825
MedInc: 14.275089999999999

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.825
MedInc: 14.420092

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.825
MedInc: 14.565094

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.825
MedInc: 14.710096

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.825
MedInc: 14.855098

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 4.825
MedInc: 15.0001

HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
AveOccup: 2.2652329749103943
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.193159999999999, - 2.201289999999999, - 2.2076399999999987, - 2.2076399999999987, - 2.2123799999999987, - 2.208399999999999, - 2.2087999999999988, - 2.199619999999999, - 2.275949999999999, - 2.2901699999999985, - 2.2518199999999986, - 2.2252499999999986, - 2.2469399999999986, - 2.2288699999999992, - 2.3180101, - 2.3233702, - 2.3047402, - 2.2918401999999998, - 2.247359999999999, - 2.191299999999999, - 2.2805799999999987, - 2.3270199999999988, - 2.2991699999999993, - 2.3570501999999984, - 2.418090099999999, - 2.4796700999999985, - 2.5322100999999995, - 2.641620100000001, - 2.750400199999999, - 2.7894102999999997, - 2.732580099999999, - 2.7163801000000003, - 2.8371401000000005, - 2.8414801000000005, - 2.86605, - 2.9254299999999995, - 3.0303901999999994, - 3.4053903999999977, - 3.2159302, - 3.3137203999999993, - 3.6433011000000004, - 3.8037012000000003, - 3.9177314999999986, - 4.0250116999999985, - 4.0975324, - 4.134343199999999, - 4.111423399999999, - 4.248903999999999, - 4.306494199999998, - 4.227393499999998, - 4.173302599999999, - 4.181182, - 4.226921900000001, - 4.2203422, - 4.1831621000000005, - 4.1514722000000015, - 4.1907929, - 4.2026135999999985, - 4.126993899999999, - 4.123863899999998, - 4.486605299999996, - 4.492845599999995, - 4.491495599999996, - 4.510055599999996, - 4.685206899999994, - 4.691116899999994, - 4.737716999999993, - 4.662245499999994, - 4.684445799999994, - 4.666405799999994, - 4.569245599999995, - 4.775646299999994, - 4.773226199999994, - 4.785846399999993, - 4.793036699999993, - 4.793036699999993, - 4.791216699999993, - 4.806066999999992, - 4.806066999999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.821477099999992, - 4.824717199999991, - 4.824717199999991, - 4.824717199999991, - 4.824717199999991, - 4.824717199999991, - 4.824717199999991, - 4.824717199999991 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 5599
prediction: 1.986
MedInc: 0.4999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.448
MedInc: 0.644902

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.37
MedInc: 0.7899039999999999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.371
MedInc: 0.934906

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.371
MedInc: 1.079908

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.375
MedInc: 1.22491

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.375
MedInc: 1.369912

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.375
MedInc: 1.5149139999999999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.38
MedInc: 1.659916

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.368
MedInc: 1.804918

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.377
MedInc: 1.9499199999999999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.411
MedInc: 2.094922

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.617
MedInc: 2.2399240000000002

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.71
MedInc: 2.384926

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.858
MedInc: 2.529928

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.874
MedInc: 2.67493

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.899
MedInc: 2.8199319999999997

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.937
MedInc: 2.9649339999999995

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.81
MedInc: 3.1099360000000003

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.793
MedInc: 3.254938

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.801
MedInc: 3.39994

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.788
MedInc: 3.544942

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.791
MedInc: 3.6899439999999997

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.819
MedInc: 3.8349459999999995

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.838
MedInc: 3.9799480000000003

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.975
MedInc: 4.12495

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.929
MedInc: 4.269952

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.914
MedInc: 4.414954

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.949
MedInc: 4.559956

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.975
MedInc: 4.704958

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.022
MedInc: 4.84996

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.171
MedInc: 4.994962

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.171
MedInc: 5.139964

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.087
MedInc: 5.284966

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.123
MedInc: 5.429968

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.117
MedInc: 5.5749699999999995

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.266
MedInc: 5.719972

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.414
MedInc: 5.864974

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.425
MedInc: 6.009976

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.683
MedInc: 6.154978

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.759
MedInc: 6.29998

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.799
MedInc: 6.4449819999999995

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.958
MedInc: 6.589984

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.237
MedInc: 6.734986

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.462
MedInc: 6.879988

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.824
MedInc: 7.02499

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.841
MedInc: 7.169992

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.803
MedInc: 7.3149939999999996

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.836
MedInc: 7.459996

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.824
MedInc: 7.604998

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.07
MedInc: 7.75

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.121
MedInc: 7.895002

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.123
MedInc: 8.040004

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.146
MedInc: 8.185006

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.137
MedInc: 8.330008

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.131
MedInc: 8.47501

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.119
MedInc: 8.620012

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.156
MedInc: 8.765013999999999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.179
MedInc: 8.910016

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.216
MedInc: 9.055018

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.231
MedInc: 9.20002

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.219
MedInc: 9.345022

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.225
MedInc: 9.490024

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.151
MedInc: 9.635026

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.28
MedInc: 9.780028

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.241
MedInc: 9.92503

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.244
MedInc: 10.070032

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.247
MedInc: 10.215034

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.247
MedInc: 10.360036

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.247
MedInc: 10.505037999999999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.247
MedInc: 10.650039999999999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.247
MedInc: 10.795042

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.247
MedInc: 10.940044

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.247
MedInc: 11.085046

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.247
MedInc: 11.230048

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.252
MedInc: 11.37505

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.252
MedInc: 11.520052

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.252
MedInc: 11.665054

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.252
MedInc: 11.810056

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.252
MedInc: 11.955058

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.252
MedInc: 12.10006

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.252
MedInc: 12.245061999999999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.252
MedInc: 12.390063999999999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.252
MedInc: 12.535065999999999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.252
MedInc: 12.680068

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.252
MedInc: 12.82507

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.252
MedInc: 12.970072

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.254
MedInc: 13.115074

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.254
MedInc: 13.260076

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.254
MedInc: 13.405078

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.254
MedInc: 13.55008

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.262
MedInc: 13.695082

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.262
MedInc: 13.840084

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.262
MedInc: 13.985085999999999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.262
MedInc: 14.130087999999999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.262
MedInc: 14.275089999999999

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.262
MedInc: 14.420092

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.262
MedInc: 14.565094

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.262
MedInc: 14.710096

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.262
MedInc: 14.855098

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 4.262
MedInc: 15.0001

HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
AveOccup: 3.3946869070208727
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.9862117000000012, - 1.4480102000000006, - 1.3703, - 1.3710400000000005, - 1.3710400000000005, - 1.3751700000000002, - 1.3751500000000005, - 1.3751500000000005, - 1.3803800000000004, - 1.3677400000000006, - 1.3765100000000003, - 1.4106000000000003, - 1.6167700000000003, - 1.7103199999999998, - 1.8578599999999992, - 1.8740699999999995, - 1.8992899999999997, - 1.9369099999999995, - 1.8103299999999998, - 1.7928200000000003, - 1.8013700000000006, - 1.7882400000000005, - 1.7906400000000002, - 1.8188800000000003, - 1.83751, - 1.9750399999999992, - 1.9285000000000005, - 1.91426, - 1.9491600000000002, - 1.9747000000000006, - 2.0224600000000006, - 2.1710201000000007, - 2.17123, - 2.0869699999999995, - 2.1228499999999992, - 2.1166, - 2.2655, - 2.414040000000001, - 2.4254700000000002, - 2.6834200999999998, - 2.7585203000000007, - 2.798580300000001, - 2.957690300000001, - 3.2374707000000007, - 3.4615107, - 3.824371499999998, - 3.840651699999998, - 3.8033315999999986, - 3.8358917999999984, - 3.8238017999999987, - 4.070402299999999, - 4.1210825999999985, - 4.123302699999999, - 4.146222799999999, - 4.137422999999999, - 4.131432999999998, - 4.119293299999998, - 4.155723699999997, - 4.179274399999996, - 4.215865199999995, - 4.230775299999995, - 4.219095399999996, - 4.224745399999996, - 4.150694999999997, - 4.279686299999995, - 4.240936199999996, - 4.243726299999995, - 4.246656299999994, - 4.246656299999994, - 4.246656299999994, - 4.246656299999994, - 4.246656299999994, - 4.246656299999994, - 4.246656299999994, - 4.246656299999994, - 4.252256299999995, - 4.252256299999995, - 4.252256299999995, - 4.252256299999995, - 4.252256299999995, - 4.252256299999995, - 4.252256299999995, - 4.252256299999995, - 4.252256299999995, - 4.252256299999995, - 4.252256299999995, - 4.252256299999995, - 4.253536399999994, - 4.253536399999994, - 4.253536399999994, - 4.253536399999994, - 4.261866499999995, - 4.261866499999995, - 4.261866499999995, - 4.261866499999995, - 4.261866499999995, - 4.261866499999995, - 4.261866499999995, - 4.261866499999995, - 4.261866499999995, - 4.261866499999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 4172
prediction: 2.348
MedInc: 0.4999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.732
MedInc: 0.644902

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.359
MedInc: 0.7899039999999999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.323
MedInc: 0.934906

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.323
MedInc: 1.079908

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.33
MedInc: 1.22491

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.335
MedInc: 1.369912

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.355
MedInc: 1.5149139999999999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.347
MedInc: 1.659916

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.359
MedInc: 1.804918

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.33
MedInc: 1.9499199999999999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.332
MedInc: 2.094922

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.368
MedInc: 2.2399240000000002

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.385
MedInc: 2.384926

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.532
MedInc: 2.529928

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.534
MedInc: 2.67493

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.541
MedInc: 2.8199319999999997

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.598
MedInc: 2.9649339999999995

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.65
MedInc: 3.1099360000000003

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.688
MedInc: 3.254938

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.686
MedInc: 3.39994

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.701
MedInc: 3.544942

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.701
MedInc: 3.6899439999999997

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.786
MedInc: 3.8349459999999995

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.778
MedInc: 3.9799480000000003

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.845
MedInc: 4.12495

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.803
MedInc: 4.269952

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.808
MedInc: 4.414954

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.86
MedInc: 4.559956

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.887
MedInc: 4.704958

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.88
MedInc: 4.84996

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.967
MedInc: 4.994962

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.108
MedInc: 5.139964

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.15
MedInc: 5.284966

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.083
MedInc: 5.429968

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.134
MedInc: 5.5749699999999995

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.35
MedInc: 5.719972

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.578
MedInc: 5.864974

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.551
MedInc: 6.009976

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.742
MedInc: 6.154978

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.87
MedInc: 6.29998

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.909
MedInc: 6.4449819999999995

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.977
MedInc: 6.589984

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 3.192
MedInc: 6.734986

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 3.485
MedInc: 6.879988

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.103
MedInc: 7.02499

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.177
MedInc: 7.169992

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.15
MedInc: 7.3149939999999996

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.115
MedInc: 7.459996

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.068
MedInc: 7.604998

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.122
MedInc: 7.75

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.127
MedInc: 7.895002

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.126
MedInc: 8.040004

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.144
MedInc: 8.185006

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.11
MedInc: 8.330008

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.122
MedInc: 8.47501

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.115
MedInc: 8.620012

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.142
MedInc: 8.765013999999999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.136
MedInc: 8.910016

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.155
MedInc: 9.055018

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.196
MedInc: 9.20002

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.176
MedInc: 9.345022

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.181
MedInc: 9.490024

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.105
MedInc: 9.635026

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.245
MedInc: 9.780028

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.22
MedInc: 9.92503

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.223
MedInc: 10.070032

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.251
MedInc: 10.215034

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.251
MedInc: 10.360036

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.251
MedInc: 10.505037999999999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.251
MedInc: 10.650039999999999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.251
MedInc: 10.795042

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.251
MedInc: 10.940044

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.251
MedInc: 11.085046

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.251
MedInc: 11.230048

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.256
MedInc: 11.37505

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.256
MedInc: 11.520052

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.256
MedInc: 11.665054

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.256
MedInc: 11.810056

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.256
MedInc: 11.955058

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.256
MedInc: 12.10006

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.256
MedInc: 12.245061999999999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.256
MedInc: 12.390063999999999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.256
MedInc: 12.535065999999999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.256
MedInc: 12.680068

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.256
MedInc: 12.82507

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.256
MedInc: 12.970072

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.257
MedInc: 13.115074

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.257
MedInc: 13.260076

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.257
MedInc: 13.405078

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.257
MedInc: 13.55008

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.266
MedInc: 13.695082

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.266
MedInc: 13.840084

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.266
MedInc: 13.985085999999999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.266
MedInc: 14.130087999999999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.266
MedInc: 14.275089999999999

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.266
MedInc: 14.420092

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.266
MedInc: 14.565094

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.266
MedInc: 14.710096

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.266
MedInc: 14.855098

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 4.266
MedInc: 15.0001

HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
AveOccup: 3.489082969432314
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 2.3482524999999996, - 1.7317407999999994, - 1.3592601000000004, - 1.3230800000000007, - 1.3226400000000007, - 1.329980000000001, - 1.3346300000000009, - 1.3554100000000004, - 1.3473700000000008, - 1.3587600000000006, - 1.329790000000001, - 1.3317900000000011, - 1.3682300000000014, - 1.3852200000000006, - 1.5316399999999997, - 1.5340199999999995, - 1.5414999999999999, - 1.597879999999999, - 1.6501199999999998, - 1.6879800000000003, - 1.6855900000000004, - 1.70072, - 1.7007999999999996, - 1.7864299999999995, - 1.7781400000000007, - 1.8450000000000006, - 1.8033300000000012, - 1.807910000000001, - 1.8598801000000011, - 1.8871901000000006, - 1.8804401000000002, - 1.9673103, - 2.1083000999999997, - 2.1499500999999994, - 2.08311, - 2.1343099999999997, - 2.3496802, - 2.5782102000000013, - 2.5513301000000013, - 2.7419203000000016, - 2.8695607000000005, - 2.909460600000001, - 2.977390700000001, - 3.1919408, - 3.4845108, - 4.102551799999997, - 4.177002299999995, - 4.1500821999999955, - 4.115252199999996, - 4.0679418999999974, - 4.121692399999997, - 4.127122999999998, - 4.126202899999997, - 4.144162799999998, - 4.110462899999999, - 4.1224729999999985, - 4.115363299999998, - 4.1421034999999975, - 4.136094199999997, - 4.154814799999998, - 4.196345099999997, - 4.175774999999998, - 4.181424999999997, - 4.104514499999999, - 4.245135899999997, - 4.220465899999997, - 4.223255999999997, - 4.250556299999996, - 4.250556299999996, - 4.250556299999996, - 4.250556299999996, - 4.250556299999996, - 4.250556299999996, - 4.250556299999996, - 4.250556299999996, - 4.256156299999995, - 4.256156299999995, - 4.256156299999995, - 4.256156299999995, - 4.256156299999995, - 4.256156299999995, - 4.256156299999995, - 4.256156299999995, - 4.256156299999995, - 4.256156299999995, - 4.256156299999995, - 4.256156299999995, - 4.257436399999996, - 4.257436399999996, - 4.257436399999996, - 4.257436399999996, - 4.265766499999995, - 4.265766499999995, - 4.265766499999995, - 4.265766499999995, - 4.265766499999995, - 4.265766499999995, - 4.265766499999995, - 4.265766499999995, - 4.265766499999995, - 4.265766499999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 12445
prediction: 0.937
MedInc: 0.4999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.631
MedInc: 0.644902

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.586
MedInc: 0.7899039999999999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.55
MedInc: 0.934906

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.555
MedInc: 1.079908

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.56
MedInc: 1.22491

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.569
MedInc: 1.369912

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.608
MedInc: 1.5149139999999999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.608
MedInc: 1.659916

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.635
MedInc: 1.804918

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.642
MedInc: 1.9499199999999999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.639
MedInc: 2.094922

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.7
MedInc: 2.2399240000000002

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.789
MedInc: 2.384926

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.785
MedInc: 2.529928

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.791
MedInc: 2.67493

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.794
MedInc: 2.8199319999999997

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.804
MedInc: 2.9649339999999995

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.797
MedInc: 3.1099360000000003

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.835
MedInc: 3.254938

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.878
MedInc: 3.39994

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.901
MedInc: 3.544942

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.952
MedInc: 3.6899439999999997

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.012
MedInc: 3.8349459999999995

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.097
MedInc: 3.9799480000000003

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.197
MedInc: 4.12495

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.232
MedInc: 4.269952

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.229
MedInc: 4.414954

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.22
MedInc: 4.559956

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.229
MedInc: 4.704958

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.232
MedInc: 4.84996

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.25
MedInc: 4.994962

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.713
MedInc: 5.139964

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.914
MedInc: 5.284966

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.905
MedInc: 5.429968

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.957
MedInc: 5.5749699999999995

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.024
MedInc: 5.719972

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.124
MedInc: 5.864974

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.132
MedInc: 6.009976

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.32
MedInc: 6.154978

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.37
MedInc: 6.29998

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.408
MedInc: 6.4449819999999995

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.552
MedInc: 6.589984

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.495
MedInc: 6.734986

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.918
MedInc: 6.879988

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.848
MedInc: 7.02499

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.855
MedInc: 7.169992

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.937
MedInc: 7.3149939999999996

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.941
MedInc: 7.459996

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.931
MedInc: 7.604998

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.17
MedInc: 7.75

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.533
MedInc: 7.895002

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.539
MedInc: 8.040004

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.564
MedInc: 8.185006

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.739
MedInc: 8.330008

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.914
MedInc: 8.47501

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.884
MedInc: 8.620012

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.892
MedInc: 8.765013999999999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.988
MedInc: 8.910016

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.162
MedInc: 9.055018

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.261
MedInc: 9.20002

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.244
MedInc: 9.345022

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.236
MedInc: 9.490024

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.185
MedInc: 9.635026

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.339
MedInc: 9.780028

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.384
MedInc: 9.92503

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.38
MedInc: 10.070032

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.432
MedInc: 10.215034

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.432
MedInc: 10.360036

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.428
MedInc: 10.505037999999999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.4
MedInc: 10.650039999999999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.447
MedInc: 10.795042

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.448
MedInc: 10.940044

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.451
MedInc: 11.085046

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.449
MedInc: 11.230048

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.449
MedInc: 11.37505

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.446
MedInc: 11.520052

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 11.665054

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 11.810056

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 11.955058

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 12.10006

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 12.245061999999999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 12.390063999999999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 12.535065999999999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 12.680068

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 12.82507

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 12.970072

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 13.115074

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 13.260076

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 13.405078

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.456
MedInc: 13.55008

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.465
MedInc: 13.695082

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.465
MedInc: 13.840084

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.465
MedInc: 13.985085999999999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.465
MedInc: 14.130087999999999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.465
MedInc: 14.275089999999999

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.465
MedInc: 14.420092

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.465
MedInc: 14.565094

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.465
MedInc: 14.710096

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.465
MedInc: 14.855098

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 4.465
MedInc: 15.0001

HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
AveOccup: 3.89247311827957
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.9369907999999996, - 0.6307600999999995, - 0.5857799999999996, - 0.5498899999999997, - 0.5545699999999996, - 0.5604599999999997, - 0.5694999999999998, - 0.6077899999999999, - 0.60832, - 0.6345400000000001, - 0.6424500000000001, - 0.6386800000000001, - 0.6995600000000001, - 0.7885500000000001, - 0.7846000000000002, - 0.7911600000000003, - 0.7943300000000002, - 0.8044700000000001, - 0.7968999999999995, - 0.8348399999999997, - 0.8780699999999997, - 0.9013599999999997, - 0.9518900999999999, - 1.0119701999999997, - 1.0965603, - 1.1972202999999992, - 1.2316401999999995, - 1.2291301999999997, - 1.2195800999999997, - 1.2291301, - 1.2322301, - 1.2502400000000002, - 1.7128601000000003, - 1.9144299999999999, - 1.9047299999999998, - 1.95708, - 2.02404, - 2.1240700000000006, - 2.1322100000000006, - 2.31963, - 2.369770000000001, - 2.4084401000000004, - 2.551880199999999, - 2.4947801000000003, - 2.9179704999999996, - 2.847900599999999, - 2.8549705999999997, - 2.9374207, - 2.9413007999999996, - 2.9305407999999993, - 3.1702916999999995, - 3.532762399999998, - 3.5389821999999977, - 3.5640521999999977, - 3.7391924999999975, - 3.9139926999999965, - 3.8840422999999977, - 3.891682299999997, - 3.9881721999999975, - 4.1622923999999974, - 4.260692399999998, - 4.244482399999999, - 4.235762299999999, - 4.1853216, - 4.3394224, - 4.3839427, - 4.3797727, - 4.4318729999999995, - 4.4318729999999995, - 4.4278829, - 4.3996729, - 4.4473929, - 4.4477028999999995, - 4.450992899999999, - 4.449332999999998, - 4.449332999999998, - 4.445662999999999, - 4.456403099999998, - 4.456403099999998, - 4.456403099999998, - 4.456403099999998, - 4.456403099999998, - 4.456403099999998, - 4.456403099999998, - 4.456403099999998, - 4.456383099999998, - 4.456383099999998, - 4.456383099999998, - 4.456383099999998, - 4.456383099999998, - 4.456383099999998, - 4.4647131999999985, - 4.4647131999999985, - 4.4647131999999985, - 4.4647131999999985, - 4.4647131999999985, - 4.4647131999999985, - 4.4647131999999985, - 4.4647131999999985, - 4.4647131999999985, - 4.4647131999999985 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 18911
prediction: 1.268
MedInc: 0.4999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.268
MedInc: 0.644902

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.265
MedInc: 0.7899039999999999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.263
MedInc: 0.934906

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.25
MedInc: 1.079908

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.238
MedInc: 1.22491

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.241
MedInc: 1.369912

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.231
MedInc: 1.5149139999999999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.249
MedInc: 1.659916

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.241
MedInc: 1.804918

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.291
MedInc: 1.9499199999999999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.297
MedInc: 2.094922

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.305
MedInc: 2.2399240000000002

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.312
MedInc: 2.384926

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.277
MedInc: 2.529928

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.308
MedInc: 2.67493

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.356
MedInc: 2.8199319999999997

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.362
MedInc: 2.9649339999999995

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.285
MedInc: 3.1099360000000003

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.325
MedInc: 3.254938

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.399
MedInc: 3.39994

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.371
MedInc: 3.544942

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.38
MedInc: 3.6899439999999997

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.407
MedInc: 3.8349459999999995

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.453
MedInc: 3.9799480000000003

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.551
MedInc: 4.12495

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.626
MedInc: 4.269952

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.631
MedInc: 4.414954

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.625
MedInc: 4.559956

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.661
MedInc: 4.704958

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.687
MedInc: 4.84996

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.786
MedInc: 4.994962

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 2.122
MedInc: 5.139964

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 2.257
MedInc: 5.284966

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 2.324
MedInc: 5.429968

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 2.353
MedInc: 5.5749699999999995

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 2.357
MedInc: 5.719972

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 2.469
MedInc: 5.864974

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 2.413
MedInc: 6.009976

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 2.516
MedInc: 6.154978

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 2.517
MedInc: 6.29998

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 2.606
MedInc: 6.4449819999999995

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.107
MedInc: 6.589984

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.142
MedInc: 6.734986

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.497
MedInc: 6.879988

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.582
MedInc: 7.02499

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.572
MedInc: 7.169992

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.593
MedInc: 7.3149939999999996

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.614
MedInc: 7.459996

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.618
MedInc: 7.604998

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.68
MedInc: 7.75

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.859
MedInc: 7.895002

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.872
MedInc: 8.040004

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.863
MedInc: 8.185006

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 4.028
MedInc: 8.330008

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 4.034
MedInc: 8.47501

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.992
MedInc: 8.620012

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.949
MedInc: 8.765013999999999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.922
MedInc: 8.910016

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.677
MedInc: 9.055018

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.333
MedInc: 9.20002

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.359
MedInc: 9.345022

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.362
MedInc: 9.490024

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.349
MedInc: 9.635026

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.31
MedInc: 9.780028

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.296
MedInc: 9.92503

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.292
MedInc: 10.070032

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.285
MedInc: 10.215034

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.303
MedInc: 10.360036

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.316
MedInc: 10.505037999999999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.247
MedInc: 10.650039999999999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.351
MedInc: 10.795042

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.351
MedInc: 10.940044

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.357
MedInc: 11.085046

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.359
MedInc: 11.230048

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.359
MedInc: 11.37505

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.359
MedInc: 11.520052

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.37
MedInc: 11.665054

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.37
MedInc: 11.810056

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 11.955058

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 12.10006

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 12.245061999999999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 12.390063999999999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 12.535065999999999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 12.680068

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 12.82507

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 12.970072

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 13.115074

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 13.260076

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 13.405078

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 13.55008

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 13.695082

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 13.840084

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 13.985085999999999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 14.130087999999999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 14.275089999999999

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 14.420092

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 14.565094

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 14.710096

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 14.855098

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 3.38
MedInc: 15.0001

HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
AveOccup: 3.0425273390036454
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.2678600000000007, - 1.2682800000000007, - 1.2651500000000007, - 1.2625400000000007, - 1.2503700000000006, - 1.2383500000000005, - 1.2405400000000004, - 1.2311400000000006, - 1.2488500000000005, - 1.2409700000000004, - 1.2914100000000008, - 1.2969500000000005, - 1.3047000000000002, - 1.3123999999999996, - 1.2766, - 1.3083899999999997, - 1.3562300000000003, - 1.3624200000000004, - 1.2849700000000006, - 1.3249800000000005, - 1.3986700000000007, - 1.3709800000000008, - 1.3798100000000013, - 1.407370000000001, - 1.4533200000000006, - 1.5513000000000003, - 1.62619, - 1.6312499999999996, - 1.6247299999999996, - 1.6610099999999997, - 1.6867299999999994, - 1.7860499999999988, - 2.1222099999999995, - 2.2568000000000006, - 2.3240000000000007, - 2.353310000000001, - 2.3572699999999993, - 2.4687401999999996, - 2.4129500999999998, - 2.5159901999999996, - 2.5169001000000004, - 2.6060101000000007, - 3.1071101999999997, - 3.1418203000000005, - 3.4968708000000017, - 3.5817312999999995, - 3.5719211999999994, - 3.5927412999999997, - 3.6138111999999993, - 3.6176911, - 3.6803708, - 3.8590403, - 3.8718602000000004, - 3.8633303, - 4.027910299999999, - 4.0341606, - 3.9917407999999988, - 3.948670999999998, - 3.9220612999999984, - 3.677071399999998, - 3.3332918999999976, - 3.3588519999999984, - 3.3616520999999984, - 3.349082099999998, - 3.310322199999998, - 3.2963119999999986, - 3.291811999999999, - 3.2853717999999987, - 3.3027819999999988, - 3.3159219999999987, - 3.247291899999999, - 3.3514624999999985, - 3.3514624999999985, - 3.3574523999999983, - 3.3588525999999983, - 3.3588525999999983, - 3.3588525999999983, - 3.3695926999999983, - 3.3695926999999983, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999, - 3.380332799999999 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 2996
prediction: 0.668
MedInc: 0.4999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.644
MedInc: 0.644902

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.644
MedInc: 0.7899039999999999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.644
MedInc: 0.934906

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.65
MedInc: 1.079908

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.648
MedInc: 1.22491

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.647
MedInc: 1.369912

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.65
MedInc: 1.5149139999999999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.649
MedInc: 1.659916

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.667
MedInc: 1.804918

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.714
MedInc: 1.9499199999999999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.751
MedInc: 2.094922

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.769
MedInc: 2.2399240000000002

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.788
MedInc: 2.384926

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.879
MedInc: 2.529928

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.907
MedInc: 2.67493

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.926
MedInc: 2.8199319999999997

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.904
MedInc: 2.9649339999999995

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.834
MedInc: 3.1099360000000003

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.79
MedInc: 3.254938

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.784
MedInc: 3.39994

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.813
MedInc: 3.544942

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.846
MedInc: 3.6899439999999997

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.923
MedInc: 3.8349459999999995

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.917
MedInc: 3.9799480000000003

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.988
MedInc: 4.12495

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.045
MedInc: 4.269952

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.056
MedInc: 4.414954

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.182
MedInc: 4.559956

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.261
MedInc: 4.704958

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.299
MedInc: 4.84996

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.275
MedInc: 4.994962

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.318
MedInc: 5.139964

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.386
MedInc: 5.284966

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.426
MedInc: 5.429968

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.526
MedInc: 5.5749699999999995

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.847
MedInc: 5.719972

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.217
MedInc: 5.864974

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.243
MedInc: 6.009976

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.307
MedInc: 6.154978

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.336
MedInc: 6.29998

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.534
MedInc: 6.4449819999999995

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.72
MedInc: 6.589984

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.679
MedInc: 6.734986

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.171
MedInc: 6.879988

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.084
MedInc: 7.02499

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.107
MedInc: 7.169992

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.132
MedInc: 7.3149939999999996

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.144
MedInc: 7.459996

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.146
MedInc: 7.604998

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.208
MedInc: 7.75

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.311
MedInc: 7.895002

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.305
MedInc: 8.040004

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.202
MedInc: 8.185006

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.067
MedInc: 8.330008

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.218
MedInc: 8.47501

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.175
MedInc: 8.620012

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.13
MedInc: 8.765013999999999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.23
MedInc: 8.910016

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.427
MedInc: 9.055018

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 3.995
MedInc: 9.20002

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.024
MedInc: 9.345022

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.021
MedInc: 9.490024

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.008
MedInc: 9.635026

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.145
MedInc: 9.780028

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.177
MedInc: 9.92503

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.238
MedInc: 10.070032

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.231
MedInc: 10.215034

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.236
MedInc: 10.360036

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.085
MedInc: 10.505037999999999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.012
MedInc: 10.650039999999999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.527
MedInc: 10.795042

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.524
MedInc: 10.940044

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.534
MedInc: 11.085046

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.543
MedInc: 11.230048

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.543
MedInc: 11.37505

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.544
MedInc: 11.520052

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.555
MedInc: 11.665054

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.555
MedInc: 11.810056

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.569
MedInc: 11.955058

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.569
MedInc: 12.10006

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.569
MedInc: 12.245061999999999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.569
MedInc: 12.390063999999999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.569
MedInc: 12.535065999999999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.569
MedInc: 12.680068

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 12.82507

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 12.970072

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 13.115074

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 13.260076

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 13.405078

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 13.55008

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 13.695082

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 13.840084

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 13.985085999999999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 14.130087999999999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 14.275089999999999

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 14.420092

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 14.565094

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 14.710096

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 14.855098

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 4.576
MedInc: 15.0001

HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
AveOccup: 3.265463917525773
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 0.6679901000000003, - 0.6438400000000002, - 0.6438400000000002, - 0.6438400000000002, - 0.6495600000000001, - 0.6475800000000003, - 0.6466900000000001, - 0.6501200000000001, - 0.6491, - 0.66695, - 0.7139100000000002, - 0.75054, - 0.7687, - 0.7881600000000002, - 0.8786799999999998, - 0.9070699999999999, - 0.92607, - 0.9038300000000001, - 0.8344500000000004, - 0.7898799999999998, - 0.78445, - 0.8129399999999998, - 0.84584, - 0.92321, - 0.9167500000000003, - 0.9878800000000011, - 1.0451600000000005, - 1.0562000000000002, - 1.1820399999999998, - 1.2614999999999998, - 1.2986399999999998, - 1.2748500000000003, - 1.3182100000000003, - 1.3864799999999997, - 1.4258999999999993, - 1.52615, - 1.8474100000000004, - 2.2172600000000005, - 2.2429900000000003, - 2.3073699999999993, - 2.3355799999999998, - 2.53427, - 2.7200400999999994, - 2.679219999999999, - 3.1705404999999995, - 3.0841901000000007, - 3.1071601, - 3.1317401000000005, - 3.1438601000000004, - 3.146290100000001, - 3.2079402, - 3.3108202999999987, - 3.3054002999999987, - 3.2023602999999996, - 3.0672202, - 3.2179301, - 3.174770100000001, - 3.129590100000001, - 3.2298906000000005, - 3.4265110999999995, - 3.994672899999998, - 4.024123199999998, - 4.021053299999998, - 4.008483299999998, - 4.145113799999997, - 4.176553899999998, - 4.238253999999998, - 4.231193899999997, - 4.235503899999998, - 4.0845433999999985, - 4.0124730999999985, - 4.526915799999996, - 4.524495699999996, - 4.534395499999997, - 4.5429859999999955, - 4.5429859999999955, - 4.5438559999999955, - 4.554596099999995, - 4.554596099999995, - 4.568836199999995, - 4.568836199999995, - 4.568836199999995, - 4.568836199999995, - 4.568836199999995, - 4.568836199999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995, - 4.576226299999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 13622
prediction: 1.258
MedInc: 0.4999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.843
MedInc: 0.644902

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.804
MedInc: 0.7899039999999999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.78
MedInc: 0.934906

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.783
MedInc: 1.079908

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.768
MedInc: 1.22491

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.779
MedInc: 1.369912

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.773
MedInc: 1.5149139999999999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.795
MedInc: 1.659916

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.803
MedInc: 1.804918

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.845
MedInc: 1.9499199999999999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.845
MedInc: 2.094922

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.96
MedInc: 2.2399240000000002

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 1.069
MedInc: 2.384926

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 1.35
MedInc: 2.529928

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 1.416
MedInc: 2.67493

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 1.478
MedInc: 2.8199319999999997

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 1.492
MedInc: 2.9649339999999995

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 1.546
MedInc: 3.1099360000000003

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 1.631
MedInc: 3.254938

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 1.675
MedInc: 3.39994

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 1.719
MedInc: 3.544942

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 1.797
MedInc: 3.6899439999999997

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 1.907
MedInc: 3.8349459999999995

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.509
MedInc: 3.9799480000000003

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.615
MedInc: 4.12495

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.632
MedInc: 4.269952

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.636
MedInc: 4.414954

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.759
MedInc: 4.559956

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.786
MedInc: 4.704958

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.82
MedInc: 4.84996

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.908
MedInc: 4.994962

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.951
MedInc: 5.139964

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.92
MedInc: 5.284966

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.972
MedInc: 5.429968

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.9
MedInc: 5.5749699999999995

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.92
MedInc: 5.719972

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.887
MedInc: 5.864974

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 2.976
MedInc: 6.009976

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.1
MedInc: 6.154978

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.259
MedInc: 6.29998

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.503
MedInc: 6.4449819999999995

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.659
MedInc: 6.589984

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.722
MedInc: 6.734986

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.544
MedInc: 6.879988

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.605
MedInc: 7.02499

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.59
MedInc: 7.169992

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.581
MedInc: 7.3149939999999996

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.573
MedInc: 7.459996

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.611
MedInc: 7.604998

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.623
MedInc: 7.75

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.758
MedInc: 7.895002

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.791
MedInc: 8.040004

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.813
MedInc: 8.185006

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.843
MedInc: 8.330008

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.881
MedInc: 8.47501

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.856
MedInc: 8.620012

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.834
MedInc: 8.765013999999999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 3.923
MedInc: 8.910016

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.117
MedInc: 9.055018

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.167
MedInc: 9.20002

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.147
MedInc: 9.345022

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.144
MedInc: 9.490024

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.071
MedInc: 9.635026

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.222
MedInc: 9.780028

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.184
MedInc: 9.92503

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.201
MedInc: 10.070032

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.235
MedInc: 10.215034

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.242
MedInc: 10.360036

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.249
MedInc: 10.505037999999999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.258
MedInc: 10.650039999999999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.258
MedInc: 10.795042

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.258
MedInc: 10.940044

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.258
MedInc: 11.085046

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.258
MedInc: 11.230048

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.263
MedInc: 11.37505

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.263
MedInc: 11.520052

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.263
MedInc: 11.665054

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.263
MedInc: 11.810056

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.263
MedInc: 11.955058

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.263
MedInc: 12.10006

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.263
MedInc: 12.245061999999999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.263
MedInc: 12.390063999999999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.263
MedInc: 12.535065999999999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.263
MedInc: 12.680068

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 12.82507

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 12.970072

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 13.115074

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 13.260076

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 13.405078

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 13.55008

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 13.695082

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 13.840084

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 13.985085999999999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 14.130087999999999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 14.275089999999999

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 14.420092

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 14.565094

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 14.710096

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 14.855098

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 4.262
MedInc: 15.0001

HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
AveOccup: 2.2664670658682633
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.2581010999999998, - 0.8428900999999995, - 0.8035499999999994, - 0.7801599999999995, - 0.7831299999999994, - 0.7683799999999994, - 0.7788699999999992, - 0.7730399999999991, - 0.7945399999999991, - 0.8030199999999992, - 0.8445999999999992, - 0.8450799999999994, - 0.9598899999999999, - 1.0694600000000003, - 1.35029, - 1.4159499999999996, - 1.4780000000000002, - 1.49232, - 1.5464700000000002, - 1.6312900000000006, - 1.6749299999999996, - 1.7187800000000002, - 1.7968799999999998, - 1.9071300999999994, - 2.509360300000001, - 2.6146203000000012, - 2.6319402000000007, - 2.6356703000000015, - 2.7593802000000016, - 2.786470200000002, - 2.8200002000000013, - 2.9079503000000004, - 2.9513302999999995, - 2.920230600000001, - 2.9720203000000005, - 2.9001301, - 2.9204401, - 2.886970099999999, - 2.9758302, - 3.0999603, - 3.2591705000000015, - 3.5033606000000024, - 3.6587306000000006, - 3.7215607000000004, - 3.5440009999999997, - 3.6046614, - 3.589921499999999, - 3.5806515999999995, - 3.572661399999999, - 3.6108014999999996, - 3.6229318999999998, - 3.758462199999999, - 3.7911719999999978, - 3.8128620999999976, - 3.843412399999997, - 3.881302199999997, - 3.856232599999997, - 3.8338925999999964, - 3.9233733999999973, - 4.117104899999997, - 4.167105499999995, - 4.147425399999995, - 4.144255299999995, - 4.071274299999996, - 4.2224555999999955, - 4.1840654999999956, - 4.200795599999996, - 4.234775999999996, - 4.241926099999995, - 4.249076199999995, - 4.257896299999995, - 4.257896299999995, - 4.257896299999995, - 4.257896299999995, - 4.257896299999995, - 4.263496299999995, - 4.263496299999995, - 4.263496299999995, - 4.263496299999995, - 4.263496299999995, - 4.263496299999995, - 4.263496299999995, - 4.263496299999995, - 4.263496299999995, - 4.263496299999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995, - 4.262196199999995 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 17568
prediction: 1.831
MedInc: 0.4999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.836
MedInc: 0.644902

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.859
MedInc: 0.7899039999999999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.78
MedInc: 0.934906

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.763
MedInc: 1.079908

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.926
MedInc: 1.22491

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.959
MedInc: 1.369912

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.971
MedInc: 1.5149139999999999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.921
MedInc: 1.659916

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.925
MedInc: 1.804918

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.944
MedInc: 1.9499199999999999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.948
MedInc: 2.094922

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.927
MedInc: 2.2399240000000002

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.875
MedInc: 2.384926

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.837
MedInc: 2.529928

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.909
MedInc: 2.67493

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.966
MedInc: 2.8199319999999997

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.967
MedInc: 2.9649339999999995

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.164
MedInc: 3.1099360000000003

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.433
MedInc: 3.254938

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.452
MedInc: 3.39994

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.429
MedInc: 3.544942

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.429
MedInc: 3.6899439999999997

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.504
MedInc: 3.8349459999999995

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.562
MedInc: 3.9799480000000003

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.602
MedInc: 4.12495

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.713
MedInc: 4.269952

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.763
MedInc: 4.414954

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.793
MedInc: 4.559956

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.803
MedInc: 4.704958

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.8
MedInc: 4.84996

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.887
MedInc: 4.994962

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.04
MedInc: 5.139964

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.222
MedInc: 5.284966

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.268
MedInc: 5.429968

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.313
MedInc: 5.5749699999999995

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.429
MedInc: 5.719972

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.573
MedInc: 5.864974

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.57
MedInc: 6.009976

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.761
MedInc: 6.154978

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.858
MedInc: 6.29998

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.043
MedInc: 6.4449819999999995

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.103
MedInc: 6.589984

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.214
MedInc: 6.734986

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.172
MedInc: 6.879988

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.51
MedInc: 7.02499

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.491
MedInc: 7.169992

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.503
MedInc: 7.3149939999999996

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.472
MedInc: 7.459996

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.435
MedInc: 7.604998

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.491
MedInc: 7.75

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.545
MedInc: 7.895002

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.549
MedInc: 8.040004

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.562
MedInc: 8.185006

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.519
MedInc: 8.330008

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.457
MedInc: 8.47501

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.435
MedInc: 8.620012

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.419
MedInc: 8.765013999999999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.379
MedInc: 8.910016

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.354
MedInc: 9.055018

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.341
MedInc: 9.20002

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.32
MedInc: 9.345022

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.307
MedInc: 9.490024

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.173
MedInc: 9.635026

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.316
MedInc: 9.780028

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.309
MedInc: 9.92503

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.307
MedInc: 10.070032

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.347
MedInc: 10.215034

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.347
MedInc: 10.360036

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.347
MedInc: 10.505037999999999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.347
MedInc: 10.650039999999999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.347
MedInc: 10.795042

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.347
MedInc: 10.940044

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.347
MedInc: 11.085046

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.347
MedInc: 11.230048

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 11.37505

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 11.520052

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 11.665054

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 11.810056

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 11.955058

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 12.10006

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 12.245061999999999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 12.390063999999999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 12.535065999999999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 12.680068

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 12.82507

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 12.970072

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 13.115074

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 13.260076

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 13.405078

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 13.55008

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 13.695082

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 13.840084

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 13.985085999999999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 14.130087999999999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 14.275089999999999

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 14.420092

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 14.565094

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 14.710096

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 14.855098

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 4.358
MedInc: 15.0001

HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
AveOccup: 2.5604395604395602
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.831340000000001, - 1.8363100000000012, - 1.858640000000001, - 1.780390000000001, - 1.7625500000000014, - 1.926010000000001, - 1.959360000000001, - 1.971450000000001, - 1.9206400000000015, - 1.9249500000000015, - 1.9437300000000013, - 1.9479900000000012, - 1.9270301000000012, - 1.875130100000001, - 1.8366401000000008, - 1.9085901000000007, - 1.9657101000000006, - 1.9674501000000004, - 2.1636801000000006, - 2.43268, - 2.4516700000000005, - 2.4285300000000003, - 2.4293099, - 2.5037601000000005, - 2.5615601000000003, - 2.6024497, - 2.7127295, - 2.7627296, - 2.7926497, - 2.8026098999999993, - 2.8000098999999996, - 2.8873001, - 3.0401400000000005, - 3.2222905999999982, - 3.268050699999998, - 3.312810499999999, - 3.428760599999998, - 3.5728205999999987, - 3.569540599999999, - 3.761001599999998, - 3.8579518999999975, - 4.042922799999997, - 4.102532899999996, - 4.213872999999996, - 4.172102799999997, - 4.509884599999995, - 4.491174599999995, - 4.502894599999994, - 4.472394499999995, - 4.434953999999995, - 4.491104799999995, - 4.545325299999997, - 4.548985399999997, - 4.561505299999997, - 4.519005199999998, - 4.457314999999997, - 4.434505099999997, - 4.418855199999997, - 4.378935599999996, - 4.354265999999995, - 4.341075899999995, - 4.320425799999994, - 4.3073155999999955, - 4.172774399999997, - 4.3163258999999945, - 4.308505899999995, - 4.306615899999995, - 4.346896299999994, - 4.346896299999994, - 4.346896299999994, - 4.346896299999994, - 4.346896299999994, - 4.346896299999994, - 4.346896299999994, - 4.346896299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994, - 4.358096299999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - "
id: 7237
prediction: 2.431
AveOccup: 0.6923076923076923

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.431
AveOccup: 0.8785096153846154

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.431
AveOccup: 1.0647115384615384

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.431
AveOccup: 1.2509134615384614

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.494
AveOccup: 1.4371153846153846

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.706
AveOccup: 1.6233173076923078

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.684
AveOccup: 1.8095192307692307

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.535
AveOccup: 1.995721153846154

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 2.264
AveOccup: 2.181923076923077

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.928
AveOccup: 2.368125

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.871
AveOccup: 2.554326923076923

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.829
AveOccup: 2.740528846153846

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.721
AveOccup: 2.926730769230769

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.715
AveOccup: 3.112932692307692

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.692
AveOccup: 3.2991346153846157

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.675
AveOccup: 3.4853365384615387

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.638
AveOccup: 3.6715384615384616

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.625
AveOccup: 3.8577403846153846

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.567
AveOccup: 4.043942307692308

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.564
AveOccup: 4.2301442307692305

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.543
AveOccup: 4.4163461538461535

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 4.602548076923076

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.537
AveOccup: 4.78875

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.539
AveOccup: 4.974951923076923

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.529
AveOccup: 5.161153846153846

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.52
AveOccup: 5.347355769230769

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.512
AveOccup: 5.533557692307692

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.512
AveOccup: 5.719759615384615

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.511
AveOccup: 5.905961538461539

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.508
AveOccup: 6.092163461538462

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.517
AveOccup: 6.278365384615385

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.516
AveOccup: 6.464567307692308

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.522
AveOccup: 6.650769230769231

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.525
AveOccup: 6.836971153846154

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.525
AveOccup: 7.023173076923077

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.525
AveOccup: 7.209375

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.525
AveOccup: 7.395576923076923

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 7.5817788461538465

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 7.767980769230769

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 7.954182692307692

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 8.140384615384615

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 8.326586538461537

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 8.512788461538461

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 8.698990384615383

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 8.885192307692307

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 9.07139423076923

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 9.257596153846153

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 9.443798076923075

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 9.629999999999999

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 9.816201923076923

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 10.002403846153845

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 10.188605769230769

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 10.37480769230769

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 10.561009615384615

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 10.747211538461537

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 10.93341346153846

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 11.119615384615384

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 11.305817307692307

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 11.49201923076923

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 11.678221153846152

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 11.864423076923076

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 12.050624999999998

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 12.236826923076922

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 12.423028846153844

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 12.609230769230768

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 12.795432692307692

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 12.981634615384614

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 13.167836538461538

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 13.35403846153846

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 13.540240384615384

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 13.726442307692306

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 13.91264423076923

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 14.098846153846152

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 14.285048076923076

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 14.47125

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 14.657451923076922

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 14.843653846153845

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 15.029855769230767

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 15.216057692307691

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 15.402259615384613

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 15.588461538461537

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 15.774663461538461

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 15.960865384615383

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 16.147067307692307

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 16.33326923076923

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 16.519471153846155

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 16.705673076923077

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 16.891875

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 17.078076923076924

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 17.264278846153847

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 17.45048076923077

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 17.636682692307694

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 17.822884615384616

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 18.00908653846154

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 18.19528846153846

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 18.381490384615386

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 18.567692307692308

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 18.75389423076923

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 18.940096153846156

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 19.126298076923078

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ], - [ - "
id: 7237
prediction: 1.538
AveOccup: 19.3125

MedInc: 2.7083
HouseAge: 45.0
AveRooms: 4.678571428571429
AveBedrms: 1.0634920634920635
Population: 736.0
Latitude: 34.01
Longitude: -118.13
_original_yhat_: 1.7162499999999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.431190499999999, - 2.431190499999999, - 2.431190499999999, - 2.431190499999999, - 2.4938204999999987, - 2.7058503999999974, - 2.683970399999998, - 2.5349499999999994, - 2.2641199999999997, - 1.9276099999999987, - 1.8714199999999994, - 1.8290799999999998, - 1.7207799999999989, - 1.7146799999999995, - 1.6918999999999997, - 1.6754299999999993, - 1.6379299999999994, - 1.6246399999999994, - 1.5673599999999996, - 1.5644699999999998, - 1.5434099999999997, - 1.5376499999999995, - 1.5369099999999998, - 1.5394499999999995, - 1.5290599999999999, - 1.5195199999999998, - 1.51174, - 1.51174, - 1.5111400000000004, - 1.5078600000000002, - 1.51673, - 1.51624, - 1.52188, - 1.5249199999999998, - 1.5249199999999998, - 1.5249199999999998, - 1.5249199999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998, - 1.5381699999999998 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 16623
prediction: 2.211
AveOccup: 0.6923076923076923

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.211
AveOccup: 0.8785096153846154

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.211
AveOccup: 1.0647115384615384

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.22
AveOccup: 1.2509134615384614

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.249
AveOccup: 1.4371153846153846

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.386
AveOccup: 1.6233173076923078

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.424
AveOccup: 1.8095192307692307

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.361
AveOccup: 1.995721153846154

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.143
AveOccup: 2.181923076923077

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.35
AveOccup: 2.368125

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.179
AveOccup: 2.554326923076923

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.189
AveOccup: 2.740528846153846

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.227
AveOccup: 2.926730769230769

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.187
AveOccup: 3.112932692307692

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.128
AveOccup: 3.2991346153846157

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.074
AveOccup: 3.4853365384615387

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.03
AveOccup: 3.6715384615384616

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.035
AveOccup: 3.8577403846153846

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.005
AveOccup: 4.043942307692308

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.982
AveOccup: 4.2301442307692305

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.943
AveOccup: 4.4163461538461535

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.948
AveOccup: 4.602548076923076

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.948
AveOccup: 4.78875

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.958
AveOccup: 4.974951923076923

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.949
AveOccup: 5.161153846153846

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.949
AveOccup: 5.347355769230769

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.975
AveOccup: 5.533557692307692

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.975
AveOccup: 5.719759615384615

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 1.975
AveOccup: 5.905961538461539

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 6.092163461538462

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 6.278365384615385

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 6.464567307692308

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 6.650769230769231

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 6.836971153846154

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 7.023173076923077

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 7.209375

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 7.395576923076923

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 7.5817788461538465

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 7.767980769230769

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 7.954182692307692

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 8.140384615384615

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.069
AveOccup: 8.326586538461537

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.072
AveOccup: 8.512788461538461

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.072
AveOccup: 8.698990384615383

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.072
AveOccup: 8.885192307692307

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.072
AveOccup: 9.07139423076923

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.072
AveOccup: 9.257596153846153

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.072
AveOccup: 9.443798076923075

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.072
AveOccup: 9.629999999999999

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.072
AveOccup: 9.816201923076923

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.072
AveOccup: 10.002403846153845

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 10.188605769230769

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 10.37480769230769

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 10.561009615384615

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 10.747211538461537

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 10.93341346153846

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 11.119615384615384

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 11.305817307692307

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 11.49201923076923

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 11.678221153846152

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 11.864423076923076

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 12.050624999999998

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 12.236826923076922

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 12.423028846153844

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 12.609230769230768

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 12.795432692307692

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 12.981634615384614

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.051
AveOccup: 13.167836538461538

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 13.35403846153846

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 13.540240384615384

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 13.726442307692306

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 13.91264423076923

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 14.098846153846152

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 14.285048076923076

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 14.47125

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 14.657451923076922

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 14.843653846153845

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 15.029855769230767

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 15.216057692307691

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 15.402259615384613

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 15.588461538461537

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 15.774663461538461

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 15.960865384615383

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 16.147067307692307

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 16.33326923076923

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 16.519471153846155

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 16.705673076923077

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 16.891875

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 17.078076923076924

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 17.264278846153847

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 17.45048076923077

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 17.636682692307694

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 17.822884615384616

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 18.00908653846154

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 18.19528846153846

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 18.381490384615386

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 18.567692307692308

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 18.75389423076923

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 18.940096153846156

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 19.126298076923078

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ], - [ - "
id: 16623
prediction: 2.047
AveOccup: 19.3125

MedInc: 2.7266
HouseAge: 28.0
AveRooms: 6.131914893617021
AveBedrms: 1.2567375886524823
Population: 1650.0
Latitude: 35.36
Longitude: -120.83
_original_yhat_: 2.4111300000000027
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.2110102000000014, - 2.2110102000000014, - 2.211460200000001, - 2.2202102000000012, - 2.248900300000001, - 2.385580400000001, - 2.423950400000001, - 2.360910400000001, - 2.142700000000001, - 2.3498000000000023, - 2.1791500000000013, - 2.1889100000000017, - 2.2274100000000017, - 2.187170000000001, - 2.1277500000000007, - 2.074340000000001, - 2.0300800000000008, - 2.035130000000001, - 2.004900000000001, - 1.982460000000001, - 1.9428400000000008, - 1.9483300000000008, - 1.9483300000000008, - 1.9584200000000007, - 1.9486500000000009, - 1.9486500000000009, - 1.974510000000001, - 1.974510000000001, - 1.974510000000001, - 2.068530000000001, - 2.068530000000001, - 2.068530000000001, - 2.068530000000001, - 2.068530000000001, - 2.068530000000001, - 2.068530000000001, - 2.068530000000001, - 2.068530000000001, - 2.068530000000001, - 2.068530000000001, - 2.068530000000001, - 2.068530000000001, - 2.071850000000001, - 2.071850000000001, - 2.071850000000001, - 2.071850000000001, - 2.071850000000001, - 2.071850000000001, - 2.071850000000001, - 2.071850000000001, - 2.071850000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.051400000000001, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005, - 2.0473300000000005 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 4521
prediction: 1.607
AveOccup: 0.6923076923076923

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.607
AveOccup: 0.8785096153846154

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.607
AveOccup: 1.0647115384615384

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.579
AveOccup: 1.2509134615384614

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 2.045
AveOccup: 1.4371153846153846

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.98
AveOccup: 1.6233173076923078

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.942
AveOccup: 1.8095192307692307

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.898
AveOccup: 1.995721153846154

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.759
AveOccup: 2.181923076923077

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.788
AveOccup: 2.368125

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.819
AveOccup: 2.554326923076923

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.841
AveOccup: 2.740528846153846

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.778
AveOccup: 2.926730769230769

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.575
AveOccup: 3.112932692307692

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.58
AveOccup: 3.2991346153846157

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.532
AveOccup: 3.4853365384615387

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.495
AveOccup: 3.6715384615384616

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.453
AveOccup: 3.8577403846153846

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.432
AveOccup: 4.043942307692308

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.392
AveOccup: 4.2301442307692305

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.387
AveOccup: 4.4163461538461535

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.356
AveOccup: 4.602548076923076

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.358
AveOccup: 4.78875

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.34
AveOccup: 4.974951923076923

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.34
AveOccup: 5.161153846153846

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.34
AveOccup: 5.347355769230769

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.346
AveOccup: 5.533557692307692

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.352
AveOccup: 5.719759615384615

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.352
AveOccup: 5.905961538461539

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.352
AveOccup: 6.092163461538462

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.352
AveOccup: 6.278365384615385

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.352
AveOccup: 6.464567307692308

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.356
AveOccup: 6.650769230769231

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.355
AveOccup: 6.836971153846154

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.355
AveOccup: 7.023173076923077

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.355
AveOccup: 7.209375

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.355
AveOccup: 7.395576923076923

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.345
AveOccup: 7.5817788461538465

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.345
AveOccup: 7.767980769230769

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.335
AveOccup: 7.954182692307692

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.335
AveOccup: 8.140384615384615

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.335
AveOccup: 8.326586538461537

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.335
AveOccup: 8.512788461538461

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.335
AveOccup: 8.698990384615383

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.335
AveOccup: 8.885192307692307

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.335
AveOccup: 9.07139423076923

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.335
AveOccup: 9.257596153846153

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.335
AveOccup: 9.443798076923075

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.335
AveOccup: 9.629999999999999

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.335
AveOccup: 9.816201923076923

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.371
AveOccup: 10.002403846153845

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.371
AveOccup: 10.188605769230769

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.371
AveOccup: 10.37480769230769

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.371
AveOccup: 10.561009615384615

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.371
AveOccup: 10.747211538461537

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 10.93341346153846

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 11.119615384615384

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 11.305817307692307

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 11.49201923076923

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 11.678221153846152

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 11.864423076923076

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 12.050624999999998

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 12.236826923076922

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 12.423028846153844

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 12.609230769230768

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 12.795432692307692

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 12.981634615384614

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 13.167836538461538

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 13.35403846153846

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 13.540240384615384

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 13.726442307692306

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 13.91264423076923

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 14.098846153846152

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 14.285048076923076

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 14.47125

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 14.657451923076922

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 14.843653846153845

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 15.029855769230767

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 15.216057692307691

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 15.402259615384613

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 15.588461538461537

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 15.774663461538461

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 15.960865384615383

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 16.147067307692307

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 16.33326923076923

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 16.519471153846155

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 16.705673076923077

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 16.891875

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 17.078076923076924

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 17.264278846153847

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 17.45048076923077

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 17.636682692307694

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 17.822884615384616

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 18.00908653846154

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 18.19528846153846

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 18.381490384615386

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 18.567692307692308

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 18.75389423076923

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 18.940096153846156

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 19.126298076923078

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ], - [ - "
id: 4521
prediction: 1.408
AveOccup: 19.3125

MedInc: 2.1862
HouseAge: 36.0
AveRooms: 3.8020833333333335
AveBedrms: 0.9979166666666667
Population: 2097.0
Latitude: 34.04
Longitude: -118.21
_original_yhat_: 1.3807799999999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.6067099999999999, - 1.6067099999999999, - 1.6067099999999999, - 1.57927, - 2.04502, - 1.97984, - 1.9423800000000002, - 1.89822, - 1.7586900000000008, - 1.7877600000000005, - 1.8191100000000002, - 1.84148, - 1.7780699999999998, - 1.5749899999999997, - 1.5802499999999997, - 1.5320300000000002, - 1.4952800000000002, - 1.4529899999999998, - 1.4317399999999996, - 1.3919699999999993, - 1.387359999999999, - 1.3560799999999993, - 1.3578999999999994, - 1.3400799999999993, - 1.3396899999999992, - 1.3401599999999991, - 1.345869999999999, - 1.352389999999999, - 1.352389999999999, - 1.352389999999999, - 1.352389999999999, - 1.352389999999999, - 1.3555699999999993, - 1.355219999999999, - 1.355219999999999, - 1.355219999999999, - 1.355219999999999, - 1.345439999999999, - 1.345439999999999, - 1.3345799999999992, - 1.3345799999999992, - 1.3345799999999992, - 1.3345799999999992, - 1.3345799999999992, - 1.3345799999999992, - 1.3345799999999992, - 1.3345799999999992, - 1.3345799999999992, - 1.3345799999999992, - 1.3345799999999992, - 1.3710500999999993, - 1.3710500999999993, - 1.3710500999999993, - 1.3710500999999993, - 1.3710500999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993, - 1.4075201999999993 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 924
prediction: 2.995
AveOccup: 0.6923076923076923

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.995
AveOccup: 0.8785096153846154

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.995
AveOccup: 1.0647115384615384

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.995
AveOccup: 1.2509134615384614

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.995
AveOccup: 1.4371153846153846

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 3.019
AveOccup: 1.6233173076923078

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.978
AveOccup: 1.8095192307692307

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.768
AveOccup: 1.995721153846154

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.483
AveOccup: 2.181923076923077

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.337
AveOccup: 2.368125

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.351
AveOccup: 2.554326923076923

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.457
AveOccup: 2.740528846153846

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.569
AveOccup: 2.926730769230769

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.468
AveOccup: 3.112932692307692

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.502
AveOccup: 3.2991346153846157

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.48
AveOccup: 3.4853365384615387

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.47
AveOccup: 3.6715384615384616

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.474
AveOccup: 3.8577403846153846

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.458
AveOccup: 4.043942307692308

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.44
AveOccup: 4.2301442307692305

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.44
AveOccup: 4.4163461538461535

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.465
AveOccup: 4.602548076923076

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.467
AveOccup: 4.78875

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 4.974951923076923

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 5.161153846153846

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 5.347355769230769

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 5.533557692307692

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 5.719759615384615

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 5.905961538461539

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 6.092163461538462

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 6.278365384615385

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 6.464567307692308

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 6.650769230769231

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 6.836971153846154

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 7.023173076923077

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 7.209375

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 7.395576923076923

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 7.5817788461538465

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 7.767980769230769

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 7.954182692307692

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 8.140384615384615

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 8.326586538461537

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 8.512788461538461

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 8.698990384615383

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 8.885192307692307

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 9.07139423076923

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 9.257596153846153

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 9.443798076923075

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 9.629999999999999

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 9.816201923076923

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 10.002403846153845

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 10.188605769230769

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.466
AveOccup: 10.37480769230769

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 10.561009615384615

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 10.747211538461537

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 10.93341346153846

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 11.119615384615384

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 11.305817307692307

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 11.49201923076923

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 11.678221153846152

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 11.864423076923076

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 12.050624999999998

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 12.236826923076922

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 12.423028846153844

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 12.609230769230768

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 12.795432692307692

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 12.981634615384614

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 13.167836538461538

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 13.35403846153846

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 13.540240384615384

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 13.726442307692306

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 13.91264423076923

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 14.098846153846152

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 14.285048076923076

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 14.47125

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 14.657451923076922

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 14.843653846153845

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 15.029855769230767

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 15.216057692307691

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 15.402259615384613

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 15.588461538461537

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 15.774663461538461

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 15.960865384615383

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 16.147067307692307

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 16.33326923076923

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 16.519471153846155

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 16.705673076923077

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 16.891875

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 17.078076923076924

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 17.264278846153847

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 17.45048076923077

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 17.636682692307694

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 17.822884615384616

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 18.00908653846154

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 18.19528846153846

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 18.381490384615386

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 18.567692307692308

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 18.75389423076923

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 18.940096153846156

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 19.126298076923078

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ], - [ - "
id: 924
prediction: 2.471
AveOccup: 19.3125

MedInc: 5.1643
HouseAge: 10.0
AveRooms: 5.0757162346521145
AveBedrms: 1.0832196452933152
Population: 3571.0
Latitude: 37.49
Longitude: -121.92
_original_yhat_: 2.314010200000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.995041000000001, - 2.995041000000001, - 2.995041000000001, - 2.995041000000001, - 2.995041000000001, - 3.0188510000000015, - 2.9778910000000014, - 2.767590500000001, - 2.4831602000000017, - 2.337330200000002, - 2.3514501000000014, - 2.4572300000000014, - 2.568590000000001, - 2.4676500000000017, - 2.5016900000000013, - 2.480370000000001, - 2.4701900000000006, - 2.4743300000000006, - 2.458400000000001, - 2.439550000000001, - 2.439550000000001, - 2.4645701000000013, - 2.4666101000000014, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.465520100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001, - 2.470680100000001 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 16112
prediction: 4.244
AveOccup: 0.6923076923076923

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.244
AveOccup: 0.8785096153846154

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.244
AveOccup: 1.0647115384615384

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.244
AveOccup: 1.2509134615384614

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.297
AveOccup: 1.4371153846153846

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.312
AveOccup: 1.6233173076923078

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 4.107
AveOccup: 1.8095192307692307

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 3.506
AveOccup: 1.995721153846154

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 3.307
AveOccup: 2.181923076923077

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 3.015
AveOccup: 2.368125

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.895
AveOccup: 2.554326923076923

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.827
AveOccup: 2.740528846153846

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.768
AveOccup: 2.926730769230769

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.783
AveOccup: 3.112932692307692

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.769
AveOccup: 3.2991346153846157

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.748
AveOccup: 3.4853365384615387

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.744
AveOccup: 3.6715384615384616

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.745
AveOccup: 3.8577403846153846

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.745
AveOccup: 4.043942307692308

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.745
AveOccup: 4.2301442307692305

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.745
AveOccup: 4.4163461538461535

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.745
AveOccup: 4.602548076923076

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.745
AveOccup: 4.78875

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 4.974951923076923

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 5.161153846153846

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 5.347355769230769

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 5.533557692307692

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 5.719759615384615

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 5.905961538461539

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 6.092163461538462

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 6.278365384615385

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 6.464567307692308

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 6.650769230769231

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 6.836971153846154

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 7.023173076923077

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 7.209375

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 7.395576923076923

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 7.5817788461538465

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 7.767980769230769

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 7.954182692307692

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 8.140384615384615

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 8.326586538461537

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 8.512788461538461

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 8.698990384615383

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 8.885192307692307

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 9.07139423076923

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 9.257596153846153

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 9.443798076923075

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 9.629999999999999

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.756
AveOccup: 9.816201923076923

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 10.002403846153845

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 10.188605769230769

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 10.37480769230769

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 10.561009615384615

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 10.747211538461537

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 10.93341346153846

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 11.119615384615384

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 11.305817307692307

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 11.49201923076923

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 11.678221153846152

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 11.864423076923076

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 12.050624999999998

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 12.236826923076922

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 12.423028846153844

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 12.609230769230768

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 12.795432692307692

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 12.981634615384614

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 13.167836538461538

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 13.35403846153846

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 13.540240384615384

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 13.726442307692306

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 13.91264423076923

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 14.098846153846152

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 14.285048076923076

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 14.47125

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 14.657451923076922

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 14.843653846153845

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 15.029855769230767

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 15.216057692307691

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 15.402259615384613

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 15.588461538461537

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 15.774663461538461

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 15.960865384615383

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 16.147067307692307

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 16.33326923076923

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 16.519471153846155

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 16.705673076923077

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 16.891875

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 17.078076923076924

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 17.264278846153847

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 17.45048076923077

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 17.636682692307694

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 17.822884615384616

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 18.00908653846154

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 18.19528846153846

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 18.381490384615386

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 18.567692307692308

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 18.75389423076923

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 18.940096153846156

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 19.126298076923078

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ], - [ - "
id: 16112
prediction: 2.751
AveOccup: 19.3125

MedInc: 3.875
HouseAge: 44.0
AveRooms: 5.691441441441442
AveBedrms: 1.1666666666666667
Population: 1434.0
Latitude: 37.74
Longitude: -122.5
_original_yhat_: 2.7800500000000024
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.243973399999995, - 4.243973399999995, - 4.243973399999995, - 4.243973399999995, - 4.297203899999996, - 4.312083999999995, - 4.107393699999996, - 3.5060109999999987, - 3.3070407999999984, - 3.0150600999999995, - 2.8946000000000014, - 2.827170000000001, - 2.7681800000000014, - 2.782680000000002, - 2.7688700000000024, - 2.748240000000002, - 2.7440100000000016, - 2.7447100000000018, - 2.7447100000000018, - 2.7447100000000018, - 2.7447100000000018, - 2.7447100000000018, - 2.7447100000000018, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.7557200000000024, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002, - 2.750650000000002 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 7623
prediction: 4.461
AveOccup: 0.6923076923076923

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.461
AveOccup: 0.8785096153846154

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.461
AveOccup: 1.0647115384615384

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.461
AveOccup: 1.2509134615384614

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.461
AveOccup: 1.4371153846153846

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.505
AveOccup: 1.6233173076923078

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.495
AveOccup: 1.8095192307692307

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 4.365
AveOccup: 1.995721153846154

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.628
AveOccup: 2.181923076923077

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.31
AveOccup: 2.368125

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 3.266
AveOccup: 2.554326923076923

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.579
AveOccup: 2.740528846153846

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.379
AveOccup: 2.926730769230769

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.433
AveOccup: 3.112932692307692

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.312
AveOccup: 3.2991346153846157

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.207
AveOccup: 3.4853365384615387

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.183
AveOccup: 3.6715384615384616

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.151
AveOccup: 3.8577403846153846

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.133
AveOccup: 4.043942307692308

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.145
AveOccup: 4.2301442307692305

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.145
AveOccup: 4.4163461538461535

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.145
AveOccup: 4.602548076923076

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.175
AveOccup: 4.78875

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.261
AveOccup: 4.974951923076923

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 5.161153846153846

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 5.347355769230769

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 5.533557692307692

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 5.719759615384615

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 5.905961538461539

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 6.092163461538462

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 6.278365384615385

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 6.464567307692308

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 6.650769230769231

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 6.836971153846154

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 7.023173076923077

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 7.209375

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 7.395576923076923

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 7.5817788461538465

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 7.767980769230769

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 7.954182692307692

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 8.140384615384615

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 8.326586538461537

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 8.512788461538461

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 8.698990384615383

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 8.885192307692307

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 9.07139423076923

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 9.257596153846153

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 9.443798076923075

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 9.629999999999999

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 9.816201923076923

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 10.002403846153845

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 10.188605769230769

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 10.37480769230769

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 10.561009615384615

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 10.747211538461537

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 10.93341346153846

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 11.119615384615384

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 11.305817307692307

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 11.49201923076923

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 11.678221153846152

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 11.864423076923076

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 12.050624999999998

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 12.236826923076922

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 12.423028846153844

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 12.609230769230768

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 12.795432692307692

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 12.981634615384614

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 13.167836538461538

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 13.35403846153846

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 13.540240384615384

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 13.726442307692306

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 13.91264423076923

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 14.098846153846152

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 14.285048076923076

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 14.47125

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 14.657451923076922

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 14.843653846153845

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 15.029855769230767

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 15.216057692307691

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 15.402259615384613

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 15.588461538461537

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 15.774663461538461

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 15.960865384615383

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 16.147067307692307

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 16.33326923076923

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 16.519471153846155

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 16.705673076923077

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 16.891875

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 17.078076923076924

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 17.264278846153847

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 17.45048076923077

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 17.636682692307694

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 17.822884615384616

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 18.00908653846154

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 18.19528846153846

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 18.381490384615386

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 18.567692307692308

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 18.75389423076923

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 18.940096153846156

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 19.126298076923078

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ], - [ - "
id: 7623
prediction: 2.291
AveOccup: 19.3125

MedInc: 5.293
HouseAge: 25.0
AveRooms: 7.085365853658536
AveBedrms: 0.9939024390243902
Population: 1087.0
Latitude: 33.85
Longitude: -118.26
_original_yhat_: 2.2534399999999972
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.460614899999994, - 4.460614899999994, - 4.460614899999994, - 4.460614899999994, - 4.460614899999994, - 4.5045549999999945, - 4.494744999999994, - 4.364533799999995, - 3.6278213999999998, - 3.3095408999999996, - 3.2660807999999992, - 2.5789001999999983, - 2.37863, - 2.4331999999999994, - 2.3117699999999974, - 2.2073899999999984, - 2.182909999999998, - 2.1512099999999976, - 2.1329699999999976, - 2.1449199999999973, - 2.1449199999999973, - 2.1449199999999973, - 2.1751100999999973, - 2.2605703999999975, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978, - 2.2905904999999978 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 14488
prediction: 4.808
AveOccup: 0.6923076923076923

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.808
AveOccup: 0.8785096153846154

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.808
AveOccup: 1.0647115384615384

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.808
AveOccup: 1.2509134615384614

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.808
AveOccup: 1.4371153846153846

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.808
AveOccup: 1.6233173076923078

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.864
AveOccup: 1.8095192307692307

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.886
AveOccup: 1.995721153846154

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.851
AveOccup: 2.181923076923077

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.808
AveOccup: 2.368125

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.727
AveOccup: 2.554326923076923

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.263
AveOccup: 2.740528846153846

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.184
AveOccup: 2.926730769230769

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.052
AveOccup: 3.112932692307692

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 4.005
AveOccup: 3.2991346153846157

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.982
AveOccup: 3.4853365384615387

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.881
AveOccup: 3.6715384615384616

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.877
AveOccup: 3.8577403846153846

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 4.043942307692308

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 4.2301442307692305

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 4.4163461538461535

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 4.602548076923076

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 4.78875

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 4.974951923076923

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 5.161153846153846

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 5.347355769230769

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 5.533557692307692

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 5.719759615384615

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 5.905961538461539

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 6.092163461538462

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 6.278365384615385

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 6.464567307692308

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 6.650769230769231

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.874
AveOccup: 6.836971153846154

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.751
AveOccup: 7.023173076923077

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.751
AveOccup: 7.209375

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.751
AveOccup: 7.395576923076923

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.751
AveOccup: 7.5817788461538465

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 7.767980769230769

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 7.954182692307692

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 8.140384615384615

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 8.326586538461537

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 8.512788461538461

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 8.698990384615383

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 8.885192307692307

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 9.07139423076923

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 9.257596153846153

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 9.443798076923075

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 9.629999999999999

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 9.816201923076923

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 10.002403846153845

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 10.188605769230769

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 10.37480769230769

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 10.561009615384615

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 10.747211538461537

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 10.93341346153846

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 11.119615384615384

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 11.305817307692307

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 11.49201923076923

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 11.678221153846152

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 11.864423076923076

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 12.050624999999998

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 12.236826923076922

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 12.423028846153844

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 12.609230769230768

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 12.795432692307692

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 12.981634615384614

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 13.167836538461538

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 13.35403846153846

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 13.540240384615384

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 13.726442307692306

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 13.91264423076923

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 14.098846153846152

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 14.285048076923076

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 14.47125

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 14.657451923076922

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 14.843653846153845

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 15.029855769230767

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 15.216057692307691

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 15.402259615384613

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 15.588461538461537

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 15.774663461538461

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 15.960865384615383

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 16.147067307692307

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 16.33326923076923

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 16.519471153846155

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 16.705673076923077

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 16.891875

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 17.078076923076924

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 17.264278846153847

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 17.45048076923077

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 17.636682692307694

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 17.822884615384616

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 18.00908653846154

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 18.19528846153846

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 18.381490384615386

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 18.567692307692308

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 18.75389423076923

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 18.940096153846156

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 19.126298076923078

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ], - [ - "
id: 14488
prediction: 3.735
AveOccup: 19.3125

MedInc: 7.2821
HouseAge: 27.0
AveRooms: 7.7607361963190185
AveBedrms: 1.4386503067484662
Population: 594.0
Latitude: 32.86
Longitude: -117.25
_original_yhat_: 4.884298399999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.8075681999999915, - 4.8075681999999915, - 4.8075681999999915, - 4.8075681999999915, - 4.8075681999999915, - 4.8075681999999915, - 4.8638183999999915, - 4.885558599999991, - 4.851477699999993, - 4.807767899999992, - 4.726667199999992, - 4.263345099999996, - 4.184094799999998, - 4.0519843999999985, - 4.005384099999998, - 3.9824039999999985, - 3.881333699999999, - 3.8772336999999992, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.8741536999999995, - 3.7507636000000004, - 3.7507636000000004, - 3.7507636000000004, - 3.7507636000000004, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003, - 3.7350136000000003 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 13090
prediction: 1.375
AveOccup: 0.6923076923076923

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.375
AveOccup: 0.8785096153846154

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.375
AveOccup: 1.0647115384615384

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.375
AveOccup: 1.2509134615384614

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.336
AveOccup: 1.4371153846153846

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.395
AveOccup: 1.6233173076923078

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.408
AveOccup: 1.8095192307692307

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.316
AveOccup: 1.995721153846154

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.21
AveOccup: 2.181923076923077

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.15
AveOccup: 2.368125

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.134
AveOccup: 2.554326923076923

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.143
AveOccup: 2.740528846153846

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.115
AveOccup: 2.926730769230769

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.094
AveOccup: 3.112932692307692

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.027
AveOccup: 3.2991346153846157

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.021
AveOccup: 3.4853365384615387

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.028
AveOccup: 3.6715384615384616

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.065
AveOccup: 3.8577403846153846

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.068
AveOccup: 4.043942307692308

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.068
AveOccup: 4.2301442307692305

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.075
AveOccup: 4.4163461538461535

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.153
AveOccup: 4.602548076923076

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.178
AveOccup: 4.78875

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.231
AveOccup: 4.974951923076923

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.305
AveOccup: 5.161153846153846

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.305
AveOccup: 5.347355769230769

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.342
AveOccup: 5.533557692307692

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.342
AveOccup: 5.719759615384615

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.344
AveOccup: 5.905961538461539

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.424
AveOccup: 6.092163461538462

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.424
AveOccup: 6.278365384615385

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.412
AveOccup: 6.464567307692308

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.412
AveOccup: 6.650769230769231

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.412
AveOccup: 6.836971153846154

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.412
AveOccup: 7.023173076923077

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.412
AveOccup: 7.209375

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.412
AveOccup: 7.395576923076923

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 7.5817788461538465

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 7.767980769230769

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 7.954182692307692

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 8.140384615384615

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 8.326586538461537

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 8.512788461538461

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 8.698990384615383

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 8.885192307692307

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 9.07139423076923

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 9.257596153846153

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 9.443798076923075

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 9.629999999999999

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 9.816201923076923

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 10.002403846153845

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 10.188605769230769

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 10.37480769230769

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 10.561009615384615

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 10.747211538461537

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 10.93341346153846

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 11.119615384615384

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 11.305817307692307

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 11.49201923076923

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 11.678221153846152

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 11.864423076923076

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 12.050624999999998

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 12.236826923076922

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 12.423028846153844

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 12.609230769230768

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 12.795432692307692

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 12.981634615384614

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 13.167836538461538

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 13.35403846153846

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 13.540240384615384

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 13.726442307692306

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 13.91264423076923

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 14.098846153846152

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 14.285048076923076

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 14.47125

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 14.657451923076922

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 14.843653846153845

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 15.029855769230767

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 15.216057692307691

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 15.402259615384613

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 15.588461538461537

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 15.774663461538461

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 15.960865384615383

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 16.147067307692307

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 16.33326923076923

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 16.519471153846155

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 16.705673076923077

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 16.891875

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 17.078076923076924

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 17.264278846153847

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 17.45048076923077

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 17.636682692307694

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 17.822884615384616

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 18.00908653846154

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 18.19528846153846

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 18.381490384615386

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 18.567692307692308

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 18.75389423076923

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 18.940096153846156

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 19.126298076923078

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ], - [ - "
id: 13090
prediction: 1.41
AveOccup: 19.3125

MedInc: 2.8021
HouseAge: 33.0
AveRooms: 6.2356020942408374
AveBedrms: 1.036649214659686
Population: 554.0
Latitude: 38.55
Longitude: -121.36
_original_yhat_: 1.1272600000000013
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.3747601000000003, - 1.3747601000000003, - 1.3754101000000005, - 1.3754101000000005, - 1.3363601000000003, - 1.3949901000000002, - 1.4079501000000005, - 1.31643, - 1.2103600000000008, - 1.1500900000000007, - 1.133530000000001, - 1.1427400000000012, - 1.1149800000000014, - 1.0936000000000008, - 1.0267400000000004, - 1.0211300000000003, - 1.0275000000000007, - 1.0653700000000006, - 1.0680100000000003, - 1.0675600000000005, - 1.0749100000000003, - 1.1528800000000003, - 1.1778000000000004, - 1.23062, - 1.30483, - 1.30483, - 1.3415500000000002, - 1.3415500000000002, - 1.3436100000000002, - 1.4237, - 1.4237, - 1.4124500000000004, - 1.4124500000000004, - 1.4124500000000004, - 1.4124500000000004, - 1.4124500000000004, - 1.4124500000000004, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003, - 1.4099500000000003 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 9023
prediction: 3.941
AveOccup: 0.6923076923076923

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.941
AveOccup: 0.8785096153846154

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.941
AveOccup: 1.0647115384615384

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.941
AveOccup: 1.2509134615384614

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.941
AveOccup: 1.4371153846153846

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.941
AveOccup: 1.6233173076923078

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.226
AveOccup: 1.8095192307692307

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.259
AveOccup: 1.995721153846154

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.153
AveOccup: 2.181923076923077

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 4.042
AveOccup: 2.368125

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.911
AveOccup: 2.554326923076923

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.82
AveOccup: 2.740528846153846

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.789
AveOccup: 2.926730769230769

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.445
AveOccup: 3.112932692307692

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.452
AveOccup: 3.2991346153846157

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.44
AveOccup: 3.4853365384615387

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.418
AveOccup: 3.6715384615384616

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.426
AveOccup: 3.8577403846153846

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.426
AveOccup: 4.043942307692308

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.435
AveOccup: 4.2301442307692305

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.435
AveOccup: 4.4163461538461535

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.435
AveOccup: 4.602548076923076

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.435
AveOccup: 4.78875

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.435
AveOccup: 4.974951923076923

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.435
AveOccup: 5.161153846153846

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.435
AveOccup: 5.347355769230769

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.435
AveOccup: 5.533557692307692

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.429
AveOccup: 5.719759615384615

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.429
AveOccup: 5.905961538461539

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.429
AveOccup: 6.092163461538462

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.42
AveOccup: 6.278365384615385

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.42
AveOccup: 6.464567307692308

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.42
AveOccup: 6.650769230769231

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.42
AveOccup: 6.836971153846154

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.374
AveOccup: 7.023173076923077

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.374
AveOccup: 7.209375

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.374
AveOccup: 7.395576923076923

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.374
AveOccup: 7.5817788461538465

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 7.767980769230769

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 7.954182692307692

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 8.140384615384615

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 8.326586538461537

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 8.512788461538461

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 8.698990384615383

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 8.885192307692307

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 9.07139423076923

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 9.257596153846153

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 9.443798076923075

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 9.629999999999999

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 9.816201923076923

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 10.002403846153845

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 10.188605769230769

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 10.37480769230769

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 10.561009615384615

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 10.747211538461537

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 10.93341346153846

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 11.119615384615384

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 11.305817307692307

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 11.49201923076923

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 11.678221153846152

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 11.864423076923076

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 12.050624999999998

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 12.236826923076922

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 12.423028846153844

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 12.609230769230768

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 12.795432692307692

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 12.981634615384614

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 13.167836538461538

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 13.35403846153846

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 13.540240384615384

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 13.726442307692306

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 13.91264423076923

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 14.098846153846152

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 14.285048076923076

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 14.47125

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 14.657451923076922

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 14.843653846153845

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 15.029855769230767

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 15.216057692307691

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 15.402259615384613

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 15.588461538461537

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 15.774663461538461

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 15.960865384615383

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 16.147067307692307

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 16.33326923076923

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 16.519471153846155

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 16.705673076923077

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 16.891875

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 17.078076923076924

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 17.264278846153847

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 17.45048076923077

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 17.636682692307694

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 17.822884615384616

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 18.00908653846154

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 18.19528846153846

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 18.381490384615386

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 18.567692307692308

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 18.75389423076923

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 18.940096153846156

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 19.126298076923078

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ], - [ - "
id: 9023
prediction: 3.345
AveOccup: 19.3125

MedInc: 6.9935
HouseAge: 22.0
AveRooms: 6.9826451226810295
AveBedrms: 1.0353081986834232
Population: 4054.0
Latitude: 34.14
Longitude: -118.82
_original_yhat_: 3.9533514000000007
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.9407324999999993, - 3.9407324999999993, - 3.9407324999999993, - 3.9407324999999993, - 3.9407324999999993, - 3.9407324999999993, - 4.2260231, - 4.259313199999999, - 4.1530825, - 4.042231900000001, - 3.9109414, - 3.8195314000000002, - 3.7887108000000014, - 3.4453004000000016, - 3.4522303000000023, - 3.440300300000002, - 3.4175003000000017, - 3.4264704000000012, - 3.425720400000001, - 3.434720400000001, - 3.434720400000001, - 3.434720400000001, - 3.434720400000001, - 3.434720400000001, - 3.434720400000001, - 3.434720400000001, - 3.434720400000001, - 3.428760400000001, - 3.428760400000001, - 3.428760400000001, - 3.420400400000001, - 3.420400400000001, - 3.420400400000001, - 3.420400400000001, - 3.373850400000001, - 3.373850400000001, - 3.373850400000001, - 3.373850400000001, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007, - 3.3445604000000007 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 18361
prediction: 4.823
AveOccup: 0.6923076923076923

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.823
AveOccup: 0.8785096153846154

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.823
AveOccup: 1.0647115384615384

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.823
AveOccup: 1.2509134615384614

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.823
AveOccup: 1.4371153846153846

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.988
AveOccup: 1.6233173076923078

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.988
AveOccup: 1.8095192307692307

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.988
AveOccup: 1.995721153846154

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.988
AveOccup: 2.181923076923077

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.988
AveOccup: 2.368125

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.988
AveOccup: 2.554326923076923

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
AveOccup: 2.740528846153846

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 5.0
AveOccup: 2.926730769230769

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.989
AveOccup: 3.112932692307692

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.996
AveOccup: 3.2991346153846157

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.92
AveOccup: 3.4853365384615387

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.947
AveOccup: 3.6715384615384616

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.947
AveOccup: 3.8577403846153846

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.947
AveOccup: 4.043942307692308

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.937
AveOccup: 4.2301442307692305

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.937
AveOccup: 4.4163461538461535

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.945
AveOccup: 4.602548076923076

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.945
AveOccup: 4.78875

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.945
AveOccup: 4.974951923076923

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.945
AveOccup: 5.161153846153846

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.914
AveOccup: 5.347355769230769

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.795
AveOccup: 5.533557692307692

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.7
AveOccup: 5.719759615384615

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.7
AveOccup: 5.905961538461539

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.7
AveOccup: 6.092163461538462

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.7
AveOccup: 6.278365384615385

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.7
AveOccup: 6.464567307692308

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.7
AveOccup: 6.650769230769231

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.7
AveOccup: 6.836971153846154

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.7
AveOccup: 7.023173076923077

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.701
AveOccup: 7.209375

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.701
AveOccup: 7.395576923076923

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.701
AveOccup: 7.5817788461538465

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.701
AveOccup: 7.767980769230769

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 7.954182692307692

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 8.140384615384615

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 8.326586538461537

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 8.512788461538461

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 8.698990384615383

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 8.885192307692307

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 9.07139423076923

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 9.257596153846153

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 9.443798076923075

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 9.629999999999999

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 9.816201923076923

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 10.002403846153845

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 10.188605769230769

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 10.37480769230769

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 10.561009615384615

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 10.747211538461537

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 10.93341346153846

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 11.119615384615384

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 11.305817307692307

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 11.49201923076923

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 11.678221153846152

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 11.864423076923076

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 12.050624999999998

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 12.236826923076922

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 12.423028846153844

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 12.609230769230768

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 12.795432692307692

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 12.981634615384614

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 13.167836538461538

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 13.35403846153846

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 13.540240384615384

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 13.726442307692306

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 13.91264423076923

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 14.098846153846152

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 14.285048076923076

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 14.47125

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 14.657451923076922

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 14.843653846153845

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 15.029855769230767

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 15.216057692307691

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 15.402259615384613

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 15.588461538461537

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 15.774663461538461

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 15.960865384615383

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 16.147067307692307

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 16.33326923076923

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 16.519471153846155

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 16.705673076923077

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 16.891875

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 17.078076923076924

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 17.264278846153847

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 17.45048076923077

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 17.636682692307694

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 17.822884615384616

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 18.00908653846154

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 18.19528846153846

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 18.381490384615386

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 18.567692307692308

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 18.75389423076923

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 18.940096153846156

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 19.126298076923078

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 18361
prediction: 4.733
AveOccup: 19.3125

MedInc: 12.1387
HouseAge: 23.0
AveRooms: 8.261887344550109
AveBedrms: 1.0073152889539136
Population: 3840.0
Latitude: 37.36
Longitude: -122.14
_original_yhat_: 5.000009999999988
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.82282929999999, - 4.82282929999999, - 4.82282929999999, - 4.82282929999999, - 4.82282929999999, - 4.987829899999989, - 4.987829899999989, - 4.987829899999989, - 4.987829899999988, - 4.987829899999988, - 4.987829899999989, - 5.000009999999988, - 5.000009999999988, - 4.988579699999989, - 4.996439799999989, - 4.920298999999988, - 4.947079299999989, - 4.947079299999989, - 4.947079299999989, - 4.937079199999989, - 4.937079199999989, - 4.94540919999999, - 4.94540919999999, - 4.94540919999999, - 4.94540919999999, - 4.91365909999999, - 4.79498879999999, - 4.69973849999999, - 4.69973849999999, - 4.69973849999999, - 4.69973849999999, - 4.69973849999999, - 4.69973849999999, - 4.69973849999999, - 4.69973849999999, - 4.70140859999999, - 4.70140859999999, - 4.70140859999999, - 4.70140859999999, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989, - 4.733158699999989 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 7466
prediction: 3.653
AveOccup: 0.6923076923076923

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.653
AveOccup: 0.8785096153846154

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.653
AveOccup: 1.0647115384615384

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.653
AveOccup: 1.2509134615384614

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.653
AveOccup: 1.4371153846153846

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.696
AveOccup: 1.6233173076923078

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 3.384
AveOccup: 1.8095192307692307

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.835
AveOccup: 1.995721153846154

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.29
AveOccup: 2.181923076923077

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 2.075
AveOccup: 2.368125

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.925
AveOccup: 2.554326923076923

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.916
AveOccup: 2.740528846153846

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.827
AveOccup: 2.926730769230769

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.707
AveOccup: 3.112932692307692

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.67
AveOccup: 3.2991346153846157

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.563
AveOccup: 3.4853365384615387

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.527
AveOccup: 3.6715384615384616

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.512
AveOccup: 3.8577403846153846

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.508
AveOccup: 4.043942307692308

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.486
AveOccup: 4.2301442307692305

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.454
AveOccup: 4.4163461538461535

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.42
AveOccup: 4.602548076923076

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.421
AveOccup: 4.78875

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.432
AveOccup: 4.974951923076923

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.437
AveOccup: 5.161153846153846

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 5.347355769230769

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 5.533557692307692

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.421
AveOccup: 5.719759615384615

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.421
AveOccup: 5.905961538461539

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.418
AveOccup: 6.092163461538462

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.418
AveOccup: 6.278365384615385

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.418
AveOccup: 6.464567307692308

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.422
AveOccup: 6.650769230769231

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.422
AveOccup: 6.836971153846154

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.422
AveOccup: 7.023173076923077

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.422
AveOccup: 7.209375

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.426
AveOccup: 7.395576923076923

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.426
AveOccup: 7.5817788461538465

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 7.767980769230769

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 7.954182692307692

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 8.140384615384615

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 8.326586538461537

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 8.512788461538461

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 8.698990384615383

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 8.885192307692307

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 9.07139423076923

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 9.257596153846153

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 9.443798076923075

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 9.629999999999999

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 9.816201923076923

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 10.002403846153845

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 10.188605769230769

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 10.37480769230769

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 10.561009615384615

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 10.747211538461537

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 10.93341346153846

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 11.119615384615384

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.431
AveOccup: 11.305817307692307

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 11.49201923076923

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 11.678221153846152

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 11.864423076923076

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 12.050624999999998

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 12.236826923076922

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 12.423028846153844

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 12.609230769230768

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 12.795432692307692

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 12.981634615384614

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 13.167836538461538

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 13.35403846153846

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 13.540240384615384

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 13.726442307692306

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.43
AveOccup: 13.91264423076923

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.417
AveOccup: 14.098846153846152

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 14.285048076923076

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 14.47125

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 14.657451923076922

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 14.843653846153845

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 15.029855769230767

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 15.216057692307691

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 15.402259615384613

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 15.588461538461537

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 15.774663461538461

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 15.960865384615383

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 16.147067307692307

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 16.33326923076923

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 16.519471153846155

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 16.705673076923077

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 16.891875

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 17.078076923076924

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 17.264278846153847

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 17.45048076923077

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 17.636682692307694

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 17.822884615384616

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 18.00908653846154

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 18.19528846153846

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 18.381490384615386

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 18.567692307692308

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.411
AveOccup: 18.75389423076923

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.373
AveOccup: 18.940096153846156

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.373
AveOccup: 19.126298076923078

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ], - [ - "
id: 7466
prediction: 1.373
AveOccup: 19.3125

MedInc: 3.1667
HouseAge: 44.0
AveRooms: 4.716374269005848
AveBedrms: 1.0087719298245614
Population: 1227.0
Latitude: 33.93
Longitude: -118.19
_original_yhat_: 1.5138999999999982
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.653302099999998, - 3.653302099999998, - 3.653302099999998, - 3.653302099999998, - 3.653411999999997, - 3.6958716999999965, - 3.3843808999999987, - 2.83515, - 2.2896500000000004, - 2.0745301, - 1.92496, - 1.9156999999999997, - 1.8273499999999994, - 1.7070999999999992, - 1.6700299999999992, - 1.5626899999999984, - 1.5272799999999986, - 1.511579999999999, - 1.508039999999999, - 1.4863699999999989, - 1.4539999999999995, - 1.4201699999999997, - 1.4210399999999996, - 1.4315599999999995, - 1.4367699999999994, - 1.4305399999999995, - 1.4296899999999995, - 1.4209499999999995, - 1.4211499999999992, - 1.4181799999999993, - 1.4181799999999993, - 1.4181799999999993, - 1.4218999999999995, - 1.4218999999999995, - 1.4218999999999995, - 1.4218999999999995, - 1.4263099999999995, - 1.4263099999999995, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4309699999999994, - 1.4304199999999994, - 1.4303499999999993, - 1.4303499999999993, - 1.4303499999999993, - 1.4303499999999993, - 1.4303499999999993, - 1.4303499999999993, - 1.4303499999999993, - 1.4303499999999993, - 1.4303499999999993, - 1.4303499999999993, - 1.4303499999999993, - 1.4303499999999993, - 1.4303499999999993, - 1.4171699999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.4113499999999994, - 1.3725799999999995, - 1.3725799999999995, - 1.3725799999999995 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 15862
prediction: 3.066
AveOccup: 0.6923076923076923

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.066
AveOccup: 0.8785096153846154

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.066
AveOccup: 1.0647115384615384

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.066
AveOccup: 1.2509134615384614

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.049
AveOccup: 1.4371153846153846

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.087
AveOccup: 1.6233173076923078

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.158
AveOccup: 1.8095192307692307

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 3.132
AveOccup: 1.995721153846154

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.977
AveOccup: 2.181923076923077

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.614
AveOccup: 2.368125

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.472
AveOccup: 2.554326923076923

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.445
AveOccup: 2.740528846153846

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.388
AveOccup: 2.926730769230769

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.381
AveOccup: 3.112932692307692

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.379
AveOccup: 3.2991346153846157

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.364
AveOccup: 3.4853365384615387

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.387
AveOccup: 3.6715384615384616

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.383
AveOccup: 3.8577403846153846

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.422
AveOccup: 4.043942307692308

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.424
AveOccup: 4.2301442307692305

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.419
AveOccup: 4.4163461538461535

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.419
AveOccup: 4.602548076923076

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.429
AveOccup: 4.78875

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.429
AveOccup: 4.974951923076923

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.429
AveOccup: 5.161153846153846

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.437
AveOccup: 5.347355769230769

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.437
AveOccup: 5.533557692307692

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.437
AveOccup: 5.719759615384615

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.437
AveOccup: 5.905961538461539

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.483
AveOccup: 6.092163461538462

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.483
AveOccup: 6.278365384615385

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.483
AveOccup: 6.464567307692308

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 6.650769230769231

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 6.836971153846154

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 7.023173076923077

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 7.209375

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 7.395576923076923

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 7.5817788461538465

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 7.767980769230769

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 7.954182692307692

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 8.140384615384615

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 8.326586538461537

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 8.512788461538461

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 8.698990384615383

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 8.885192307692307

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 9.07139423076923

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 9.257596153846153

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 9.443798076923075

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 9.629999999999999

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 9.816201923076923

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 10.002403846153845

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 10.188605769230769

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 10.37480769230769

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 10.561009615384615

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 10.747211538461537

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 10.93341346153846

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 11.119615384615384

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 11.305817307692307

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 11.49201923076923

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 11.678221153846152

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 11.864423076923076

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 12.050624999999998

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 12.236826923076922

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 12.423028846153844

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 12.609230769230768

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 12.795432692307692

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 12.981634615384614

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 13.167836538461538

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 13.35403846153846

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 13.540240384615384

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 13.726442307692306

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 13.91264423076923

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 14.098846153846152

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 14.285048076923076

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 14.47125

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 14.657451923076922

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 14.843653846153845

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 15.029855769230767

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 15.216057692307691

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 15.402259615384613

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 15.588461538461537

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 15.774663461538461

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 15.960865384615383

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 16.147067307692307

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 16.33326923076923

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 16.519471153846155

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 16.705673076923077

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 16.891875

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 17.078076923076924

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 17.264278846153847

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 17.45048076923077

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 17.636682692307694

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 17.822884615384616

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 18.00908653846154

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 18.19528846153846

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 18.381490384615386

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 18.567692307692308

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 18.75389423076923

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 18.940096153846156

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 19.126298076923078

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ], - [ - "
id: 15862
prediction: 2.474
AveOccup: 19.3125

MedInc: 2.8679
HouseAge: 44.0
AveRooms: 4.951554591467824
AveBedrms: 1.1453362255965294
Population: 3269.0
Latitude: 37.75
Longitude: -122.4
_original_yhat_: 2.614150099999997
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.0661404999999973, - 3.0661404999999973, - 3.0661404999999973, - 3.0661404999999973, - 3.048910499999997, - 3.087280299999997, - 3.1575703999999973, - 3.132160299999997, - 2.9765602999999983, - 2.614150099999997, - 2.471659999999999, - 2.4451899999999984, - 2.388069999999999, - 2.3805099999999992, - 2.3787199999999986, - 2.363869999999999, - 2.3865199999999986, - 2.3831499999999988, - 2.4218999999999986, - 2.4238699999999986, - 2.4193999999999987, - 2.4193999999999987, - 2.428739999999999, - 2.428739999999999, - 2.428739999999999, - 2.436579999999999, - 2.436579999999999, - 2.436579999999999, - 2.436579999999999, - 2.483439999999999, - 2.483439999999999, - 2.483439999999999, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992, - 2.4739899999999992 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 20576
prediction: 1.649
AveOccup: 0.6923076923076923

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.649
AveOccup: 0.8785096153846154

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.649
AveOccup: 1.0647115384615384

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.649
AveOccup: 1.2509134615384614

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.636
AveOccup: 1.4371153846153846

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.63
AveOccup: 1.6233173076923078

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.621
AveOccup: 1.8095192307692307

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.538
AveOccup: 1.995721153846154

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.493
AveOccup: 2.181923076923077

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.424
AveOccup: 2.368125

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.243
AveOccup: 2.554326923076923

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.187
AveOccup: 2.740528846153846

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.107
AveOccup: 2.926730769230769

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.049
AveOccup: 3.112932692307692

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.035
AveOccup: 3.2991346153846157

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.005
AveOccup: 3.4853365384615387

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.012
AveOccup: 3.6715384615384616

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.014
AveOccup: 3.8577403846153846

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.03
AveOccup: 4.043942307692308

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.027
AveOccup: 4.2301442307692305

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.027
AveOccup: 4.4163461538461535

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.027
AveOccup: 4.602548076923076

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.027
AveOccup: 4.78875

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.038
AveOccup: 4.974951923076923

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.038
AveOccup: 5.161153846153846

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.038
AveOccup: 5.347355769230769

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.038
AveOccup: 5.533557692307692

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.038
AveOccup: 5.719759615384615

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.038
AveOccup: 5.905961538461539

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.036
AveOccup: 6.092163461538462

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.036
AveOccup: 6.278365384615385

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.036
AveOccup: 6.464567307692308

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.036
AveOccup: 6.650769230769231

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.036
AveOccup: 6.836971153846154

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.036
AveOccup: 7.023173076923077

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.036
AveOccup: 7.209375

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.036
AveOccup: 7.395576923076923

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.036
AveOccup: 7.5817788461538465

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.036
AveOccup: 7.767980769230769

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.04
AveOccup: 7.954182692307692

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.04
AveOccup: 8.140384615384615

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.04
AveOccup: 8.326586538461537

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.04
AveOccup: 8.512788461538461

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.04
AveOccup: 8.698990384615383

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.04
AveOccup: 8.885192307692307

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.04
AveOccup: 9.07139423076923

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.04
AveOccup: 9.257596153846153

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.04
AveOccup: 9.443798076923075

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.04
AveOccup: 9.629999999999999

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 9.816201923076923

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 10.002403846153845

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 10.188605769230769

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 10.37480769230769

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 10.561009615384615

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 10.747211538461537

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 10.93341346153846

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 11.119615384615384

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 11.305817307692307

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 11.49201923076923

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 11.678221153846152

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 11.864423076923076

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 12.050624999999998

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 12.236826923076922

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 12.423028846153844

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 12.609230769230768

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 12.795432692307692

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 12.981634615384614

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 13.167836538461538

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 13.35403846153846

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 13.540240384615384

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 13.726442307692306

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 13.91264423076923

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 14.098846153846152

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 14.285048076923076

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 14.47125

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 14.657451923076922

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 14.843653846153845

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 15.029855769230767

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 15.216057692307691

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 15.402259615384613

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 15.588461538461537

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 15.774663461538461

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 15.960865384615383

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 16.147067307692307

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 16.33326923076923

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 16.519471153846155

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 16.705673076923077

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 16.891875

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 17.078076923076924

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 17.264278846153847

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 17.45048076923077

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 17.636682692307694

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 17.822884615384616

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 18.00908653846154

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 18.19528846153846

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 18.381490384615386

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 18.567692307692308

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 18.75389423076923

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 18.940096153846156

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 19.126298076923078

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ], - [ - "
id: 20576
prediction: 1.05
AveOccup: 19.3125

MedInc: 3.4187
HouseAge: 26.0
AveRooms: 5.230769230769231
AveBedrms: 0.9423076923076923
Population: 194.0
Latitude: 38.83
Longitude: -122.0
_original_yhat_: 1.0118499999999988
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.6488401000000001, - 1.6488401000000001, - 1.6488401000000001, - 1.6488401000000001, - 1.6356001000000004, - 1.6304500000000004, - 1.6211100000000003, - 1.53776, - 1.49315, - 1.4241599999999994, - 1.2433200000000004, - 1.18703, - 1.1067999999999996, - 1.0485799999999992, - 1.0350799999999991, - 1.0051899999999987, - 1.0118499999999988, - 1.0140899999999988, - 1.030259999999999, - 1.0271499999999991, - 1.0271499999999991, - 1.0271499999999991, - 1.0271499999999991, - 1.038309999999999, - 1.038309999999999, - 1.038309999999999, - 1.038309999999999, - 1.038309999999999, - 1.038309999999999, - 1.0364699999999991, - 1.0364699999999991, - 1.0364699999999991, - 1.0364699999999991, - 1.0364699999999991, - 1.0364699999999991, - 1.0364699999999991, - 1.0364699999999991, - 1.0364699999999991, - 1.0364699999999991, - 1.040379999999999, - 1.040379999999999, - 1.040379999999999, - 1.040379999999999, - 1.040379999999999, - 1.040379999999999, - 1.040379999999999, - 1.040379999999999, - 1.040379999999999, - 1.040379999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999, - 1.050039999999999 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 13167
prediction: 2.824
AveOccup: 0.6923076923076923

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.824
AveOccup: 0.8785096153846154

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.824
AveOccup: 1.0647115384615384

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.824
AveOccup: 1.2509134615384614

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.824
AveOccup: 1.4371153846153846

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.848
AveOccup: 1.6233173076923078

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.918
AveOccup: 1.8095192307692307

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.798
AveOccup: 1.995721153846154

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.781
AveOccup: 2.181923076923077

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.596
AveOccup: 2.368125

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.254
AveOccup: 2.554326923076923

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.221
AveOccup: 2.740528846153846

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.183
AveOccup: 2.926730769230769

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.197
AveOccup: 3.112932692307692

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.167
AveOccup: 3.2991346153846157

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.167
AveOccup: 3.4853365384615387

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.197
AveOccup: 3.6715384615384616

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.194
AveOccup: 3.8577403846153846

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.158
AveOccup: 4.043942307692308

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.183
AveOccup: 4.2301442307692305

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.223
AveOccup: 4.4163461538461535

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.283
AveOccup: 4.602548076923076

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.318
AveOccup: 4.78875

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.319
AveOccup: 4.974951923076923

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.319
AveOccup: 5.161153846153846

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.319
AveOccup: 5.347355769230769

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.319
AveOccup: 5.533557692307692

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.319
AveOccup: 5.719759615384615

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.319
AveOccup: 5.905961538461539

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.319
AveOccup: 6.092163461538462

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.319
AveOccup: 6.278365384615385

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.319
AveOccup: 6.464567307692308

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 6.650769230769231

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 6.836971153846154

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 7.023173076923077

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 7.209375

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 7.395576923076923

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 7.5817788461538465

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 7.767980769230769

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 7.954182692307692

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 8.140384615384615

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 8.326586538461537

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 8.512788461538461

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 8.698990384615383

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 8.885192307692307

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 9.07139423076923

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 9.257596153846153

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 9.443798076923075

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 9.629999999999999

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 9.816201923076923

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 10.002403846153845

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 10.188605769230769

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 10.37480769230769

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 10.561009615384615

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 10.747211538461537

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 10.93341346153846

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 11.119615384615384

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 11.305817307692307

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 11.49201923076923

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 11.678221153846152

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 11.864423076923076

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 12.050624999999998

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 12.236826923076922

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 12.423028846153844

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 12.609230769230768

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 12.795432692307692

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 12.981634615384614

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 13.167836538461538

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 13.35403846153846

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 13.540240384615384

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 13.726442307692306

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 13.91264423076923

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 14.098846153846152

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 14.285048076923076

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 14.47125

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 14.657451923076922

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 14.843653846153845

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 15.029855769230767

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 15.216057692307691

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 15.402259615384613

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 15.588461538461537

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 15.774663461538461

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 15.960865384615383

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 16.147067307692307

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 16.33326923076923

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 16.519471153846155

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 16.705673076923077

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 16.891875

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 17.078076923076924

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 17.264278846153847

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 17.45048076923077

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 17.636682692307694

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 17.822884615384616

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 18.00908653846154

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 18.19528846153846

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 18.381490384615386

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 18.567692307692308

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 18.75389423076923

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 18.940096153846156

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 19.126298076923078

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ], - [ - "
id: 13167
prediction: 2.332
AveOccup: 19.3125

MedInc: 4.76
HouseAge: 14.0
AveRooms: 6.096666666666667
AveBedrms: 1.02
Population: 1951.0
Latitude: 36.83
Longitude: -121.37
_original_yhat_: 2.167329999999999
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.824010099999998, - 2.824010099999998, - 2.824010099999998, - 2.824010099999998, - 2.824010099999998, - 2.848100099999998, - 2.918400199999999, - 2.797729999999999, - 2.7806599999999992, - 2.59558, - 2.2543400999999994, - 2.2205500999999996, - 2.1825199999999993, - 2.1965099999999986, - 2.167159999999999, - 2.1674399999999987, - 2.1965899999999987, - 2.194199999999998, - 2.1580099999999987, - 2.182630199999999, - 2.2232502999999983, - 2.2826305999999987, - 2.3183806999999983, - 2.318760699999998, - 2.318760699999998, - 2.318760699999998, - 2.318760699999998, - 2.318760699999998, - 2.318760699999998, - 2.318760699999998, - 2.318760699999998, - 2.318760699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998, - 2.332390699999998 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 3672
prediction: 4.857
AveOccup: 0.6923076923076923

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.857
AveOccup: 0.8785096153846154

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.857
AveOccup: 1.0647115384615384

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.857
AveOccup: 1.2509134615384614

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.857
AveOccup: 1.4371153846153846

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.901
AveOccup: 1.6233173076923078

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.913
AveOccup: 1.8095192307692307

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 4.874
AveOccup: 1.995721153846154

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 3.761
AveOccup: 2.181923076923077

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 3.538
AveOccup: 2.368125

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 3.407
AveOccup: 2.554326923076923

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 3.161
AveOccup: 2.740528846153846

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.901
AveOccup: 2.926730769230769

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.724
AveOccup: 3.112932692307692

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.467
AveOccup: 3.2991346153846157

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.276
AveOccup: 3.4853365384615387

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.243
AveOccup: 3.6715384615384616

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.179
AveOccup: 3.8577403846153846

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.158
AveOccup: 4.043942307692308

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.153
AveOccup: 4.2301442307692305

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.151
AveOccup: 4.4163461538461535

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.151
AveOccup: 4.602548076923076

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.18
AveOccup: 4.78875

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.282
AveOccup: 4.974951923076923

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 5.161153846153846

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 5.347355769230769

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 5.533557692307692

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 5.719759615384615

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 5.905961538461539

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 6.092163461538462

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 6.278365384615385

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 6.464567307692308

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 6.650769230769231

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 6.836971153846154

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 7.023173076923077

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 7.209375

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 7.395576923076923

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 7.5817788461538465

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 7.767980769230769

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 7.954182692307692

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 8.140384615384615

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 8.326586538461537

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 8.512788461538461

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 8.698990384615383

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 8.885192307692307

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 9.07139423076923

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 9.257596153846153

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 9.443798076923075

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 9.629999999999999

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 9.816201923076923

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 10.002403846153845

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 10.188605769230769

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 10.37480769230769

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 10.561009615384615

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 10.747211538461537

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 10.93341346153846

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 11.119615384615384

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 11.305817307692307

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 11.49201923076923

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 11.678221153846152

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 11.864423076923076

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 12.050624999999998

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 12.236826923076922

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 12.423028846153844

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 12.609230769230768

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 12.795432692307692

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 12.981634615384614

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 13.167836538461538

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 13.35403846153846

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 13.540240384615384

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 13.726442307692306

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 13.91264423076923

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 14.098846153846152

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 14.285048076923076

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 14.47125

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 14.657451923076922

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 14.843653846153845

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 15.029855769230767

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 15.216057692307691

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 15.402259615384613

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 15.588461538461537

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 15.774663461538461

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 15.960865384615383

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 16.147067307692307

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 16.33326923076923

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 16.519471153846155

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 16.705673076923077

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 16.891875

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 17.078076923076924

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 17.264278846153847

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 17.45048076923077

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 17.636682692307694

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 17.822884615384616

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 18.00908653846154

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 18.19528846153846

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 18.381490384615386

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 18.567692307692308

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 18.75389423076923

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 18.940096153846156

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 19.126298076923078

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ], - [ - "
id: 3672
prediction: 2.312
AveOccup: 19.3125

MedInc: 5.592
HouseAge: 35.0
AveRooms: 6.700374531835206
AveBedrms: 1.0936329588014981
Population: 897.0
Latitude: 34.21
Longitude: -118.41
_original_yhat_: 2.4542800000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.85743879999999, - 4.85743879999999, - 4.85743879999999, - 4.85743879999999, - 4.85743879999999, - 4.90059899999999, - 4.912939099999989, - 4.87372839999999, - 3.7608711000000006, - 3.5381406999999996, - 3.407270500000001, - 3.1611101000000015, - 2.9014401000000003, - 2.7239901000000004, - 2.46707, - 2.2757799999999997, - 2.2426599999999994, - 2.178539999999998, - 2.157779999999998, - 2.153359999999998, - 2.1506399999999983, - 2.1506399999999983, - 2.180000099999998, - 2.2823204999999986, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983, - 2.3119905999999983 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 6209
prediction: 3.762
AveOccup: 0.6923076923076923

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.762
AveOccup: 0.8785096153846154

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.762
AveOccup: 1.0647115384615384

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.762
AveOccup: 1.2509134615384614

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.813
AveOccup: 1.4371153846153846

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.806
AveOccup: 1.6233173076923078

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.783
AveOccup: 1.8095192307692307

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 3.315
AveOccup: 1.995721153846154

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.935
AveOccup: 2.181923076923077

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.398
AveOccup: 2.368125

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.202
AveOccup: 2.554326923076923

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 2.166
AveOccup: 2.740528846153846

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.906
AveOccup: 2.926730769230769

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.869
AveOccup: 3.112932692307692

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.817
AveOccup: 3.2991346153846157

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.747
AveOccup: 3.4853365384615387

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.716
AveOccup: 3.6715384615384616

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.642
AveOccup: 3.8577403846153846

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.605
AveOccup: 4.043942307692308

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.569
AveOccup: 4.2301442307692305

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.566
AveOccup: 4.4163461538461535

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.554
AveOccup: 4.602548076923076

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.561
AveOccup: 4.78875

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.563
AveOccup: 4.974951923076923

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.567
AveOccup: 5.161153846153846

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.578
AveOccup: 5.347355769230769

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.577
AveOccup: 5.533557692307692

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.576
AveOccup: 5.719759615384615

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.576
AveOccup: 5.905961538461539

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 6.092163461538462

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 6.278365384615385

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 6.464567307692308

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 6.650769230769231

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 6.836971153846154

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 7.023173076923077

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 7.209375

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 7.395576923076923

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 7.5817788461538465

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 7.767980769230769

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 7.954182692307692

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 8.140384615384615

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 8.326586538461537

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 8.512788461538461

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 8.698990384615383

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 8.885192307692307

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 9.07139423076923

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 9.257596153846153

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 9.443798076923075

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 9.629999999999999

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 9.816201923076923

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 10.002403846153845

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 10.188605769230769

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 10.37480769230769

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 10.561009615384615

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 10.747211538461537

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 10.93341346153846

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 11.119615384615384

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 11.305817307692307

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 11.49201923076923

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 11.678221153846152

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 11.864423076923076

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 12.050624999999998

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 12.236826923076922

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 12.423028846153844

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 12.609230769230768

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 12.795432692307692

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 12.981634615384614

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 13.167836538461538

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 13.35403846153846

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 13.540240384615384

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 13.726442307692306

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.574
AveOccup: 13.91264423076923

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.556
AveOccup: 14.098846153846152

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 14.285048076923076

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 14.47125

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 14.657451923076922

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 14.843653846153845

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 15.029855769230767

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 15.216057692307691

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 15.402259615384613

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 15.588461538461537

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 15.774663461538461

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 15.960865384615383

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 16.147067307692307

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 16.33326923076923

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 16.519471153846155

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 16.705673076923077

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 16.891875

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 17.078076923076924

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 17.264278846153847

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 17.45048076923077

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 17.636682692307694

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 17.822884615384616

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 18.00908653846154

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 18.19528846153846

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 18.381490384615386

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 18.567692307692308

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.522
AveOccup: 18.75389423076923

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.453
AveOccup: 18.940096153846156

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.453
AveOccup: 19.126298076923078

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ], - [ - "
id: 6209
prediction: 1.453
AveOccup: 19.3125

MedInc: 3.9808
HouseAge: 35.0
AveRooms: 5.3099630996309966
AveBedrms: 0.9630996309963099
Population: 804.0
Latitude: 34.07
Longitude: -117.89
_original_yhat_: 1.9121199999999987
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.7617119999999975, - 3.7617119999999975, - 3.7617119999999975, - 3.7617119999999975, - 3.8128820999999977, - 3.806272399999997, - 3.783032399999998, - 3.3150713999999977, - 2.9346707, - 2.3980499999999996, - 2.2022400000000006, - 2.1659100000000007, - 1.9055699999999993, - 1.8685599999999993, - 1.8174199999999991, - 1.7465899999999999, - 1.7158800000000005, - 1.6419600000000005, - 1.6054100000000004, - 1.5694300000000003, - 1.5657700000000008, - 1.5544400000000005, - 1.5606000000000002, - 1.5634500000000005, - 1.5668300000000004, - 1.5783900000000008, - 1.5765200000000008, - 1.5760400000000008, - 1.5760400000000008, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.5742000000000007, - 1.556380000000001, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.5217600000000007, - 1.4525300000000003, - 1.4525300000000003, - 1.4525300000000003 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 16912
prediction: 4.835
AveOccup: 0.6923076923076923

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.835
AveOccup: 0.8785096153846154

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.835
AveOccup: 1.0647115384615384

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.835
AveOccup: 1.2509134615384614

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.835
AveOccup: 1.4371153846153846

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
AveOccup: 1.6233173076923078

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
AveOccup: 1.8095192307692307

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
AveOccup: 1.995721153846154

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
AveOccup: 2.181923076923077

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
AveOccup: 2.368125

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
AveOccup: 2.554326923076923

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
AveOccup: 2.740528846153846

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 5.0
AveOccup: 2.926730769230769

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.991
AveOccup: 3.112932692307692

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.999
AveOccup: 3.2991346153846157

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.955
AveOccup: 3.4853365384615387

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.982
AveOccup: 3.6715384615384616

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.982
AveOccup: 3.8577403846153846

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.982
AveOccup: 4.043942307692308

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.972
AveOccup: 4.2301442307692305

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.972
AveOccup: 4.4163461538461535

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.98
AveOccup: 4.602548076923076

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.98
AveOccup: 4.78875

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.98
AveOccup: 4.974951923076923

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.98
AveOccup: 5.161153846153846

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.949
AveOccup: 5.347355769230769

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.853
AveOccup: 5.533557692307692

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.758
AveOccup: 5.719759615384615

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.758
AveOccup: 5.905961538461539

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.758
AveOccup: 6.092163461538462

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.758
AveOccup: 6.278365384615385

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.758
AveOccup: 6.464567307692308

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.758
AveOccup: 6.650769230769231

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.758
AveOccup: 6.836971153846154

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.758
AveOccup: 7.023173076923077

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.76
AveOccup: 7.209375

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.76
AveOccup: 7.395576923076923

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.76
AveOccup: 7.5817788461538465

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.76
AveOccup: 7.767980769230769

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 7.954182692307692

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 8.140384615384615

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 8.326586538461537

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 8.512788461538461

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 8.698990384615383

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 8.885192307692307

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 9.07139423076923

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 9.257596153846153

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 9.443798076923075

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 9.629999999999999

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 9.816201923076923

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 10.002403846153845

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 10.188605769230769

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 10.37480769230769

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 10.561009615384615

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 10.747211538461537

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 10.93341346153846

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 11.119615384615384

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 11.305817307692307

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 11.49201923076923

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 11.678221153846152

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 11.864423076923076

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 12.050624999999998

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 12.236826923076922

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 12.423028846153844

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 12.609230769230768

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 12.795432692307692

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 12.981634615384614

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 13.167836538461538

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 13.35403846153846

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 13.540240384615384

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 13.726442307692306

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 13.91264423076923

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 14.098846153846152

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 14.285048076923076

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 14.47125

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 14.657451923076922

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 14.843653846153845

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 15.029855769230767

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 15.216057692307691

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 15.402259615384613

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 15.588461538461537

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 15.774663461538461

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 15.960865384615383

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 16.147067307692307

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 16.33326923076923

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 16.519471153846155

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 16.705673076923077

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 16.891875

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 17.078076923076924

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 17.264278846153847

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 17.45048076923077

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 17.636682692307694

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 17.822884615384616

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 18.00908653846154

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 18.19528846153846

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 18.381490384615386

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 18.567692307692308

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 18.75389423076923

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 18.940096153846156

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 19.126298076923078

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ], - [ - "
id: 16912
prediction: 4.792
AveOccup: 19.3125

MedInc: 12.6417
HouseAge: 39.0
AveRooms: 9.10997442455243
AveBedrms: 1.0
Population: 1139.0
Latitude: 37.56
Longitude: -122.34
_original_yhat_: 5.000009999999988
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.83500939999999, - 4.83500939999999, - 4.83500939999999, - 4.83500939999999, - 4.83500939999999, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 5.000009999999988, - 4.990869799999989, - 4.998729899999989, - 4.954649399999989, - 4.982069699999989, - 4.982069699999989, - 4.982069699999989, - 4.972069599999989, - 4.972069599999989, - 4.9803995999999895, - 4.9803995999999895, - 4.9803995999999895, - 4.9803995999999895, - 4.9486494999999895, - 4.8533991999999895, - 4.7581488999999895, - 4.7581488999999895, - 4.7581488999999895, - 4.7581488999999895, - 4.7581488999999895, - 4.7581488999999895, - 4.7581488999999895, - 4.7581488999999895, - 4.75981899999999, - 4.75981899999999, - 4.75981899999999, - 4.75981899999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999, - 4.79156909999999 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 12386
prediction: 2.619
AveOccup: 0.6923076923076923

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.619
AveOccup: 0.8785096153846154

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.619
AveOccup: 1.0647115384615384

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.619
AveOccup: 1.2509134615384614

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.619
AveOccup: 1.4371153846153846

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.618
AveOccup: 1.6233173076923078

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.763
AveOccup: 1.8095192307692307

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.797
AveOccup: 1.995721153846154

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.861
AveOccup: 2.181923076923077

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.881
AveOccup: 2.368125

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.987
AveOccup: 2.554326923076923

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.849
AveOccup: 2.740528846153846

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.872
AveOccup: 2.926730769230769

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.016
AveOccup: 3.112932692307692

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.027
AveOccup: 3.2991346153846157

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.063
AveOccup: 3.4853365384615387

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.034
AveOccup: 3.6715384615384616

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.052
AveOccup: 3.8577403846153846

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.057
AveOccup: 4.043942307692308

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.057
AveOccup: 4.2301442307692305

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.057
AveOccup: 4.4163461538461535

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.057
AveOccup: 4.602548076923076

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.049
AveOccup: 4.78875

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.049
AveOccup: 4.974951923076923

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.049
AveOccup: 5.161153846153846

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.049
AveOccup: 5.347355769230769

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.049
AveOccup: 5.533557692307692

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.049
AveOccup: 5.719759615384615

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.036
AveOccup: 5.905961538461539

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.036
AveOccup: 6.092163461538462

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.027
AveOccup: 6.278365384615385

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.027
AveOccup: 6.464567307692308

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.027
AveOccup: 6.650769230769231

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 3.027
AveOccup: 6.836971153846154

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.992
AveOccup: 7.023173076923077

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.992
AveOccup: 7.209375

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.992
AveOccup: 7.395576923076923

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.992
AveOccup: 7.5817788461538465

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 7.767980769230769

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 7.954182692307692

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 8.140384615384615

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 8.326586538461537

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 8.512788461538461

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 8.698990384615383

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 8.885192307692307

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 9.07139423076923

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 9.257596153846153

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 9.443798076923075

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 9.629999999999999

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 9.816201923076923

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 10.002403846153845

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 10.188605769230769

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 10.37480769230769

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 10.561009615384615

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 10.747211538461537

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 10.93341346153846

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 11.119615384615384

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 11.305817307692307

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 11.49201923076923

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 11.678221153846152

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 11.864423076923076

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 12.050624999999998

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 12.236826923076922

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 12.423028846153844

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 12.609230769230768

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 12.795432692307692

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 12.981634615384614

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 13.167836538461538

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 13.35403846153846

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 13.540240384615384

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 13.726442307692306

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 13.91264423076923

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 14.098846153846152

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 14.285048076923076

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 14.47125

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 14.657451923076922

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 14.843653846153845

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 15.029855769230767

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 15.216057692307691

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 15.402259615384613

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 15.588461538461537

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 15.774663461538461

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 15.960865384615383

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 16.147067307692307

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 16.33326923076923

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 16.519471153846155

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 16.705673076923077

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 16.891875

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 17.078076923076924

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 17.264278846153847

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 17.45048076923077

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 17.636682692307694

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 17.822884615384616

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 18.00908653846154

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 18.19528846153846

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 18.381490384615386

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 18.567692307692308

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 18.75389423076923

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 18.940096153846156

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 19.126298076923078

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ], - [ - "
id: 12386
prediction: 2.949
AveOccup: 19.3125

MedInc: 6.9833
HouseAge: 10.0
AveRooms: 10.765466297322252
AveBedrms: 1.853185595567867
Population: 2186.0
Latitude: 33.69
Longitude: -116.39
_original_yhat_: 2.7767604000000006
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.618880200000002, - 2.618880200000002, - 2.618880200000002, - 2.618880200000002, - 2.618880200000002, - 2.617580200000002, - 2.7630004000000015, - 2.7973404000000013, - 2.861380500000001, - 2.8813905000000006, - 2.9874409, - 2.8488306, - 2.8721004999999997, - 3.016260799999999, - 3.0274505999999985, - 3.063020599999999, - 3.034200599999999, - 3.0522906999999986, - 3.057440699999999, - 3.057440699999999, - 3.057440699999999, - 3.057440699999999, - 3.0490206999999994, - 3.0490206999999994, - 3.0490206999999994, - 3.0490206999999994, - 3.0490206999999994, - 3.0490206999999994, - 3.0362106999999994, - 3.0362106999999994, - 3.0266006999999995, - 3.0266006999999995, - 3.0266006999999995, - 3.0266006999999995, - 2.9918606999999997, - 2.9918606999999997, - 2.9918606999999997, - 2.9918606999999997, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003, - 2.9486106000000003 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 12164
prediction: 1.12
AveOccup: 0.6923076923076923

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.12
AveOccup: 0.8785096153846154

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.12
AveOccup: 1.0647115384615384

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.126
AveOccup: 1.2509134615384614

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.137
AveOccup: 1.4371153846153846

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.388
AveOccup: 1.6233173076923078

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.42
AveOccup: 1.8095192307692307

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.41
AveOccup: 1.995721153846154

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.394
AveOccup: 2.181923076923077

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.235
AveOccup: 2.368125

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.138
AveOccup: 2.554326923076923

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.165
AveOccup: 2.740528846153846

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.165
AveOccup: 2.926730769230769

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.101
AveOccup: 3.112932692307692

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.067
AveOccup: 3.2991346153846157

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.068
AveOccup: 3.4853365384615387

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.062
AveOccup: 3.6715384615384616

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.061
AveOccup: 3.8577403846153846

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.052
AveOccup: 4.043942307692308

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.052
AveOccup: 4.2301442307692305

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.057
AveOccup: 4.4163461538461535

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.069
AveOccup: 4.602548076923076

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.068
AveOccup: 4.78875

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.068
AveOccup: 4.974951923076923

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.068
AveOccup: 5.161153846153846

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.068
AveOccup: 5.347355769230769

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.113
AveOccup: 5.533557692307692

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.149
AveOccup: 5.719759615384615

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.218
AveOccup: 5.905961538461539

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 6.092163461538462

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 6.278365384615385

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 6.464567307692308

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 6.650769230769231

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 6.836971153846154

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 7.023173076923077

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 7.209375

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 7.395576923076923

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 7.5817788461538465

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 7.767980769230769

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 7.954182692307692

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 8.140384615384615

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 8.326586538461537

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 8.512788461538461

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 8.698990384615383

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 8.885192307692307

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 9.07139423076923

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 9.257596153846153

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 9.443798076923075

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 9.629999999999999

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 9.816201923076923

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 10.002403846153845

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 10.188605769230769

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 10.37480769230769

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 10.561009615384615

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 10.747211538461537

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 10.93341346153846

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 11.119615384615384

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 11.305817307692307

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 11.49201923076923

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 11.678221153846152

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 11.864423076923076

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 12.050624999999998

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 12.236826923076922

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 12.423028846153844

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 12.609230769230768

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 12.795432692307692

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 12.981634615384614

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 13.167836538461538

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 13.35403846153846

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 13.540240384615384

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 13.726442307692306

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 13.91264423076923

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 14.098846153846152

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 14.285048076923076

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 14.47125

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 14.657451923076922

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 14.843653846153845

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 15.029855769230767

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 15.216057692307691

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 15.402259615384613

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 15.588461538461537

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 15.774663461538461

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 15.960865384615383

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 16.147067307692307

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 16.33326923076923

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 16.519471153846155

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 16.705673076923077

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 16.891875

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 17.078076923076924

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 17.264278846153847

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 17.45048076923077

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 17.636682692307694

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 17.822884615384616

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 18.00908653846154

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 18.19528846153846

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 18.381490384615386

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 18.567692307692308

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 18.75389423076923

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 18.940096153846156

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 19.126298076923078

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ], - [ - "
id: 12164
prediction: 1.321
AveOccup: 19.3125

MedInc: 2.5221
HouseAge: 7.0
AveRooms: 5.098591549295775
AveBedrms: 1.087323943661972
Population: 931.0
Latitude: 33.74
Longitude: -117.22
_original_yhat_: 1.1355199999999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.12022, - 1.12022, - 1.12022, - 1.12613, - 1.1370799999999999, - 1.38812, - 1.4198500000000005, - 1.4102400000000006, - 1.3935800000000007, - 1.2352399999999994, - 1.137999999999999, - 1.1646299999999992, - 1.1652899999999997, - 1.1008799999999999, - 1.0666000000000002, - 1.0681700000000003, - 1.06168, - 1.06071, - 1.0515500000000002, - 1.05189, - 1.05725, - 1.0691600000000003, - 1.0679800000000004, - 1.0679800000000004, - 1.0679800000000004, - 1.0679800000000004, - 1.1128600000000004, - 1.14894, - 1.21839, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998, - 1.3214899999999998 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 6936
prediction: 2.442
AveOccup: 0.6923076923076923

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.442
AveOccup: 0.8785096153846154

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.442
AveOccup: 1.0647115384615384

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.442
AveOccup: 1.2509134615384614

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.492
AveOccup: 1.4371153846153846

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.576
AveOccup: 1.6233173076923078

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.555
AveOccup: 1.8095192307692307

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.269
AveOccup: 1.995721153846154

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.136
AveOccup: 2.181923076923077

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.054
AveOccup: 2.368125

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.081
AveOccup: 2.554326923076923

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 2.054
AveOccup: 2.740528846153846

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.948
AveOccup: 2.926730769230769

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.758
AveOccup: 3.112932692307692

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.674
AveOccup: 3.2991346153846157

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.636
AveOccup: 3.4853365384615387

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.621
AveOccup: 3.6715384615384616

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.606
AveOccup: 3.8577403846153846

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.6
AveOccup: 4.043942307692308

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.591
AveOccup: 4.2301442307692305

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.566
AveOccup: 4.4163461538461535

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.561
AveOccup: 4.602548076923076

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.549
AveOccup: 4.78875

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.55
AveOccup: 4.974951923076923

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.533
AveOccup: 5.161153846153846

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.521
AveOccup: 5.347355769230769

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.542
AveOccup: 5.533557692307692

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.562
AveOccup: 5.719759615384615

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.715
AveOccup: 5.905961538461539

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.856
AveOccup: 6.092163461538462

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.869
AveOccup: 6.278365384615385

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.868
AveOccup: 6.464567307692308

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.871
AveOccup: 6.650769230769231

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.873
AveOccup: 6.836971153846154

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.873
AveOccup: 7.023173076923077

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.873
AveOccup: 7.209375

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.873
AveOccup: 7.395576923076923

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 7.5817788461538465

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 7.767980769230769

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 7.954182692307692

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 8.140384615384615

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 8.326586538461537

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 8.512788461538461

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 8.698990384615383

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 8.885192307692307

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 9.07139423076923

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 9.257596153846153

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 9.443798076923075

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 9.629999999999999

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 9.816201923076923

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 10.002403846153845

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 10.188605769230769

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 10.37480769230769

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 10.561009615384615

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 10.747211538461537

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 10.93341346153846

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 11.119615384615384

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 11.305817307692307

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 11.49201923076923

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 11.678221153846152

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 11.864423076923076

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 12.050624999999998

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 12.236826923076922

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 12.423028846153844

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 12.609230769230768

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 12.795432692307692

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 12.981634615384614

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 13.167836538461538

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 13.35403846153846

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 13.540240384615384

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 13.726442307692306

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 13.91264423076923

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 14.098846153846152

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 14.285048076923076

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 14.47125

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 14.657451923076922

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 14.843653846153845

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 15.029855769230767

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 15.216057692307691

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 15.402259615384613

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 15.588461538461537

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 15.774663461538461

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 15.960865384615383

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 16.147067307692307

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 16.33326923076923

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 16.519471153846155

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 16.705673076923077

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 16.891875

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 17.078076923076924

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 17.264278846153847

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 17.45048076923077

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 17.636682692307694

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 17.822884615384616

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 18.00908653846154

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 18.19528846153846

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 18.381490384615386

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 18.567692307692308

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 18.75389423076923

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 18.940096153846156

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 19.126298076923078

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ], - [ - "
id: 6936
prediction: 1.875
AveOccup: 19.3125

MedInc: 3.045
HouseAge: 36.0
AveRooms: 5.140298507462687
AveBedrms: 1.0537313432835822
Population: 1174.0
Latitude: 34.0
Longitude: -118.09
_original_yhat_: 1.6194199999999983
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.4422904000000005, - 2.4422904000000005, - 2.4422904000000005, - 2.4422904000000005, - 2.4915205000000005, - 2.575800300000001, - 2.5547203000000005, - 2.2685101000000003, - 2.1364300999999997, - 2.053739999999999, - 2.080909999999998, - 2.0536499999999984, - 1.9478599999999984, - 1.7582899999999986, - 1.6743299999999983, - 1.6364899999999982, - 1.6205899999999989, - 1.605709999999999, - 1.600269999999999, - 1.591219999999999, - 1.565669999999999, - 1.5606699999999991, - 1.5493499999999991, - 1.5501299999999991, - 1.5334099999999995, - 1.5212299999999994, - 1.5421899999999997, - 1.5617799999999997, - 1.7146900000000003, - 1.85625, - 1.8685399999999999, - 1.86756, - 1.87072, - 1.87324, - 1.87324, - 1.87324, - 1.87324, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002, - 1.8754300000000002 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 11404
prediction: 3.495
AveOccup: 0.6923076923076923

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.495
AveOccup: 0.8785096153846154

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.495
AveOccup: 1.0647115384615384

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.495
AveOccup: 1.2509134615384614

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.495
AveOccup: 1.4371153846153846

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.5
AveOccup: 1.6233173076923078

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.493
AveOccup: 1.8095192307692307

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.437
AveOccup: 1.995721153846154

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.357
AveOccup: 2.181923076923077

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.125
AveOccup: 2.368125

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 3.049
AveOccup: 2.554326923076923

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.869
AveOccup: 2.740528846153846

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.594
AveOccup: 2.926730769230769

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.631
AveOccup: 3.112932692307692

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.558
AveOccup: 3.2991346153846157

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.437
AveOccup: 3.4853365384615387

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.46
AveOccup: 3.6715384615384616

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.442
AveOccup: 3.8577403846153846

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.43
AveOccup: 4.043942307692308

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.414
AveOccup: 4.2301442307692305

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.416
AveOccup: 4.4163461538461535

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.416
AveOccup: 4.602548076923076

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.446
AveOccup: 4.78875

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 4.974951923076923

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 5.161153846153846

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 5.347355769230769

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 5.533557692307692

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 5.719759615384615

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 5.905961538461539

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 6.092163461538462

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 6.278365384615385

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 6.464567307692308

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 6.650769230769231

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 6.836971153846154

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 7.023173076923077

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 7.209375

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 7.395576923076923

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 7.5817788461538465

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 7.767980769230769

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 7.954182692307692

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 8.140384615384615

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 8.326586538461537

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 8.512788461538461

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 8.698990384615383

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 8.885192307692307

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 9.07139423076923

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 9.257596153846153

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 9.443798076923075

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 9.629999999999999

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 9.816201923076923

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 10.002403846153845

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 10.188605769230769

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 10.37480769230769

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 10.561009615384615

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 10.747211538461537

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 10.93341346153846

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 11.119615384615384

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 11.305817307692307

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 11.49201923076923

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 11.678221153846152

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 11.864423076923076

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 12.050624999999998

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 12.236826923076922

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 12.423028846153844

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 12.609230769230768

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 12.795432692307692

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 12.981634615384614

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 13.167836538461538

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 13.35403846153846

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 13.540240384615384

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 13.726442307692306

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 13.91264423076923

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 14.098846153846152

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 14.285048076923076

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 14.47125

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 14.657451923076922

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 14.843653846153845

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 15.029855769230767

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 15.216057692307691

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 15.402259615384613

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 15.588461538461537

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 15.774663461538461

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 15.960865384615383

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 16.147067307692307

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 16.33326923076923

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 16.519471153846155

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 16.705673076923077

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 16.891875

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 17.078076923076924

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 17.264278846153847

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 17.45048076923077

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 17.636682692307694

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 17.822884615384616

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 18.00908653846154

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 18.19528846153846

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 18.381490384615386

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 18.567692307692308

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 18.75389423076923

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 18.940096153846156

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 19.126298076923078

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ], - [ - "
id: 11404
prediction: 2.57
AveOccup: 19.3125

MedInc: 5.5501
HouseAge: 17.0
AveRooms: 6.662650602409639
AveBedrms: 1.0080321285140563
Population: 1520.0
Latitude: 33.72
Longitude: -117.92
_original_yhat_: 2.667339999999998
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.495392599999998, - 3.495392599999998, - 3.495392599999998, - 3.495392599999998, - 3.495392599999998, - 3.4998524999999985, - 3.493352499999998, - 3.4365318999999976, - 3.3574317999999987, - 3.1253607999999984, - 3.0489203999999996, - 2.868600199999999, - 2.593809999999999, - 2.6306899999999978, - 2.557899999999999, - 2.4368700000000003, - 2.459939999999999, - 2.442049999999999, - 2.4298699999999993, - 2.4142599999999996, - 2.4160199999999996, - 2.4160199999999996, - 2.446210099999999, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995, - 2.5696704999999995 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 1922
prediction: 1.325
AveOccup: 0.6923076923076923

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.325
AveOccup: 0.8785096153846154

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.326
AveOccup: 1.0647115384615384

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.32
AveOccup: 1.2509134615384614

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.283
AveOccup: 1.4371153846153846

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.327
AveOccup: 1.6233173076923078

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.366
AveOccup: 1.8095192307692307

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.344
AveOccup: 1.995721153846154

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.267
AveOccup: 2.181923076923077

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.244
AveOccup: 2.368125

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.202
AveOccup: 2.554326923076923

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.19
AveOccup: 2.740528846153846

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.239
AveOccup: 2.926730769230769

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.259
AveOccup: 3.112932692307692

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.271
AveOccup: 3.2991346153846157

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.247
AveOccup: 3.4853365384615387

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.226
AveOccup: 3.6715384615384616

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.241
AveOccup: 3.8577403846153846

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.235
AveOccup: 4.043942307692308

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.233
AveOccup: 4.2301442307692305

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.233
AveOccup: 4.4163461538461535

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.233
AveOccup: 4.602548076923076

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.235
AveOccup: 4.78875

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.262
AveOccup: 4.974951923076923

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.291
AveOccup: 5.161153846153846

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.291
AveOccup: 5.347355769230769

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.297
AveOccup: 5.533557692307692

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.297
AveOccup: 5.719759615384615

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.297
AveOccup: 5.905961538461539

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 6.092163461538462

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 6.278365384615385

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 6.464567307692308

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 6.650769230769231

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 6.836971153846154

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 7.023173076923077

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 7.209375

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 7.395576923076923

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 7.5817788461538465

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 7.767980769230769

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 7.954182692307692

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 8.140384615384615

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 8.326586538461537

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 8.512788461538461

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 8.698990384615383

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 8.885192307692307

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 9.07139423076923

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 9.257596153846153

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 9.443798076923075

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 9.629999999999999

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 9.816201923076923

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 10.002403846153845

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 10.188605769230769

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 10.37480769230769

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 10.561009615384615

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 10.747211538461537

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 10.93341346153846

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 11.119615384615384

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 11.305817307692307

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 11.49201923076923

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 11.678221153846152

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 11.864423076923076

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 12.050624999999998

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 12.236826923076922

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 12.423028846153844

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 12.609230769230768

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 12.795432692307692

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 12.981634615384614

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 13.167836538461538

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 13.35403846153846

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 13.540240384615384

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 13.726442307692306

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 13.91264423076923

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 14.098846153846152

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 14.285048076923076

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 14.47125

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 14.657451923076922

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 14.843653846153845

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 15.029855769230767

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 15.216057692307691

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 15.402259615384613

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 15.588461538461537

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 15.774663461538461

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 15.960865384615383

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 16.147067307692307

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 16.33326923076923

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 16.519471153846155

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 16.705673076923077

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 16.891875

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 17.078076923076924

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 17.264278846153847

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 17.45048076923077

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 17.636682692307694

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 17.822884615384616

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 18.00908653846154

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 18.19528846153846

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 18.381490384615386

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 18.567692307692308

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 18.75389423076923

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 18.940096153846156

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 19.126298076923078

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ], - [ - "
id: 1922
prediction: 1.415
AveOccup: 19.3125

MedInc: 2.9444
HouseAge: 17.0
AveRooms: 5.365671641791045
AveBedrms: 1.208955223880597
Population: 675.0
Latitude: 38.89
Longitude: -120.81
_original_yhat_: 1.2170399999999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.3250201, - 1.3250201, - 1.3256700999999997, - 1.3199101, - 1.2825100999999999, - 1.3274100999999996, - 1.3661800999999998, - 1.3440500999999996, - 1.2673001000000002, - 1.2436099999999994, - 1.2018899999999995, - 1.1898499999999996, - 1.23861, - 1.2585900000000008, - 1.2713400000000008, - 1.2470800000000006, - 1.2255100000000008, - 1.2405400000000004, - 1.2352600000000005, - 1.2333200000000004, - 1.2333200000000004, - 1.2333200000000004, - 1.2351900000000002, - 1.26232, - 1.2911900000000003, - 1.2911900000000003, - 1.2968800000000003, - 1.2968800000000003, - 1.2968800000000003, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522, - 1.41522 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 6943
prediction: 3.816
AveOccup: 0.6923076923076923

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.816
AveOccup: 0.8785096153846154

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.816
AveOccup: 1.0647115384615384

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.816
AveOccup: 1.2509134615384614

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.825
AveOccup: 1.4371153846153846

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.761
AveOccup: 1.6233173076923078

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 3.638
AveOccup: 1.8095192307692307

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.899
AveOccup: 1.995721153846154

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.493
AveOccup: 2.181923076923077

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.236
AveOccup: 2.368125

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.187
AveOccup: 2.554326923076923

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 2.076
AveOccup: 2.740528846153846

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.87
AveOccup: 2.926730769230769

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.716
AveOccup: 3.112932692307692

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.662
AveOccup: 3.2991346153846157

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.654
AveOccup: 3.4853365384615387

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.623
AveOccup: 3.6715384615384616

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.6
AveOccup: 3.8577403846153846

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.601
AveOccup: 4.043942307692308

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.572
AveOccup: 4.2301442307692305

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.552
AveOccup: 4.4163461538461535

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.493
AveOccup: 4.602548076923076

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.476
AveOccup: 4.78875

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.475
AveOccup: 4.974951923076923

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.466
AveOccup: 5.161153846153846

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.464
AveOccup: 5.347355769230769

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.455
AveOccup: 5.533557692307692

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.451
AveOccup: 5.719759615384615

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.444
AveOccup: 5.905961538461539

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.451
AveOccup: 6.092163461538462

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.451
AveOccup: 6.278365384615385

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.451
AveOccup: 6.464567307692308

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.451
AveOccup: 6.650769230769231

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.451
AveOccup: 6.836971153846154

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.456
AveOccup: 7.023173076923077

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.456
AveOccup: 7.209375

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 7.395576923076923

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 7.5817788461538465

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 7.767980769230769

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 7.954182692307692

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 8.140384615384615

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 8.326586538461537

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 8.512788461538461

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 8.698990384615383

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 8.885192307692307

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 9.07139423076923

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 9.257596153846153

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 9.443798076923075

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 9.629999999999999

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 9.816201923076923

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 10.002403846153845

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 10.188605769230769

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 10.37480769230769

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 10.561009615384615

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 10.747211538461537

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 10.93341346153846

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 11.119615384615384

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 11.305817307692307

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 11.49201923076923

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 11.678221153846152

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 11.864423076923076

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 12.050624999999998

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 12.236826923076922

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 12.423028846153844

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 12.609230769230768

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 12.795432692307692

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 12.981634615384614

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 13.167836538461538

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 13.35403846153846

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 13.540240384615384

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 13.726442307692306

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.465
AveOccup: 13.91264423076923

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.438
AveOccup: 14.098846153846152

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 14.285048076923076

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 14.47125

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 14.657451923076922

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 14.843653846153845

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 15.029855769230767

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 15.216057692307691

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 15.402259615384613

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 15.588461538461537

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 15.774663461538461

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 15.960865384615383

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 16.147067307692307

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 16.33326923076923

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 16.519471153846155

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 16.705673076923077

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 16.891875

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 17.078076923076924

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 17.264278846153847

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 17.45048076923077

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 17.636682692307694

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 17.822884615384616

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 18.00908653846154

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 18.19528846153846

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 18.381490384615386

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 18.567692307692308

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.428
AveOccup: 18.75389423076923

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.371
AveOccup: 18.940096153846156

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.371
AveOccup: 19.126298076923078

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ], - [ - "
id: 6943
prediction: 1.371
AveOccup: 19.3125

MedInc: 3.6033
HouseAge: 39.0
AveRooms: 4.5701754385964914
AveBedrms: 0.9692982456140351
Population: 863.0
Latitude: 33.98
Longitude: -118.08
_original_yhat_: 1.5892700000000017
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.8164311999999994, - 3.8164311999999994, - 3.8164311999999994, - 3.8164311999999994, - 3.8246211999999997, - 3.7606007999999997, - 3.6375709, - 2.899370099999999, - 2.4930099999999986, - 2.2361, - 2.18727, - 2.075960099999999, - 1.8700699999999992, - 1.71559, - 1.6621299999999997, - 1.6542500000000002, - 1.622740000000001, - 1.600340000000001, - 1.6008700000000005, - 1.5722700000000003, - 1.5520699999999994, - 1.4925299999999992, - 1.475589999999999, - 1.4753699999999992, - 1.4657099999999992, - 1.4635699999999991, - 1.4554099999999992, - 1.450709999999999, - 1.4442499999999994, - 1.450779999999999, - 1.451019999999999, - 1.451019999999999, - 1.451019999999999, - 1.451019999999999, - 1.4556199999999992, - 1.4556199999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4654799999999992, - 1.4383099999999993, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.4276099999999994, - 1.3708299999999993, - 1.3708299999999993, - 1.3708299999999993 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 13806
prediction: 1.012
AveOccup: 0.6923076923076923

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.012
AveOccup: 0.8785096153846154

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.012
AveOccup: 1.0647115384615384

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.012
AveOccup: 1.2509134615384614

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.996
AveOccup: 1.4371153846153846

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.995
AveOccup: 1.6233173076923078

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 1.003
AveOccup: 1.8095192307692307

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.964
AveOccup: 1.995721153846154

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.846
AveOccup: 2.181923076923077

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.737
AveOccup: 2.368125

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.643
AveOccup: 2.554326923076923

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.627
AveOccup: 2.740528846153846

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.633
AveOccup: 2.926730769230769

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.637
AveOccup: 3.112932692307692

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.672
AveOccup: 3.2991346153846157

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.673
AveOccup: 3.4853365384615387

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.676
AveOccup: 3.6715384615384616

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.664
AveOccup: 3.8577403846153846

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.662
AveOccup: 4.043942307692308

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.662
AveOccup: 4.2301442307692305

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.662
AveOccup: 4.4163461538461535

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.662
AveOccup: 4.602548076923076

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.662
AveOccup: 4.78875

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.669
AveOccup: 4.974951923076923

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.669
AveOccup: 5.161153846153846

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.669
AveOccup: 5.347355769230769

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.67
AveOccup: 5.533557692307692

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.701
AveOccup: 5.719759615384615

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 5.905961538461539

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 6.092163461538462

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 6.278365384615385

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 6.464567307692308

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 6.650769230769231

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 6.836971153846154

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 7.023173076923077

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 7.209375

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 7.395576923076923

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 7.5817788461538465

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 7.767980769230769

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 7.954182692307692

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 8.140384615384615

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 8.326586538461537

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 8.512788461538461

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 8.698990384615383

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 8.885192307692307

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 9.07139423076923

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 9.257596153846153

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 9.443798076923075

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 9.629999999999999

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 9.816201923076923

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 10.002403846153845

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 10.188605769230769

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 10.37480769230769

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 10.561009615384615

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 10.747211538461537

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 10.93341346153846

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 11.119615384615384

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 11.305817307692307

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 11.49201923076923

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 11.678221153846152

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 11.864423076923076

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 12.050624999999998

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 12.236826923076922

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 12.423028846153844

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 12.609230769230768

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 12.795432692307692

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 12.981634615384614

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 13.167836538461538

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 13.35403846153846

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 13.540240384615384

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 13.726442307692306

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 13.91264423076923

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 14.098846153846152

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 14.285048076923076

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 14.47125

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 14.657451923076922

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 14.843653846153845

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 15.029855769230767

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 15.216057692307691

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 15.402259615384613

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 15.588461538461537

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 15.774663461538461

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 15.960865384615383

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 16.147067307692307

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 16.33326923076923

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 16.519471153846155

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 16.705673076923077

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 16.891875

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 17.078076923076924

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 17.264278846153847

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 17.45048076923077

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 17.636682692307694

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 17.822884615384616

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 18.00908653846154

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 18.19528846153846

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 18.381490384615386

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 18.567692307692308

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 18.75389423076923

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 18.940096153846156

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 19.126298076923078

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ], - [ - "
id: 13806
prediction: 0.709
AveOccup: 19.3125

MedInc: 2.3077
HouseAge: 36.0
AveRooms: 4.432926829268292
AveBedrms: 1.1280487804878048
Population: 1404.0
Latitude: 34.9
Longitude: -117.01
_original_yhat_: 0.6245399999999998
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.0116800000000006, - 1.0116800000000006, - 1.0116800000000006, - 1.0116800000000006, - 0.9956100000000007, - 0.9951200000000004, - 1.0032600000000005, - 0.9643300000000007, - 0.8456700000000005, - 0.7369500000000002, - 0.6432199999999999, - 0.6265499999999998, - 0.6328499999999998, - 0.6372299999999997, - 0.6724300000000001, - 0.6734600000000002, - 0.6756700000000001, - 0.6640600000000001, - 0.6621800000000002, - 0.6621800000000002, - 0.6621800000000002, - 0.6621800000000002, - 0.6621800000000002, - 0.6691300000000001, - 0.6691300000000001, - 0.6691300000000001, - 0.6699200000000002, - 0.7007200000000001, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003, - 0.7091300000000003 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 9592
prediction: 2.302
AveOccup: 0.6923076923076923

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.302
AveOccup: 0.8785096153846154

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.302
AveOccup: 1.0647115384615384

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.302
AveOccup: 1.2509134615384614

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.276
AveOccup: 1.4371153846153846

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.28
AveOccup: 1.6233173076923078

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.404
AveOccup: 1.8095192307692307

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.399
AveOccup: 1.995721153846154

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 2.008
AveOccup: 2.181923076923077

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.714
AveOccup: 2.368125

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.351
AveOccup: 2.554326923076923

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.27
AveOccup: 2.740528846153846

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.167
AveOccup: 2.926730769230769

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.124
AveOccup: 3.112932692307692

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.122
AveOccup: 3.2991346153846157

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.117
AveOccup: 3.4853365384615387

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.125
AveOccup: 3.6715384615384616

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.163
AveOccup: 3.8577403846153846

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 4.043942307692308

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 4.2301442307692305

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 4.4163461538461535

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 4.602548076923076

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 4.78875

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 4.974951923076923

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 5.161153846153846

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 5.347355769230769

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 5.533557692307692

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 5.719759615384615

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 5.905961538461539

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 6.092163461538462

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 6.278365384615385

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 6.464567307692308

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 6.650769230769231

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 6.836971153846154

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 7.023173076923077

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 7.209375

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 7.395576923076923

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 7.5817788461538465

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 7.767980769230769

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 7.954182692307692

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 8.140384615384615

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 8.326586538461537

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 8.512788461538461

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 8.698990384615383

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 8.885192307692307

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 9.07139423076923

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 9.257596153846153

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 9.443798076923075

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 9.629999999999999

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 9.816201923076923

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 10.002403846153845

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 10.188605769230769

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 10.37480769230769

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 10.561009615384615

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 10.747211538461537

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 10.93341346153846

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 11.119615384615384

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 11.305817307692307

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 11.49201923076923

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 11.678221153846152

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 11.864423076923076

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 12.050624999999998

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 12.236826923076922

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 12.423028846153844

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 12.609230769230768

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 12.795432692307692

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 12.981634615384614

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 13.167836538461538

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 13.35403846153846

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 13.540240384615384

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 13.726442307692306

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 13.91264423076923

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 14.098846153846152

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 14.285048076923076

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 14.47125

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 14.657451923076922

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 14.843653846153845

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 15.029855769230767

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 15.216057692307691

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 15.402259615384613

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 15.588461538461537

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 15.774663461538461

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 15.960865384615383

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 16.147067307692307

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 16.33326923076923

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 16.519471153846155

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 16.705673076923077

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 16.891875

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 17.078076923076924

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 17.264278846153847

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 17.45048076923077

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 17.636682692307694

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 17.822884615384616

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 18.00908653846154

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 18.19528846153846

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 18.381490384615386

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 18.567692307692308

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 18.75389423076923

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 18.940096153846156

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 19.126298076923078

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ], - [ - "
id: 9592
prediction: 1.164
AveOccup: 19.3125

MedInc: 3.6471
HouseAge: 19.0
AveRooms: 6.479338842975206
AveBedrms: 0.9628099173553719
Population: 1631.0
Latitude: 37.32
Longitude: -120.45
_original_yhat_: 1.1174999999999995
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.3021905000000005, - 2.3021905000000005, - 2.3021905000000005, - 2.3021905000000005, - 2.2760904000000006, - 2.2804302000000005, - 2.4044801, - 2.399330099999999, - 2.0083299999999995, - 1.7136200000000006, - 1.3513899999999999, - 1.26959, - 1.1670099999999999, - 1.1240699999999995, - 1.1221199999999996, - 1.1170299999999995, - 1.1253299999999997, - 1.1629599999999995, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997, - 1.1636199999999997 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 6539
prediction: 2.166
AveOccup: 0.6923076923076923

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.166
AveOccup: 0.8785096153846154

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.166
AveOccup: 1.0647115384615384

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.166
AveOccup: 1.2509134615384614

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.216
AveOccup: 1.4371153846153846

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.354
AveOccup: 1.6233173076923078

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.329
AveOccup: 1.8095192307692307

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.147
AveOccup: 1.995721153846154

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.068
AveOccup: 2.181923076923077

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.086
AveOccup: 2.368125

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.103
AveOccup: 2.554326923076923

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 2.065
AveOccup: 2.740528846153846

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.964
AveOccup: 2.926730769230769

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.784
AveOccup: 3.112932692307692

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.72
AveOccup: 3.2991346153846157

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.688
AveOccup: 3.4853365384615387

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.646
AveOccup: 3.6715384615384616

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.617
AveOccup: 3.8577403846153846

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.585
AveOccup: 4.043942307692308

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.578
AveOccup: 4.2301442307692305

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.567
AveOccup: 4.4163461538461535

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.553
AveOccup: 4.602548076923076

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.539
AveOccup: 4.78875

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.542
AveOccup: 4.974951923076923

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.531
AveOccup: 5.161153846153846

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.525
AveOccup: 5.347355769230769

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.549
AveOccup: 5.533557692307692

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.562
AveOccup: 5.719759615384615

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.708
AveOccup: 5.905961538461539

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.849
AveOccup: 6.092163461538462

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.856
AveOccup: 6.278365384615385

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.856
AveOccup: 6.464567307692308

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.859
AveOccup: 6.650769230769231

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.861
AveOccup: 6.836971153846154

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.861
AveOccup: 7.023173076923077

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.861
AveOccup: 7.209375

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.861
AveOccup: 7.395576923076923

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 7.5817788461538465

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 7.767980769230769

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 7.954182692307692

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 8.140384615384615

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 8.326586538461537

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 8.512788461538461

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 8.698990384615383

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 8.885192307692307

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 9.07139423076923

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 9.257596153846153

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 9.443798076923075

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 9.629999999999999

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 9.816201923076923

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 10.002403846153845

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 10.188605769230769

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 10.37480769230769

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 10.561009615384615

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 10.747211538461537

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 10.93341346153846

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 11.119615384615384

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 11.305817307692307

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 11.49201923076923

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 11.678221153846152

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 11.864423076923076

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 12.050624999999998

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 12.236826923076922

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 12.423028846153844

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 12.609230769230768

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 12.795432692307692

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 12.981634615384614

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 13.167836538461538

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 13.35403846153846

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 13.540240384615384

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 13.726442307692306

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 13.91264423076923

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 14.098846153846152

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 14.285048076923076

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 14.47125

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 14.657451923076922

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 14.843653846153845

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 15.029855769230767

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 15.216057692307691

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 15.402259615384613

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 15.588461538461537

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 15.774663461538461

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 15.960865384615383

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 16.147067307692307

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 16.33326923076923

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 16.519471153846155

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 16.705673076923077

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 16.891875

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 17.078076923076924

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 17.264278846153847

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 17.45048076923077

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 17.636682692307694

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 17.822884615384616

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 18.00908653846154

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 18.19528846153846

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 18.381490384615386

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 18.567692307692308

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 18.75389423076923

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 18.940096153846156

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 19.126298076923078

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ], - [ - "
id: 6539
prediction: 1.865
AveOccup: 19.3125

MedInc: 3.0
HouseAge: 35.0
AveRooms: 5.040697674418604
AveBedrms: 1.055232558139535
Population: 1527.0
Latitude: 34.04
Longitude: -118.04
_original_yhat_: 1.570869999999998
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.1662000999999993, - 2.1662000999999993, - 2.1662000999999993, - 2.1662000999999993, - 2.2161902, - 2.3535900999999995, - 2.3286001, - 2.1474599999999997, - 2.067889999999999, - 2.0861399999999994, - 2.1029799999999987, - 2.064959999999999, - 1.9644799999999991, - 1.784149999999999, - 1.7196699999999987, - 1.6879999999999986, - 1.6455499999999987, - 1.6172999999999984, - 1.5848499999999988, - 1.5783499999999986, - 1.567049999999998, - 1.5529999999999982, - 1.5390499999999983, - 1.5416399999999981, - 1.5310299999999983, - 1.5250499999999982, - 1.5490899999999985, - 1.5622899999999984, - 1.7076899999999986, - 1.8491099999999991, - 1.856039999999999, - 1.856039999999999, - 1.8586999999999991, - 1.8613599999999995, - 1.8613599999999995, - 1.8613599999999995, - 1.8613599999999995, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994, - 1.8646399999999994 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 13228
prediction: 3.113
AveOccup: 0.6923076923076923

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.113
AveOccup: 0.8785096153846154

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.113
AveOccup: 1.0647115384615384

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.113
AveOccup: 1.2509134615384614

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.119
AveOccup: 1.4371153846153846

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.189
AveOccup: 1.6233173076923078

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 3.134
AveOccup: 1.8095192307692307

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.759
AveOccup: 1.995721153846154

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.525
AveOccup: 2.181923076923077

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.12
AveOccup: 2.368125

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.073
AveOccup: 2.554326923076923

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 2.041
AveOccup: 2.740528846153846

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.526
AveOccup: 2.926730769230769

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.494
AveOccup: 3.112932692307692

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.486
AveOccup: 3.2991346153846157

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.464
AveOccup: 3.4853365384615387

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.468
AveOccup: 3.6715384615384616

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.451
AveOccup: 3.8577403846153846

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.432
AveOccup: 4.043942307692308

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.424
AveOccup: 4.2301442307692305

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.423
AveOccup: 4.4163461538461535

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.424
AveOccup: 4.602548076923076

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.424
AveOccup: 4.78875

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.417
AveOccup: 4.974951923076923

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.458
AveOccup: 5.161153846153846

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.476
AveOccup: 5.347355769230769

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.476
AveOccup: 5.533557692307692

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.463
AveOccup: 5.719759615384615

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.463
AveOccup: 5.905961538461539

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.46
AveOccup: 6.092163461538462

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.46
AveOccup: 6.278365384615385

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.46
AveOccup: 6.464567307692308

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.46
AveOccup: 6.650769230769231

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.46
AveOccup: 6.836971153846154

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.46
AveOccup: 7.023173076923077

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 7.209375

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 7.395576923076923

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 7.5817788461538465

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 7.767980769230769

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 7.954182692307692

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 8.140384615384615

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 8.326586538461537

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 8.512788461538461

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 8.698990384615383

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 8.885192307692307

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 9.07139423076923

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 9.257596153846153

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 9.443798076923075

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 9.629999999999999

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 9.816201923076923

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 10.002403846153845

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 10.188605769230769

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 10.37480769230769

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 10.561009615384615

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 10.747211538461537

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 10.93341346153846

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 11.119615384615384

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 11.305817307692307

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 11.49201923076923

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 11.678221153846152

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 11.864423076923076

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 12.050624999999998

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 12.236826923076922

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 12.423028846153844

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 12.609230769230768

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 12.795432692307692

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 12.981634615384614

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 13.167836538461538

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 13.35403846153846

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 13.540240384615384

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 13.726442307692306

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 13.91264423076923

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 14.098846153846152

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 14.285048076923076

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 14.47125

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 14.657451923076922

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 14.843653846153845

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 15.029855769230767

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 15.216057692307691

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 15.402259615384613

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 15.588461538461537

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 15.774663461538461

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 15.960865384615383

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 16.147067307692307

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 16.33326923076923

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 16.519471153846155

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 16.705673076923077

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 16.891875

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 17.078076923076924

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 17.264278846153847

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 17.45048076923077

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 17.636682692307694

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 17.822884615384616

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 18.00908653846154

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 18.19528846153846

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 18.381490384615386

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 18.567692307692308

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.507
AveOccup: 18.75389423076923

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.5
AveOccup: 18.940096153846156

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.5
AveOccup: 19.126298076923078

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ], - [ - "
id: 13228
prediction: 1.5
AveOccup: 19.3125

MedInc: 4.1719
HouseAge: 24.0
AveRooms: 5.063725490196078
AveBedrms: 0.9264705882352942
Population: 486.0
Latitude: 34.15
Longitude: -117.68
_original_yhat_: 2.1184199999999986
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.1128009999999993, - 3.1128009999999993, - 3.1128009999999993, - 3.1128009999999993, - 3.1186309999999993, - 3.189001099999999, - 3.1338109, - 2.7590403999999995, - 2.5251701, - 2.1196199999999985, - 2.0729799999999994, - 2.0410999999999997, - 1.5261101000000001, - 1.4941201000000004, - 1.4856001000000003, - 1.4644801000000003, - 1.4683901000000004, - 1.4512501, - 1.4318600999999997, - 1.4242801, - 1.4234801, - 1.4238101, - 1.4238101, - 1.4174401, - 1.4578001, - 1.4760201000000002, - 1.4760201000000002, - 1.4625901000000001, - 1.4625901000000001, - 1.4597301000000003, - 1.4597301000000003, - 1.4597301000000003, - 1.4597301000000003, - 1.4597301000000003, - 1.4597301000000003, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5066101, - 1.5002301, - 1.5002301, - 1.5002301 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 1791
prediction: 1.77
AveOccup: 0.6923076923076923

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.77
AveOccup: 0.8785096153846154

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.77
AveOccup: 1.0647115384615384

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.77
AveOccup: 1.2509134615384614

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.758
AveOccup: 1.4371153846153846

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.712
AveOccup: 1.6233173076923078

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.663
AveOccup: 1.8095192307692307

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.611
AveOccup: 1.995721153846154

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.098
AveOccup: 2.181923076923077

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.698
AveOccup: 2.368125

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.87
AveOccup: 2.554326923076923

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.944
AveOccup: 2.740528846153846

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 0.988
AveOccup: 2.926730769230769

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.024
AveOccup: 3.112932692307692

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.034
AveOccup: 3.2991346153846157

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.028
AveOccup: 3.4853365384615387

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.018
AveOccup: 3.6715384615384616

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.007
AveOccup: 3.8577403846153846

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.031
AveOccup: 4.043942307692308

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.098
AveOccup: 4.2301442307692305

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.109
AveOccup: 4.4163461538461535

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.182
AveOccup: 4.602548076923076

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.247
AveOccup: 4.78875

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.247
AveOccup: 4.974951923076923

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.243
AveOccup: 5.161153846153846

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.243
AveOccup: 5.347355769230769

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.243
AveOccup: 5.533557692307692

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.243
AveOccup: 5.719759615384615

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.243
AveOccup: 5.905961538461539

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.243
AveOccup: 6.092163461538462

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.252
AveOccup: 6.278365384615385

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.252
AveOccup: 6.464567307692308

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 6.650769230769231

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 6.836971153846154

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 7.023173076923077

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 7.209375

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 7.395576923076923

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 7.5817788461538465

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 7.767980769230769

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 7.954182692307692

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 8.140384615384615

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 8.326586538461537

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 8.512788461538461

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 8.698990384615383

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 8.885192307692307

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 9.07139423076923

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 9.257596153846153

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 9.443798076923075

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 9.629999999999999

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 9.816201923076923

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 10.002403846153845

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 10.188605769230769

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 10.37480769230769

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 10.561009615384615

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 10.747211538461537

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 10.93341346153846

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 11.119615384615384

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 11.305817307692307

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 11.49201923076923

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 11.678221153846152

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 11.864423076923076

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 12.050624999999998

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 12.236826923076922

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 12.423028846153844

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 12.609230769230768

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 12.795432692307692

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 12.981634615384614

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 13.167836538461538

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 13.35403846153846

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 13.540240384615384

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 13.726442307692306

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 13.91264423076923

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 14.098846153846152

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 14.285048076923076

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 14.47125

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 14.657451923076922

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 14.843653846153845

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 15.029855769230767

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 15.216057692307691

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 15.402259615384613

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 15.588461538461537

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 15.774663461538461

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 15.960865384615383

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 16.147067307692307

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 16.33326923076923

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 16.519471153846155

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 16.705673076923077

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 16.891875

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 17.078076923076924

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 17.264278846153847

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 17.45048076923077

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 17.636682692307694

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 17.822884615384616

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 18.00908653846154

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 18.19528846153846

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 18.381490384615386

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 18.567692307692308

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 18.75389423076923

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 18.940096153846156

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 19.126298076923078

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ], - [ - "
id: 1791
prediction: 1.275
AveOccup: 19.3125

MedInc: 1.75
HouseAge: 45.0
AveRooms: 4.205607476635514
AveBedrms: 1.0093457943925233
Population: 1798.0
Latitude: 37.93
Longitude: -122.37
_original_yhat_: 0.6506199999999995
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.7698701000000006, - 1.7698701000000006, - 1.7698701000000006, - 1.7698701000000006, - 1.7582901000000006, - 1.7124101000000007, - 1.6632600000000004, - 1.6113599999999997, - 1.0981200000000007, - 0.6983999999999995, - 0.8696500000000004, - 0.9436100000000007, - 0.9876600000000008, - 1.0238500000000004, - 1.0337800000000004, - 1.0275600000000003, - 1.0179900000000004, - 1.0074200000000004, - 1.0309000000000004, - 1.0978500000000004, - 1.1091000000000004, - 1.1819800000000003, - 1.24667, - 1.24667, - 1.24339, - 1.24339, - 1.24339, - 1.24339, - 1.24339, - 1.24339, - 1.2516100000000001, - 1.2516100000000001, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002, - 1.2746700000000002 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 18842
prediction: 1.562
AveOccup: 0.6923076923076923

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.562
AveOccup: 0.8785096153846154

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.562
AveOccup: 1.0647115384615384

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.553
AveOccup: 1.2509134615384614

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.536
AveOccup: 1.4371153846153846

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.569
AveOccup: 1.6233173076923078

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.606
AveOccup: 1.8095192307692307

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.521
AveOccup: 1.995721153846154

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.265
AveOccup: 2.181923076923077

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.124
AveOccup: 2.368125

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.943
AveOccup: 2.554326923076923

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.85
AveOccup: 2.740528846153846

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.835
AveOccup: 2.926730769230769

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.828
AveOccup: 3.112932692307692

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.833
AveOccup: 3.2991346153846157

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.835
AveOccup: 3.4853365384615387

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.839
AveOccup: 3.6715384615384616

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.839
AveOccup: 3.8577403846153846

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.839
AveOccup: 4.043942307692308

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.839
AveOccup: 4.2301442307692305

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.839
AveOccup: 4.4163461538461535

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.883
AveOccup: 4.602548076923076

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.883
AveOccup: 4.78875

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.883
AveOccup: 4.974951923076923

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.898
AveOccup: 5.161153846153846

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.898
AveOccup: 5.347355769230769

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.939
AveOccup: 5.533557692307692

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.943
AveOccup: 5.719759615384615

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 0.943
AveOccup: 5.905961538461539

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.086
AveOccup: 6.092163461538462

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.086
AveOccup: 6.278365384615385

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 6.464567307692308

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 6.650769230769231

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 6.836971153846154

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 7.023173076923077

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 7.209375

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 7.395576923076923

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 7.5817788461538465

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 7.767980769230769

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 7.954182692307692

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 8.140384615384615

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 8.326586538461537

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 8.512788461538461

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 8.698990384615383

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 8.885192307692307

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 9.07139423076923

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 9.257596153846153

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 9.443798076923075

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 9.629999999999999

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 9.816201923076923

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 10.002403846153845

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 10.188605769230769

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 10.37480769230769

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 10.561009615384615

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 10.747211538461537

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 10.93341346153846

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 11.119615384615384

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 11.305817307692307

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 11.49201923076923

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 11.678221153846152

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 11.864423076923076

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 12.050624999999998

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 12.236826923076922

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 12.423028846153844

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 12.609230769230768

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 12.795432692307692

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 12.981634615384614

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 13.167836538461538

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 13.35403846153846

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 13.540240384615384

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 13.726442307692306

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 13.91264423076923

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 14.098846153846152

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 14.285048076923076

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 14.47125

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 14.657451923076922

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 14.843653846153845

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 15.029855769230767

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 15.216057692307691

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 15.402259615384613

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 15.588461538461537

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 15.774663461538461

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 15.960865384615383

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 16.147067307692307

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 16.33326923076923

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 16.519471153846155

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 16.705673076923077

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 16.891875

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 17.078076923076924

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 17.264278846153847

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 17.45048076923077

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 17.636682692307694

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 17.822884615384616

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 18.00908653846154

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 18.19528846153846

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 18.381490384615386

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 18.567692307692308

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 18.75389423076923

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 18.940096153846156

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 19.126298076923078

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ], - [ - "
id: 18842
prediction: 1.074
AveOccup: 19.3125

MedInc: 2.723
HouseAge: 20.0
AveRooms: 6.496969696969697
AveBedrms: 1.1954545454545455
Population: 1800.0
Latitude: 41.48
Longitude: -122.93
_original_yhat_: 0.8372900000000008
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.5624100999999997, - 1.5624100999999997, - 1.5624100999999997, - 1.5526500999999993, - 1.5364800999999995, - 1.568770099999999, - 1.6064900999999991, - 1.5205700999999994, - 1.2651000000000001, - 1.1241000000000005, - 0.9432400000000007, - 0.8499200000000008, - 0.8346000000000005, - 0.8281500000000004, - 0.8331600000000005, - 0.8351700000000004, - 0.8389400000000004, - 0.8389400000000004, - 0.8389400000000004, - 0.8389400000000004, - 0.8389400000000004, - 0.8830100000000004, - 0.8830100000000004, - 0.8830100000000004, - 0.8975500000000005, - 0.8975500000000005, - 0.9394700000000006, - 0.9427600000000005, - 0.9427600000000005, - 1.0856700000000006, - 1.0856700000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006, - 1.0744200000000006 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 4644
prediction: 3.181
AveOccup: 0.6923076923076923

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.181
AveOccup: 0.8785096153846154

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.181
AveOccup: 1.0647115384615384

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.15
AveOccup: 1.2509134615384614

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.17
AveOccup: 1.4371153846153846

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.904
AveOccup: 1.6233173076923078

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.868
AveOccup: 1.8095192307692307

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.872
AveOccup: 1.995721153846154

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.148
AveOccup: 2.181923076923077

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.298
AveOccup: 2.368125

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.54
AveOccup: 2.554326923076923

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.678
AveOccup: 2.740528846153846

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.939
AveOccup: 2.926730769230769

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.18
AveOccup: 3.112932692307692

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 3.164
AveOccup: 3.2991346153846157

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.684
AveOccup: 3.4853365384615387

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.398
AveOccup: 3.6715384615384616

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.241
AveOccup: 3.8577403846153846

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.149
AveOccup: 4.043942307692308

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.135
AveOccup: 4.2301442307692305

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 1.97
AveOccup: 4.4163461538461535

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 1.917
AveOccup: 4.602548076923076

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 1.894
AveOccup: 4.78875

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 1.89
AveOccup: 4.974951923076923

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 1.922
AveOccup: 5.161153846153846

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 1.911
AveOccup: 5.347355769230769

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 1.956
AveOccup: 5.533557692307692

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 1.934
AveOccup: 5.719759615384615

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 1.946
AveOccup: 5.905961538461539

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 1.958
AveOccup: 6.092163461538462

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 1.96
AveOccup: 6.278365384615385

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 1.97
AveOccup: 6.464567307692308

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.003
AveOccup: 6.650769230769231

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.019
AveOccup: 6.836971153846154

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.066
AveOccup: 7.023173076923077

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.066
AveOccup: 7.209375

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.066
AveOccup: 7.395576923076923

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.043
AveOccup: 7.5817788461538465

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.035
AveOccup: 7.767980769230769

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.035
AveOccup: 7.954182692307692

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.035
AveOccup: 8.140384615384615

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.035
AveOccup: 8.326586538461537

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.035
AveOccup: 8.512788461538461

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.005
AveOccup: 8.698990384615383

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.005
AveOccup: 8.885192307692307

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.005
AveOccup: 9.07139423076923

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.005
AveOccup: 9.257596153846153

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.005
AveOccup: 9.443798076923075

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.005
AveOccup: 9.629999999999999

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.005
AveOccup: 9.816201923076923

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.005
AveOccup: 10.002403846153845

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.005
AveOccup: 10.188605769230769

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.005
AveOccup: 10.37480769230769

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.005
AveOccup: 10.561009615384615

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.005
AveOccup: 10.747211538461537

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.052
AveOccup: 10.93341346153846

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.052
AveOccup: 11.119615384615384

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.052
AveOccup: 11.305817307692307

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.052
AveOccup: 11.49201923076923

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.052
AveOccup: 11.678221153846152

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.052
AveOccup: 11.864423076923076

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.052
AveOccup: 12.050624999999998

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.052
AveOccup: 12.236826923076922

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.052
AveOccup: 12.423028846153844

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 12.609230769230768

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 12.795432692307692

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 12.981634615384614

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 13.167836538461538

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 13.35403846153846

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 13.540240384615384

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 13.726442307692306

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 13.91264423076923

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 14.098846153846152

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 14.285048076923076

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 14.47125

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 14.657451923076922

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 14.843653846153845

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 15.029855769230767

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 15.216057692307691

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 15.402259615384613

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 15.588461538461537

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 15.774663461538461

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 15.960865384615383

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 16.147067307692307

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 16.33326923076923

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 16.519471153846155

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 16.705673076923077

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 16.891875

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 17.078076923076924

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 17.264278846153847

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 17.45048076923077

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 17.636682692307694

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 17.822884615384616

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 18.00908653846154

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 18.19528846153846

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 18.381490384615386

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 18.567692307692308

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 18.75389423076923

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 18.940096153846156

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 19.126298076923078

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ], - [ - "
id: 4644
prediction: 2.06
AveOccup: 19.3125

MedInc: 2.8202
HouseAge: 24.0
AveRooms: 3.136150234741784
AveBedrms: 1.0633802816901408
Population: 1268.0
Latitude: 34.06
Longitude: -118.31
_original_yhat_: 4.090606699999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.1805815000000006, - 3.1805815000000006, - 3.1805815000000006, - 3.149751500000001, - 3.1700519000000007, - 2.9038408000000016, - 2.867960800000002, - 2.8722809000000007, - 3.147932199999999, - 3.297562699999998, - 3.540194299999998, - 3.6779648999999974, - 3.938866099999994, - 3.1796235999999967, - 3.164373499999997, - 2.683951799999999, - 2.3976306999999997, - 2.240910499999999, - 2.1487405000000006, - 2.1351804999999997, - 1.9702005000000002, - 1.9171505000000009, - 1.8944105000000004, - 1.8904005000000004, - 1.9219405000000007, - 1.9111205000000004, - 1.9559205, - 1.9338104999999999, - 1.9463405, - 1.9581905000000004, - 1.9603705000000002, - 1.9703705000000002, - 2.0028706, - 2.0188706000000005, - 2.0660806000000007, - 2.0660806000000007, - 2.0660806000000007, - 2.0425806000000004, - 2.0351006000000003, - 2.0351006000000003, - 2.0351006000000003, - 2.0351006000000003, - 2.0351006000000003, - 2.0054706, - 2.0054706, - 2.0054706, - 2.0054706, - 2.0054706, - 2.0054706, - 2.0054706, - 2.0054706, - 2.0054706, - 2.0054706, - 2.0054706, - 2.0054706, - 2.0517208000000005, - 2.0517208000000005, - 2.0517208000000005, - 2.0517208000000005, - 2.0517208000000005, - 2.0517208000000005, - 2.0517208000000005, - 2.0517208000000005, - 2.0517208000000005, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508, - 2.0603508 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 11358
prediction: 2.023
AveOccup: 0.6923076923076923

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.023
AveOccup: 0.8785096153846154

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.023
AveOccup: 1.0647115384615384

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.017
AveOccup: 1.2509134615384614

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.049
AveOccup: 1.4371153846153846

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.0
AveOccup: 1.6233173076923078

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.021
AveOccup: 1.8095192307692307

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 2.008
AveOccup: 1.995721153846154

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.93
AveOccup: 2.181923076923077

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.949
AveOccup: 2.368125

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.768
AveOccup: 2.554326923076923

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.737
AveOccup: 2.740528846153846

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.821
AveOccup: 2.926730769230769

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.84
AveOccup: 3.112932692307692

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.815
AveOccup: 3.2991346153846157

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.855
AveOccup: 3.4853365384615387

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.882
AveOccup: 3.6715384615384616

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.908
AveOccup: 3.8577403846153846

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.92
AveOccup: 4.043942307692308

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.907
AveOccup: 4.2301442307692305

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.822
AveOccup: 4.4163461538461535

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.767
AveOccup: 4.602548076923076

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.782
AveOccup: 4.78875

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.763
AveOccup: 4.974951923076923

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.775
AveOccup: 5.161153846153846

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.771
AveOccup: 5.347355769230769

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.77
AveOccup: 5.533557692307692

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.762
AveOccup: 5.719759615384615

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 5.905961538461539

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 6.092163461538462

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 6.278365384615385

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.768
AveOccup: 6.464567307692308

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.771
AveOccup: 6.650769230769231

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.772
AveOccup: 6.836971153846154

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.768
AveOccup: 7.023173076923077

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 7.209375

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 7.395576923076923

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 7.5817788461538465

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 7.767980769230769

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 7.954182692307692

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 8.140384615384615

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 8.326586538461537

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 8.512788461538461

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 8.698990384615383

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 8.885192307692307

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 9.07139423076923

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 9.257596153846153

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 9.443798076923075

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 9.629999999999999

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 9.816201923076923

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 10.002403846153845

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 10.188605769230769

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 10.37480769230769

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 10.561009615384615

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 10.747211538461537

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 10.93341346153846

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 11.119615384615384

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 11.305817307692307

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 11.49201923076923

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 11.678221153846152

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 11.864423076923076

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 12.050624999999998

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 12.236826923076922

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.766
AveOccup: 12.423028846153844

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.758
AveOccup: 12.609230769230768

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.758
AveOccup: 12.795432692307692

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.758
AveOccup: 12.981634615384614

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.758
AveOccup: 13.167836538461538

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.758
AveOccup: 13.35403846153846

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.758
AveOccup: 13.540240384615384

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.758
AveOccup: 13.726442307692306

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.758
AveOccup: 13.91264423076923

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.723
AveOccup: 14.098846153846152

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 14.285048076923076

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 14.47125

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 14.657451923076922

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 14.843653846153845

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 15.029855769230767

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 15.216057692307691

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 15.402259615384613

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 15.588461538461537

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 15.774663461538461

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 15.960865384615383

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 16.147067307692307

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 16.33326923076923

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 16.519471153846155

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 16.705673076923077

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 16.891875

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 17.078076923076924

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 17.264278846153847

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 17.45048076923077

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 17.636682692307694

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 17.822884615384616

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 18.00908653846154

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 18.19528846153846

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 18.381490384615386

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 18.567692307692308

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.712
AveOccup: 18.75389423076923

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.66
AveOccup: 18.940096153846156

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.66
AveOccup: 19.126298076923078

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ], - [ - "
id: 11358
prediction: 1.66
AveOccup: 19.3125

MedInc: 3.1773
HouseAge: 13.0
AveRooms: 4.165915238954013
AveBedrms: 1.1406672678088368
Population: 3385.0
Latitude: 33.74
Longitude: -117.92
_original_yhat_: 1.860880000000001
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.022610099999999, - 2.022610099999999, - 2.022610099999999, - 2.0166800999999994, - 2.0492200999999994, - 1.9995299999999994, - 2.0211000999999995, - 2.0083599999999997, - 1.930479999999999, - 1.948930099999999, - 1.7684799999999996, - 1.73707, - 1.8207900000000001, - 1.8399600000000012, - 1.8151100000000002, - 1.8549900000000006, - 1.8823000000000005, - 1.90757, - 1.9204999999999997, - 1.9068199999999995, - 1.821639999999999, - 1.7669299999999988, - 1.781579999999999, - 1.7634999999999994, - 1.775339999999999, - 1.7708599999999997, - 1.7701599999999997, - 1.7617199999999995, - 1.7655599999999996, - 1.7655599999999996, - 1.7657999999999996, - 1.7676299999999996, - 1.7710699999999997, - 1.7716599999999998, - 1.7676999999999996, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7658799999999997, - 1.7580299999999998, - 1.7580299999999998, - 1.7580299999999998, - 1.7580299999999998, - 1.7580299999999998, - 1.7580299999999998, - 1.7580299999999998, - 1.7580299999999998, - 1.7230299999999996, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.7117499999999994, - 1.6604600000000003, - 1.6604600000000003, - 1.6604600000000003 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 968
prediction: 3.812
AveOccup: 0.6923076923076923

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.812
AveOccup: 0.8785096153846154

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.812
AveOccup: 1.0647115384615384

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.812
AveOccup: 1.2509134615384614

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.812
AveOccup: 1.4371153846153846

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.848
AveOccup: 1.6233173076923078

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.868
AveOccup: 1.8095192307692307

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.822
AveOccup: 1.995721153846154

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.696
AveOccup: 2.181923076923077

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.589
AveOccup: 2.368125

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.347
AveOccup: 2.554326923076923

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.137
AveOccup: 2.740528846153846

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 3.019
AveOccup: 2.926730769230769

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.796
AveOccup: 3.112932692307692

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.623
AveOccup: 3.2991346153846157

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.618
AveOccup: 3.4853365384615387

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.585
AveOccup: 3.6715384615384616

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.578
AveOccup: 3.8577403846153846

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.577
AveOccup: 4.043942307692308

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.577
AveOccup: 4.2301442307692305

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.577
AveOccup: 4.4163461538461535

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.577
AveOccup: 4.602548076923076

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.577
AveOccup: 4.78875

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.577
AveOccup: 4.974951923076923

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.577
AveOccup: 5.161153846153846

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.577
AveOccup: 5.347355769230769

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.577
AveOccup: 5.533557692307692

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.577
AveOccup: 5.719759615384615

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 5.905961538461539

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 6.092163461538462

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 6.278365384615385

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 6.464567307692308

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 6.650769230769231

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 6.836971153846154

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 7.023173076923077

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 7.209375

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 7.395576923076923

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 7.5817788461538465

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 7.767980769230769

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 7.954182692307692

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 8.140384615384615

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 8.326586538461537

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 8.512788461538461

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 8.698990384615383

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 8.885192307692307

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 9.07139423076923

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 9.257596153846153

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 9.443798076923075

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 9.629999999999999

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 9.816201923076923

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 10.002403846153845

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 10.188605769230769

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 10.37480769230769

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 10.561009615384615

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 10.747211538461537

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 10.93341346153846

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 11.119615384615384

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 11.305817307692307

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 11.49201923076923

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 11.678221153846152

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 11.864423076923076

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 12.050624999999998

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 12.236826923076922

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 12.423028846153844

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 12.609230769230768

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 12.795432692307692

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 12.981634615384614

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 13.167836538461538

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 13.35403846153846

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 13.540240384615384

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 13.726442307692306

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 13.91264423076923

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 14.098846153846152

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 14.285048076923076

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 14.47125

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 14.657451923076922

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 14.843653846153845

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 15.029855769230767

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 15.216057692307691

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 15.402259615384613

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 15.588461538461537

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 15.774663461538461

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 15.960865384615383

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 16.147067307692307

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 16.33326923076923

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 16.519471153846155

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 16.705673076923077

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 16.891875

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 17.078076923076924

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 17.264278846153847

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 17.45048076923077

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 17.636682692307694

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 17.822884615384616

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 18.00908653846154

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 18.19528846153846

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 18.381490384615386

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 18.567692307692308

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 18.75389423076923

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 18.940096153846156

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 19.126298076923078

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ], - [ - "
id: 968
prediction: 2.568
AveOccup: 19.3125

MedInc: 6.4524
HouseAge: 25.0
AveRooms: 6.925925925925926
AveBedrms: 0.9290123456790124
Population: 937.0
Latitude: 37.67
Longitude: -121.88
_original_yhat_: 3.010589999999996
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.812481199999997, - 3.812481199999997, - 3.812481199999997, - 3.812481199999997, - 3.812481199999997, - 3.848041299999997, - 3.8679613999999964, - 3.821611399999996, - 3.6961515999999985, - 3.5891715999999985, - 3.347121099999998, - 3.1369102999999985, - 3.019319999999997, - 2.7956299999999983, - 2.622819999999999, - 2.61798, - 2.5845800000000003, - 2.57758, - 2.57728, - 2.57728, - 2.57728, - 2.57728, - 2.57728, - 2.57728, - 2.57728, - 2.57728, - 2.57728, - 2.57728, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762, - 2.56762 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 63
prediction: 1.543
AveOccup: 0.6923076923076923

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.543
AveOccup: 0.8785096153846154

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.543
AveOccup: 1.0647115384615384

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.543
AveOccup: 1.2509134615384614

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.546
AveOccup: 1.4371153846153846

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.497
AveOccup: 1.6233173076923078

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.546
AveOccup: 1.8095192307692307

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.433
AveOccup: 1.995721153846154

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.309
AveOccup: 2.181923076923077

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.029
AveOccup: 2.368125

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.993
AveOccup: 2.554326923076923

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.905
AveOccup: 2.740528846153846

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.849
AveOccup: 2.926730769230769

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.829
AveOccup: 3.112932692307692

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.824
AveOccup: 3.2991346153846157

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.836
AveOccup: 3.4853365384615387

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.834
AveOccup: 3.6715384615384616

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.833
AveOccup: 3.8577403846153846

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 0.837
AveOccup: 4.043942307692308

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.049
AveOccup: 4.2301442307692305

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.049
AveOccup: 4.4163461538461535

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.049
AveOccup: 4.602548076923076

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.078
AveOccup: 4.78875

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.078
AveOccup: 4.974951923076923

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.085
AveOccup: 5.161153846153846

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.096
AveOccup: 5.347355769230769

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.113
AveOccup: 5.533557692307692

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.113
AveOccup: 5.719759615384615

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.113
AveOccup: 5.905961538461539

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.113
AveOccup: 6.092163461538462

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 6.278365384615385

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 6.464567307692308

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 6.650769230769231

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 6.836971153846154

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 7.023173076923077

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 7.209375

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 7.395576923076923

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 7.5817788461538465

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 7.767980769230769

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 7.954182692307692

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 8.140384615384615

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 8.326586538461537

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.15
AveOccup: 8.512788461538461

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 8.698990384615383

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 8.885192307692307

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 9.07139423076923

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 9.257596153846153

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 9.443798076923075

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 9.629999999999999

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 9.816201923076923

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 10.002403846153845

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 10.188605769230769

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 10.37480769230769

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 10.561009615384615

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 10.747211538461537

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 10.93341346153846

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 11.119615384615384

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 11.305817307692307

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 11.49201923076923

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 11.678221153846152

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 11.864423076923076

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 12.050624999999998

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 12.236826923076922

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 12.423028846153844

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 12.609230769230768

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 12.795432692307692

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 12.981634615384614

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 13.167836538461538

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 13.35403846153846

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 13.540240384615384

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 13.726442307692306

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 13.91264423076923

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 14.098846153846152

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 14.285048076923076

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.148
AveOccup: 14.47125

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 14.657451923076922

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 14.843653846153845

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 15.029855769230767

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 15.216057692307691

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 15.402259615384613

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 15.588461538461537

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 15.774663461538461

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 15.960865384615383

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 16.147067307692307

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 16.33326923076923

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 16.519471153846155

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 16.705673076923077

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 16.891875

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 17.078076923076924

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 17.264278846153847

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 17.45048076923077

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 17.636682692307694

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 17.822884615384616

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 18.00908653846154

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 18.19528846153846

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 18.381490384615386

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 18.567692307692308

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 18.75389423076923

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 18.940096153846156

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 19.126298076923078

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ], - [ - "
id: 63
prediction: 1.146
AveOccup: 19.3125

MedInc: 1.191
HouseAge: 52.0
AveRooms: 7.69811320754717
AveBedrms: 1.490566037735849
Population: 521.0
Latitude: 37.81
Longitude: -122.3
_original_yhat_: 0.8241100000000001
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.5434199999999998, - 1.5434199999999998, - 1.5434199999999998, - 1.5434199999999998, - 1.5458800000000001, - 1.4966300000000001, - 1.54596, - 1.4329999999999998, - 1.3088700000000006, - 1.0293400000000004, - 0.9926999999999999, - 0.9053999999999998, - 0.8490000000000001, - 0.82912, - 0.8237500000000001, - 0.8357400000000001, - 0.8343000000000003, - 0.8334500000000002, - 0.8372500000000003, - 1.0489902, - 1.0488002, - 1.0488002, - 1.0778003, - 1.0778003, - 1.0852302999999999, - 1.0956803, - 1.1129603, - 1.1129603, - 1.1129603, - 1.1129603, - 1.1496502999999998, - 1.1496502999999998, - 1.1496502999999998, - 1.1496502999999998, - 1.1496502999999998, - 1.1496502999999998, - 1.1496502999999998, - 1.1496502999999998, - 1.1496502999999998, - 1.1496502999999998, - 1.1496502999999998, - 1.1496502999999998, - 1.1496502999999998, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1483402999999996, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998, - 1.1462902999999998 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 12028
prediction: 3.912
AveOccup: 0.6923076923076923

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.912
AveOccup: 0.8785096153846154

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.912
AveOccup: 1.0647115384615384

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.912
AveOccup: 1.2509134615384614

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.94
AveOccup: 1.4371153846153846

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 4.001
AveOccup: 1.6233173076923078

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.998
AveOccup: 1.8095192307692307

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.623
AveOccup: 1.995721153846154

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 3.056
AveOccup: 2.181923076923077

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.919
AveOccup: 2.368125

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.511
AveOccup: 2.554326923076923

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.514
AveOccup: 2.740528846153846

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.289
AveOccup: 2.926730769230769

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.281
AveOccup: 3.112932692307692

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.285
AveOccup: 3.2991346153846157

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.273
AveOccup: 3.4853365384615387

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.27
AveOccup: 3.6715384615384616

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.267
AveOccup: 3.8577403846153846

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.262
AveOccup: 4.043942307692308

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.257
AveOccup: 4.2301442307692305

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.252
AveOccup: 4.4163461538461535

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.251
AveOccup: 4.602548076923076

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.251
AveOccup: 4.78875

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.24
AveOccup: 4.974951923076923

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 5.161153846153846

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 5.347355769230769

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 5.533557692307692

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 5.719759615384615

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 5.905961538461539

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 6.092163461538462

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 6.278365384615385

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 6.464567307692308

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 6.650769230769231

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 6.836971153846154

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 7.023173076923077

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 7.209375

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 7.395576923076923

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 7.5817788461538465

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 7.767980769230769

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 7.954182692307692

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 8.140384615384615

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 8.326586538461537

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 8.512788461538461

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 8.698990384615383

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 8.885192307692307

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 9.07139423076923

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 9.257596153846153

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 9.443798076923075

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 9.629999999999999

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 9.816201923076923

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 10.002403846153845

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 10.188605769230769

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 10.37480769230769

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 10.561009615384615

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 10.747211538461537

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 10.93341346153846

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 11.119615384615384

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 11.305817307692307

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 11.49201923076923

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 11.678221153846152

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 11.864423076923076

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 12.050624999999998

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 12.236826923076922

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 12.423028846153844

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 12.609230769230768

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 12.795432692307692

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 12.981634615384614

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 13.167836538461538

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 13.35403846153846

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 13.540240384615384

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 13.726442307692306

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 13.91264423076923

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 14.098846153846152

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 14.285048076923076

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 14.47125

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 14.657451923076922

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 14.843653846153845

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 15.029855769230767

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 15.216057692307691

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 15.402259615384613

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 15.588461538461537

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 15.774663461538461

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 15.960865384615383

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 16.147067307692307

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 16.33326923076923

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 16.519471153846155

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 16.705673076923077

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 16.891875

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 17.078076923076924

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 17.264278846153847

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 17.45048076923077

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 17.636682692307694

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 17.822884615384616

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 18.00908653846154

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 18.19528846153846

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 18.381490384615386

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 18.567692307692308

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 18.75389423076923

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 18.940096153846156

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 19.126298076923078

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ], - [ - "
id: 12028
prediction: 1.227
AveOccup: 19.3125

MedInc: 4.0256
HouseAge: 28.0
AveRooms: 5.967880085653105
AveBedrms: 1.0492505353319057
Population: 1684.0
Latitude: 33.94
Longitude: -117.49
_original_yhat_: 1.27216
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.911532499999997, - 3.911532499999997, - 3.911532499999997, - 3.911532499999997, - 3.9403625999999976, - 4.000542699999997, - 3.998243399999998, - 3.6234123999999968, - 3.055850899999998, - 1.9185800000000004, - 1.5109699999999995, - 1.5135199999999995, - 1.2892, - 1.2806199999999999, - 1.28549, - 1.27329, - 1.27039, - 1.26741, - 1.2623599999999997, - 1.2568999999999997, - 1.2518699999999996, - 1.2514799999999997, - 1.2514799999999997, - 1.2403599999999997, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998, - 1.2267199999999998 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 17103
prediction: 4.544
AveOccup: 0.6923076923076923

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.544
AveOccup: 0.8785096153846154

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.544
AveOccup: 1.0647115384615384

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.544
AveOccup: 1.2509134615384614

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.579
AveOccup: 1.4371153846153846

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.602
AveOccup: 1.6233173076923078

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.468
AveOccup: 1.8095192307692307

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 4.113
AveOccup: 1.995721153846154

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.761
AveOccup: 2.181923076923077

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.666
AveOccup: 2.368125

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.306
AveOccup: 2.554326923076923

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 3.134
AveOccup: 2.740528846153846

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.888
AveOccup: 2.926730769230769

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.814
AveOccup: 3.112932692307692

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.793
AveOccup: 3.2991346153846157

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.751
AveOccup: 3.4853365384615387

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.712
AveOccup: 3.6715384615384616

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.671
AveOccup: 3.8577403846153846

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.625
AveOccup: 4.043942307692308

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.623
AveOccup: 4.2301442307692305

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.623
AveOccup: 4.4163461538461535

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.623
AveOccup: 4.602548076923076

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.602
AveOccup: 4.78875

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.758
AveOccup: 4.974951923076923

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 5.161153846153846

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 5.347355769230769

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 5.533557692307692

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 5.719759615384615

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 5.905961538461539

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 6.092163461538462

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 6.278365384615385

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 6.464567307692308

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 6.650769230769231

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 6.836971153846154

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 7.023173076923077

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 7.209375

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 7.395576923076923

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 7.5817788461538465

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 7.767980769230769

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 7.954182692307692

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 8.140384615384615

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 8.326586538461537

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 8.512788461538461

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 8.698990384615383

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 8.885192307692307

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 9.07139423076923

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 9.257596153846153

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 9.443798076923075

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 9.629999999999999

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 9.816201923076923

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 10.002403846153845

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 10.188605769230769

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 10.37480769230769

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 10.561009615384615

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 10.747211538461537

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 10.93341346153846

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 11.119615384615384

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 11.305817307692307

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 11.49201923076923

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 11.678221153846152

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 11.864423076923076

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 12.050624999999998

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 12.236826923076922

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 12.423028846153844

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 12.609230769230768

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 12.795432692307692

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 12.981634615384614

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 13.167836538461538

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 13.35403846153846

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 13.540240384615384

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 13.726442307692306

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 13.91264423076923

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 14.098846153846152

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 14.285048076923076

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 14.47125

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 14.657451923076922

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 14.843653846153845

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 15.029855769230767

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 15.216057692307691

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 15.402259615384613

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 15.588461538461537

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 15.774663461538461

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 15.960865384615383

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 16.147067307692307

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 16.33326923076923

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 16.519471153846155

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 16.705673076923077

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 16.891875

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 17.078076923076924

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 17.264278846153847

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 17.45048076923077

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 17.636682692307694

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 17.822884615384616

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 18.00908653846154

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 18.19528846153846

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 18.381490384615386

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 18.567692307692308

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 18.75389423076923

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 18.940096153846156

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 19.126298076923078

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ], - [ - "
id: 17103
prediction: 2.839
AveOccup: 19.3125

MedInc: 5.0457
HouseAge: 34.0
AveRooms: 6.328787878787879
AveBedrms: 1.0954545454545455
Population: 1586.0
Latitude: 37.45
Longitude: -122.23
_original_yhat_: 3.7312900000000027
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.544245399999994, - 4.544245399999994, - 4.544245399999994, - 4.544245399999994, - 4.579245599999994, - 4.6022154999999945, - 4.467575199999995, - 4.112862699999997, - 3.7614202999999993, - 3.6660300000000023, - 3.3056402000000005, - 3.1338800999999994, - 2.8883601999999997, - 2.8140602000000006, - 2.793090200000001, - 2.7511501000000003, - 2.7124500999999994, - 2.671460099999999, - 2.6251400999999994, - 2.6226603, - 2.6226603, - 2.6226603, - 2.6020802999999995, - 2.7575508999999996, - 2.8385312, - 2.8385312, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812, - 2.8393812 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 15574
prediction: 3.138
AveOccup: 0.6923076923076923

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.138
AveOccup: 0.8785096153846154

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.138
AveOccup: 1.0647115384615384

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.138
AveOccup: 1.2509134615384614

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.138
AveOccup: 1.4371153846153846

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.142
AveOccup: 1.6233173076923078

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 3.166
AveOccup: 1.8095192307692307

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.936
AveOccup: 1.995721153846154

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.822
AveOccup: 2.181923076923077

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.86
AveOccup: 2.368125

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.904
AveOccup: 2.554326923076923

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.683
AveOccup: 2.740528846153846

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.386
AveOccup: 2.926730769230769

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.24
AveOccup: 3.112932692307692

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.181
AveOccup: 3.2991346153846157

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.17
AveOccup: 3.4853365384615387

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.139
AveOccup: 3.6715384615384616

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.127
AveOccup: 3.8577403846153846

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.127
AveOccup: 4.043942307692308

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.114
AveOccup: 4.2301442307692305

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 4.4163461538461535

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 4.602548076923076

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 4.78875

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 4.974951923076923

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 5.161153846153846

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 5.347355769230769

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 5.533557692307692

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 5.719759615384615

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 5.905961538461539

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 6.092163461538462

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 6.278365384615385

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 6.464567307692308

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 6.650769230769231

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 6.836971153846154

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 7.023173076923077

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 7.209375

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 7.395576923076923

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 7.5817788461538465

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 7.767980769230769

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 7.954182692307692

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 8.140384615384615

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 8.326586538461537

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 8.512788461538461

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 8.698990384615383

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 8.885192307692307

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 9.07139423076923

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 9.257596153846153

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 9.443798076923075

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 9.629999999999999

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 9.816201923076923

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 10.002403846153845

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 10.188605769230769

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 10.37480769230769

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 10.561009615384615

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 10.747211538461537

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 10.93341346153846

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 11.119615384615384

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 11.305817307692307

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 11.49201923076923

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 11.678221153846152

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 11.864423076923076

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 12.050624999999998

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 12.236826923076922

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 12.423028846153844

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 12.609230769230768

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 12.795432692307692

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 12.981634615384614

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 13.167836538461538

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 13.35403846153846

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 13.540240384615384

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 13.726442307692306

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 13.91264423076923

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 14.098846153846152

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 14.285048076923076

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 14.47125

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 14.657451923076922

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 14.843653846153845

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 15.029855769230767

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 15.216057692307691

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 15.402259615384613

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 15.588461538461537

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 15.774663461538461

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 15.960865384615383

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 16.147067307692307

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 16.33326923076923

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 16.519471153846155

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 16.705673076923077

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 16.891875

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 17.078076923076924

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 17.264278846153847

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 17.45048076923077

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 17.636682692307694

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 17.822884615384616

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 18.00908653846154

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 18.19528846153846

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 18.381490384615386

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 18.567692307692308

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 18.75389423076923

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 18.940096153846156

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 19.126298076923078

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ], - [ - "
id: 15574
prediction: 2.116
AveOccup: 19.3125

MedInc: 5.5102
HouseAge: 7.0
AveRooms: 7.3541543901001765
AveBedrms: 1.1467295226870948
Population: 5102.0
Latitude: 33.0
Longitude: -116.78
_original_yhat_: 2.2404900000000003
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.1383914999999996, - 3.1383914999999996, - 3.1383914999999996, - 3.1383914999999996, - 3.1383914999999996, - 3.1418615, - 3.1659317, - 2.9360208, - 2.8224205999999987, - 2.859960399999999, - 2.9037805000000003, - 2.683070100000001, - 2.3862200000000002, - 2.2404, - 2.1811400000000005, - 2.170340000000001, - 2.1386600000000007, - 2.127170000000001, - 2.127170000000001, - 2.1143700000000014, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001, - 2.116130000000001 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 15237
prediction: 4.417
AveOccup: 0.6923076923076923

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.417
AveOccup: 0.8785096153846154

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.417
AveOccup: 1.0647115384615384

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.417
AveOccup: 1.2509134615384614

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.417
AveOccup: 1.4371153846153846

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.508
AveOccup: 1.6233173076923078

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.554
AveOccup: 1.8095192307692307

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 4.239
AveOccup: 1.995721153846154

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 3.548
AveOccup: 2.181923076923077

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 2.848
AveOccup: 2.368125

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 2.462
AveOccup: 2.554326923076923

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 2.354
AveOccup: 2.740528846153846

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.853
AveOccup: 2.926730769230769

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.784
AveOccup: 3.112932692307692

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.775
AveOccup: 3.2991346153846157

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.741
AveOccup: 3.4853365384615387

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.743
AveOccup: 3.6715384615384616

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.729
AveOccup: 3.8577403846153846

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.723
AveOccup: 4.043942307692308

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.71
AveOccup: 4.2301442307692305

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.706
AveOccup: 4.4163461538461535

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.698
AveOccup: 4.602548076923076

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.698
AveOccup: 4.78875

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.698
AveOccup: 4.974951923076923

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.698
AveOccup: 5.161153846153846

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.698
AveOccup: 5.347355769230769

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.698
AveOccup: 5.533557692307692

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.682
AveOccup: 5.719759615384615

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.682
AveOccup: 5.905961538461539

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.682
AveOccup: 6.092163461538462

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.682
AveOccup: 6.278365384615385

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.682
AveOccup: 6.464567307692308

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.682
AveOccup: 6.650769230769231

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.682
AveOccup: 6.836971153846154

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.682
AveOccup: 7.023173076923077

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 7.209375

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 7.395576923076923

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 7.5817788461538465

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 7.767980769230769

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 7.954182692307692

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 8.140384615384615

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 8.326586538461537

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 8.512788461538461

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 8.698990384615383

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 8.885192307692307

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 9.07139423076923

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 9.257596153846153

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 9.443798076923075

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 9.629999999999999

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 9.816201923076923

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 10.002403846153845

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 10.188605769230769

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 10.37480769230769

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 10.561009615384615

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 10.747211538461537

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 10.93341346153846

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 11.119615384615384

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 11.305817307692307

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 11.49201923076923

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 11.678221153846152

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 11.864423076923076

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 12.050624999999998

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 12.236826923076922

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 12.423028846153844

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 12.609230769230768

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 12.795432692307692

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 12.981634615384614

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 13.167836538461538

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 13.35403846153846

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 13.540240384615384

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 13.726442307692306

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 13.91264423076923

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 14.098846153846152

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 14.285048076923076

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 14.47125

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 14.657451923076922

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 14.843653846153845

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 15.029855769230767

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 15.216057692307691

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 15.402259615384613

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 15.588461538461537

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 15.774663461538461

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 15.960865384615383

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 16.147067307692307

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 16.33326923076923

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 16.519471153846155

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 16.705673076923077

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 16.891875

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 17.078076923076924

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 17.264278846153847

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 17.45048076923077

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 17.636682692307694

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 17.822884615384616

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 18.00908653846154

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 18.19528846153846

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 18.381490384615386

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 18.567692307692308

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 18.75389423076923

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 18.940096153846156

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 19.126298076923078

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ], - [ - "
id: 15237
prediction: 1.712
AveOccup: 19.3125

MedInc: 4.4375
HouseAge: 22.0
AveRooms: 5.4189723320158105
AveBedrms: 1.2124505928853755
Population: 1947.0
Latitude: 32.95
Longitude: -117.26
_original_yhat_: 4.510946699999994
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.416675699999994, - 4.416675699999994, - 4.416675699999994, - 4.416675699999994, - 4.416675699999994, - 4.507935899999994, - 4.554296199999994, - 4.239013799999998, - 3.5476410999999994, - 2.8482303, - 2.461560500000001, - 2.354460400000001, - 1.8531800000000005, - 1.7839099999999994, - 1.7747299999999993, - 1.7414599999999998, - 1.7429099999999997, - 1.7288, - 1.72261, - 1.70972, - 1.7056799999999999, - 1.6980199999999999, - 1.6980199999999999, - 1.6980199999999999, - 1.6980199999999999, - 1.6980199999999999, - 1.6980199999999999, - 1.6822199999999998, - 1.6822199999999998, - 1.6822199999999998, - 1.6822199999999998, - 1.6822199999999998, - 1.6822199999999998, - 1.6822199999999998, - 1.6822199999999998, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999, - 1.7122199999999999 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 9163
prediction: 2.006
AveOccup: 0.6923076923076923

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.006
AveOccup: 0.8785096153846154

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.006
AveOccup: 1.0647115384615384

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.002
AveOccup: 1.2509134615384614

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.008
AveOccup: 1.4371153846153846

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.063
AveOccup: 1.6233173076923078

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.169
AveOccup: 1.8095192307692307

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.139
AveOccup: 1.995721153846154

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.148
AveOccup: 2.181923076923077

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.242
AveOccup: 2.368125

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.301
AveOccup: 2.554326923076923

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.283
AveOccup: 2.740528846153846

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.231
AveOccup: 2.926730769230769

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.194
AveOccup: 3.112932692307692

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 2.007
AveOccup: 3.2991346153846157

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.946
AveOccup: 3.4853365384615387

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.911
AveOccup: 3.6715384615384616

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.863
AveOccup: 3.8577403846153846

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.831
AveOccup: 4.043942307692308

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.786
AveOccup: 4.2301442307692305

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.781
AveOccup: 4.4163461538461535

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.754
AveOccup: 4.602548076923076

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.729
AveOccup: 4.78875

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.72
AveOccup: 4.974951923076923

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.727
AveOccup: 5.161153846153846

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.724
AveOccup: 5.347355769230769

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.748
AveOccup: 5.533557692307692

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.741
AveOccup: 5.719759615384615

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.766
AveOccup: 5.905961538461539

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.827
AveOccup: 6.092163461538462

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.827
AveOccup: 6.278365384615385

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.883
AveOccup: 6.464567307692308

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.916
AveOccup: 6.650769230769231

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.916
AveOccup: 6.836971153846154

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.916
AveOccup: 7.023173076923077

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.916
AveOccup: 7.209375

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.916
AveOccup: 7.395576923076923

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.903
AveOccup: 7.5817788461538465

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.903
AveOccup: 7.767980769230769

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.903
AveOccup: 7.954182692307692

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.903
AveOccup: 8.140384615384615

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.903
AveOccup: 8.326586538461537

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.903
AveOccup: 8.512788461538461

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 8.698990384615383

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 8.885192307692307

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 9.07139423076923

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 9.257596153846153

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 9.443798076923075

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 9.629999999999999

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 9.816201923076923

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 10.002403846153845

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 10.188605769230769

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 10.37480769230769

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 10.561009615384615

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 10.747211538461537

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 10.93341346153846

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 11.119615384615384

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 11.305817307692307

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 11.49201923076923

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 11.678221153846152

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 11.864423076923076

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 12.050624999999998

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 12.236826923076922

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.887
AveOccup: 12.423028846153844

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.896
AveOccup: 12.609230769230768

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.896
AveOccup: 12.795432692307692

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.896
AveOccup: 12.981634615384614

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.896
AveOccup: 13.167836538461538

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.896
AveOccup: 13.35403846153846

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.896
AveOccup: 13.540240384615384

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.896
AveOccup: 13.726442307692306

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.896
AveOccup: 13.91264423076923

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 14.098846153846152

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 14.285048076923076

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 14.47125

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 14.657451923076922

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 14.843653846153845

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 15.029855769230767

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 15.216057692307691

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 15.402259615384613

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 15.588461538461537

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 15.774663461538461

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 15.960865384615383

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 16.147067307692307

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 16.33326923076923

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 16.519471153846155

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 16.705673076923077

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 16.891875

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 17.078076923076924

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 17.264278846153847

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 17.45048076923077

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 17.636682692307694

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 17.822884615384616

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 18.00908653846154

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 18.19528846153846

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 18.381490384615386

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 18.567692307692308

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 18.75389423076923

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 18.940096153846156

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 19.126298076923078

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ], - [ - "
id: 9163
prediction: 1.886
AveOccup: 19.3125

MedInc: 3.038
HouseAge: 17.0
AveRooms: 4.54228855721393
AveBedrms: 1.1343283582089552
Population: 530.0
Latitude: 34.42
Longitude: -118.47
_original_yhat_: 2.295149999999999
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.0060801000000006, - 2.0060801000000006, - 2.0060801000000006, - 2.001920100000001, - 2.0084102, - 2.0633101000000007, - 2.168960100000001, - 2.1390702000000013, - 2.1482100999999996, - 2.2416900999999996, - 2.3006199999999994, - 2.2831099999999993, - 2.2314999999999987, - 2.193939999999999, - 2.0072999999999994, - 1.9458799999999996, - 1.9112299999999993, - 1.8628200000000001, - 1.8306000000000002, - 1.7863800000000005, - 1.7809300000000006, - 1.7537500000000006, - 1.7291000000000003, - 1.7198100000000005, - 1.72653, - 1.7235100000000003, - 1.7483400000000002, - 1.7411500000000004, - 1.7660900000000004, - 1.8266599999999997, - 1.8266599999999997, - 1.8830699999999994, - 1.9157300999999993, - 1.9157300999999993, - 1.9157300999999993, - 1.9157300999999993, - 1.9157300999999993, - 1.9032300999999991, - 1.9032300999999991, - 1.9032300999999991, - 1.9032300999999991, - 1.9032300999999991, - 1.9032300999999991, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8869800999999993, - 1.8956100999999992, - 1.8956100999999992, - 1.8956100999999992, - 1.8956100999999992, - 1.8956100999999992, - 1.8956100999999992, - 1.8956100999999992, - 1.8956100999999992, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995, - 1.8860600999999995 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 15527
prediction: 1.411
AveOccup: 0.6923076923076923

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.411
AveOccup: 0.8785096153846154

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.411
AveOccup: 1.0647115384615384

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.401
AveOccup: 1.2509134615384614

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.43
AveOccup: 1.4371153846153846

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.464
AveOccup: 1.6233173076923078

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.455
AveOccup: 1.8095192307692307

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.418
AveOccup: 1.995721153846154

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.333
AveOccup: 2.181923076923077

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.301
AveOccup: 2.368125

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.262
AveOccup: 2.554326923076923

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.239
AveOccup: 2.740528846153846

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.222
AveOccup: 2.926730769230769

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.262
AveOccup: 3.112932692307692

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.261
AveOccup: 3.2991346153846157

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.259
AveOccup: 3.4853365384615387

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.273
AveOccup: 3.6715384615384616

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.273
AveOccup: 3.8577403846153846

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.276
AveOccup: 4.043942307692308

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.279
AveOccup: 4.2301442307692305

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.309
AveOccup: 4.4163461538461535

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.319
AveOccup: 4.602548076923076

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.317
AveOccup: 4.78875

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.338
AveOccup: 4.974951923076923

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.335
AveOccup: 5.161153846153846

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.368
AveOccup: 5.347355769230769

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.398
AveOccup: 5.533557692307692

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.522
AveOccup: 5.719759615384615

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.542
AveOccup: 5.905961538461539

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.542
AveOccup: 6.092163461538462

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.542
AveOccup: 6.278365384615385

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.542
AveOccup: 6.464567307692308

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 6.650769230769231

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 6.836971153846154

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 7.023173076923077

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 7.209375

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 7.395576923076923

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 7.5817788461538465

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 7.767980769230769

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 7.954182692307692

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 8.140384615384615

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 8.326586538461537

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 8.512788461538461

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 8.698990384615383

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 8.885192307692307

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 9.07139423076923

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 9.257596153846153

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 9.443798076923075

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 9.629999999999999

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 9.816201923076923

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 10.002403846153845

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 10.188605769230769

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 10.37480769230769

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 10.561009615384615

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 10.747211538461537

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 10.93341346153846

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 11.119615384615384

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 11.305817307692307

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 11.49201923076923

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 11.678221153846152

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 11.864423076923076

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 12.050624999999998

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 12.236826923076922

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 12.423028846153844

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 12.609230769230768

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 12.795432692307692

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 12.981634615384614

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 13.167836538461538

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 13.35403846153846

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 13.540240384615384

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 13.726442307692306

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 13.91264423076923

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 14.098846153846152

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 14.285048076923076

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 14.47125

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 14.657451923076922

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 14.843653846153845

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 15.029855769230767

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 15.216057692307691

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 15.402259615384613

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 15.588461538461537

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 15.774663461538461

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 15.960865384615383

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 16.147067307692307

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 16.33326923076923

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 16.519471153846155

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 16.705673076923077

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 16.891875

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 17.078076923076924

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 17.264278846153847

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 17.45048076923077

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 17.636682692307694

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 17.822884615384616

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 18.00908653846154

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 18.19528846153846

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 18.381490384615386

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 18.567692307692308

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 18.75389423076923

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 18.940096153846156

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 19.126298076923078

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ], - [ - "
id: 15527
prediction: 1.512
AveOccup: 19.3125

MedInc: 2.1437
HouseAge: 17.0
AveRooms: 3.7344508160564622
AveBedrms: 1.1592412880458756
Population: 7014.0
Latitude: 33.13
Longitude: -117.08
_original_yhat_: 1.2375100000000003
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.4107499999999995, - 1.4107499999999995, - 1.4107499999999995, - 1.4010199999999997, - 1.4298899999999997, - 1.4637199999999995, - 1.45545, - 1.4180100000000004, - 1.3329000000000009, - 1.30091, - 1.2619599999999997, - 1.23868, - 1.22177, - 1.2618300000000005, - 1.2610500000000002, - 1.2593400000000003, - 1.2730000000000004, - 1.2730000000000004, - 1.27581, - 1.27923, - 1.3089700000000004, - 1.3185000000000002, - 1.3167000000000002, - 1.3384600000000004, - 1.3352400000000002, - 1.3678900000000005, - 1.3983800000000004, - 1.5221500000000003, - 1.54245, - 1.54245, - 1.54245, - 1.54245, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.51219, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998, - 1.5118699999999998 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 4330
prediction: 3.562
AveOccup: 0.6923076923076923

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.562
AveOccup: 0.8785096153846154

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.562
AveOccup: 1.0647115384615384

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.483
AveOccup: 1.2509134615384614

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.535
AveOccup: 1.4371153846153846

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.13
AveOccup: 1.6233173076923078

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.042
AveOccup: 1.8095192307692307

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 3.045
AveOccup: 1.995721153846154

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.838
AveOccup: 2.181923076923077

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.791
AveOccup: 2.368125

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.508
AveOccup: 2.554326923076923

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.508
AveOccup: 2.740528846153846

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.499
AveOccup: 2.926730769230769

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.411
AveOccup: 3.112932692307692

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.314
AveOccup: 3.2991346153846157

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.296
AveOccup: 3.4853365384615387

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.119
AveOccup: 3.6715384615384616

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.108
AveOccup: 3.8577403846153846

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.069
AveOccup: 4.043942307692308

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.057
AveOccup: 4.2301442307692305

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.017
AveOccup: 4.4163461538461535

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.97
AveOccup: 4.602548076923076

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.948
AveOccup: 4.78875

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.946
AveOccup: 4.974951923076923

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.927
AveOccup: 5.161153846153846

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.93
AveOccup: 5.347355769230769

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.93
AveOccup: 5.533557692307692

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.93
AveOccup: 5.719759615384615

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.93
AveOccup: 5.905961538461539

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.93
AveOccup: 6.092163461538462

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.93
AveOccup: 6.278365384615385

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.954
AveOccup: 6.464567307692308

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.978
AveOccup: 6.650769230769231

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.978
AveOccup: 6.836971153846154

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.978
AveOccup: 7.023173076923077

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.978
AveOccup: 7.209375

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.978
AveOccup: 7.395576923076923

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.956
AveOccup: 7.5817788461538465

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.97
AveOccup: 7.767980769230769

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.97
AveOccup: 7.954182692307692

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.97
AveOccup: 8.140384615384615

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.97
AveOccup: 8.326586538461537

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.97
AveOccup: 8.512788461538461

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.946
AveOccup: 8.698990384615383

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.946
AveOccup: 8.885192307692307

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.946
AveOccup: 9.07139423076923

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.946
AveOccup: 9.257596153846153

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.946
AveOccup: 9.443798076923075

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.946
AveOccup: 9.629999999999999

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.946
AveOccup: 9.816201923076923

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.946
AveOccup: 10.002403846153845

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.988
AveOccup: 10.188605769230769

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.988
AveOccup: 10.37480769230769

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.988
AveOccup: 10.561009615384615

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 1.988
AveOccup: 10.747211538461537

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.049
AveOccup: 10.93341346153846

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.049
AveOccup: 11.119615384615384

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.049
AveOccup: 11.305817307692307

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.049
AveOccup: 11.49201923076923

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.049
AveOccup: 11.678221153846152

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.049
AveOccup: 11.864423076923076

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.049
AveOccup: 12.050624999999998

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.049
AveOccup: 12.236826923076922

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.049
AveOccup: 12.423028846153844

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 12.609230769230768

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 12.795432692307692

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 12.981634615384614

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 13.167836538461538

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 13.35403846153846

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 13.540240384615384

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 13.726442307692306

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 13.91264423076923

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 14.098846153846152

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 14.285048076923076

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 14.47125

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 14.657451923076922

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 14.843653846153845

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 15.029855769230767

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 15.216057692307691

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 15.402259615384613

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 15.588461538461537

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 15.774663461538461

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 15.960865384615383

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 16.147067307692307

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 16.33326923076923

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 16.519471153846155

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 16.705673076923077

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 16.891875

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 17.078076923076924

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 17.264278846153847

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 17.45048076923077

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 17.636682692307694

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 17.822884615384616

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 18.00908653846154

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 18.19528846153846

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 18.381490384615386

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 18.567692307692308

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 18.75389423076923

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 18.940096153846156

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 19.126298076923078

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ], - [ - "
id: 4330
prediction: 2.058
AveOccup: 19.3125

MedInc: 1.7542
HouseAge: 31.0
AveRooms: 3.1597222222222223
AveBedrms: 1.1430555555555555
Population: 2189.0
Latitude: 34.08
Longitude: -118.31
_original_yhat_: 2.6143401
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.5619023, - 3.5619023, - 3.5619023, - 3.4830024999999996, - 3.5353329999999987, - 3.129541499999998, - 3.042361199999998, - 3.0445709999999986, - 2.837910399999999, - 2.7909604999999993, - 2.5080302999999997, - 2.5079503, - 2.4994202000000003, - 2.4106301, - 2.3142101000000004, - 2.2956301000000003, - 2.11901, - 2.1084799999999997, - 2.0687099999999994, - 2.0566499999999994, - 2.0171299999999994, - 1.9703599999999997, - 1.9478399999999996, - 1.9458499999999999, - 1.9271599999999998, - 1.9298299999999997, - 1.9298299999999997, - 1.9298299999999997, - 1.9298299999999997, - 1.9298299999999997, - 1.9298299999999997, - 1.9542499999999996, - 1.9779999999999995, - 1.9779999999999995, - 1.9779999999999995, - 1.9779999999999995, - 1.9779999999999995, - 1.9559499999999994, - 1.9699199999999997, - 1.9699199999999997, - 1.9699199999999997, - 1.9699199999999997, - 1.9699199999999997, - 1.9455899999999997, - 1.9455899999999997, - 1.9455899999999997, - 1.9455899999999997, - 1.9455899999999997, - 1.9455899999999997, - 1.9455899999999997, - 1.9455899999999997, - 1.9880901999999994, - 1.9880901999999994, - 1.9880901999999994, - 1.9880901999999994, - 2.0493403999999997, - 2.0493403999999997, - 2.0493403999999997, - 2.0493403999999997, - 2.0493403999999997, - 2.0493403999999997, - 2.0493403999999997, - 2.0493403999999997, - 2.0493403999999997, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704, - 2.0579704 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 6483
prediction: 3.589
AveOccup: 0.6923076923076923

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.589
AveOccup: 0.8785096153846154

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.589
AveOccup: 1.0647115384615384

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.589
AveOccup: 1.2509134615384614

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.613
AveOccup: 1.4371153846153846

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.589
AveOccup: 1.6233173076923078

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 3.335
AveOccup: 1.8095192307692307

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.769
AveOccup: 1.995721153846154

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.375
AveOccup: 2.181923076923077

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.302
AveOccup: 2.368125

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.116
AveOccup: 2.554326923076923

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 2.087
AveOccup: 2.740528846153846

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.935
AveOccup: 2.926730769230769

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.867
AveOccup: 3.112932692307692

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.749
AveOccup: 3.2991346153846157

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.784
AveOccup: 3.4853365384615387

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.727
AveOccup: 3.6715384615384616

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.715
AveOccup: 3.8577403846153846

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.708
AveOccup: 4.043942307692308

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.636
AveOccup: 4.2301442307692305

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.566
AveOccup: 4.4163461538461535

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.523
AveOccup: 4.602548076923076

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.53
AveOccup: 4.78875

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.53
AveOccup: 4.974951923076923

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.528
AveOccup: 5.161153846153846

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.518
AveOccup: 5.347355769230769

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.512
AveOccup: 5.533557692307692

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.503
AveOccup: 5.719759615384615

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.498
AveOccup: 5.905961538461539

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.501
AveOccup: 6.092163461538462

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.501
AveOccup: 6.278365384615385

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.501
AveOccup: 6.464567307692308

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.501
AveOccup: 6.650769230769231

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.501
AveOccup: 6.836971153846154

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.511
AveOccup: 7.023173076923077

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.515
AveOccup: 7.209375

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.52
AveOccup: 7.395576923076923

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.52
AveOccup: 7.5817788461538465

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 7.767980769230769

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 7.954182692307692

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 8.140384615384615

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 8.326586538461537

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 8.512788461538461

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 8.698990384615383

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 8.885192307692307

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 9.07139423076923

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 9.257596153846153

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 9.443798076923075

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 9.629999999999999

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 9.816201923076923

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 10.002403846153845

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 10.188605769230769

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 10.37480769230769

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 10.561009615384615

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 10.747211538461537

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 10.93341346153846

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 11.119615384615384

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 11.305817307692307

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 11.49201923076923

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 11.678221153846152

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 11.864423076923076

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 12.050624999999998

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 12.236826923076922

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 12.423028846153844

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 12.609230769230768

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 12.795432692307692

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 12.981634615384614

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 13.167836538461538

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 13.35403846153846

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 13.540240384615384

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 13.726442307692306

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.525
AveOccup: 13.91264423076923

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.492
AveOccup: 14.098846153846152

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 14.285048076923076

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 14.47125

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 14.657451923076922

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 14.843653846153845

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 15.029855769230767

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 15.216057692307691

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 15.402259615384613

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 15.588461538461537

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 15.774663461538461

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 15.960865384615383

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 16.147067307692307

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 16.33326923076923

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 16.519471153846155

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 16.705673076923077

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 16.891875

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 17.078076923076924

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 17.264278846153847

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 17.45048076923077

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 17.636682692307694

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 17.822884615384616

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 18.00908653846154

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 18.19528846153846

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 18.381490384615386

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 18.567692307692308

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.484
AveOccup: 18.75389423076923

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.424
AveOccup: 18.940096153846156

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.424
AveOccup: 19.126298076923078

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ], - [ - "
id: 6483
prediction: 1.424
AveOccup: 19.3125

MedInc: 3.6944
HouseAge: 29.0
AveRooms: 4.048744460856721
AveBedrms: 0.9852289512555391
Population: 2449.0
Latitude: 34.08
Longitude: -118.02
_original_yhat_: 1.7621500000000012
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.5892417999999986, - 3.5892417999999986, - 3.5892417999999986, - 3.5892417999999986, - 3.6131916999999993, - 3.5890617999999987, - 3.3354713999999994, - 2.7693204999999996, - 2.375179999999999, - 2.3019900000000004, - 2.11592, - 2.0865500999999997, - 1.93489, - 1.866509999999999, - 1.7489099999999995, - 1.78435, - 1.726530000000001, - 1.714560000000001, - 1.7082400000000009, - 1.6360900000000007, - 1.5664100000000005, - 1.5230999999999997, - 1.5304799999999992, - 1.5296499999999993, - 1.5278299999999994, - 1.5183199999999994, - 1.5120699999999994, - 1.5029999999999992, - 1.497529999999999, - 1.501329999999999, - 1.501329999999999, - 1.501329999999999, - 1.501329999999999, - 1.501329999999999, - 1.510629999999999, - 1.514639999999999, - 1.5202499999999992, - 1.5202499999999992, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.5254599999999991, - 1.4924499999999992, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.4840599999999993, - 1.42359, - 1.42359, - 1.42359 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 12789
prediction: 1.176
AveOccup: 0.6923076923076923

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.176
AveOccup: 0.8785096153846154

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.176
AveOccup: 1.0647115384615384

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.176
AveOccup: 1.2509134615384614

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.166
AveOccup: 1.4371153846153846

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.172
AveOccup: 1.6233173076923078

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 1.16
AveOccup: 1.8095192307692307

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.919
AveOccup: 1.995721153846154

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.809
AveOccup: 2.181923076923077

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.708
AveOccup: 2.368125

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.66
AveOccup: 2.554326923076923

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.701
AveOccup: 2.740528846153846

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.627
AveOccup: 2.926730769230769

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.624
AveOccup: 3.112932692307692

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.624
AveOccup: 3.2991346153846157

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.614
AveOccup: 3.4853365384615387

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.607
AveOccup: 3.6715384615384616

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.603
AveOccup: 3.8577403846153846

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.61
AveOccup: 4.043942307692308

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.607
AveOccup: 4.2301442307692305

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.608
AveOccup: 4.4163461538461535

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.609
AveOccup: 4.602548076923076

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.647
AveOccup: 4.78875

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.632
AveOccup: 4.974951923076923

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.636
AveOccup: 5.161153846153846

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.635
AveOccup: 5.347355769230769

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.643
AveOccup: 5.533557692307692

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.662
AveOccup: 5.719759615384615

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.68
AveOccup: 5.905961538461539

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.675
AveOccup: 6.092163461538462

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.675
AveOccup: 6.278365384615385

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 6.464567307692308

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 6.650769230769231

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 6.836971153846154

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 7.023173076923077

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 7.209375

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 7.395576923076923

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 7.5817788461538465

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 7.767980769230769

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 7.954182692307692

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 8.140384615384615

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 8.326586538461537

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 8.512788461538461

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 8.698990384615383

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 8.885192307692307

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 9.07139423076923

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 9.257596153846153

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 9.443798076923075

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 9.629999999999999

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 9.816201923076923

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 10.002403846153845

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 10.188605769230769

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 10.37480769230769

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 10.561009615384615

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 10.747211538461537

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 10.93341346153846

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.706
AveOccup: 11.119615384615384

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 11.305817307692307

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 11.49201923076923

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 11.678221153846152

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 11.864423076923076

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 12.050624999999998

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 12.236826923076922

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 12.423028846153844

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 12.609230769230768

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 12.795432692307692

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 12.981634615384614

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 13.167836538461538

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 13.35403846153846

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 13.540240384615384

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 13.726442307692306

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 13.91264423076923

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.713
AveOccup: 14.098846153846152

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 14.285048076923076

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 14.47125

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 14.657451923076922

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 14.843653846153845

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 15.029855769230767

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 15.216057692307691

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 15.402259615384613

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 15.588461538461537

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 15.774663461538461

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 15.960865384615383

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 16.147067307692307

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 16.33326923076923

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 16.519471153846155

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 16.705673076923077

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 16.891875

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 17.078076923076924

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 17.264278846153847

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 17.45048076923077

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 17.636682692307694

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 17.822884615384616

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 18.00908653846154

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 18.19528846153846

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 18.381490384615386

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 18.567692307692308

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 18.75389423076923

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 18.940096153846156

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 19.126298076923078

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ], - [ - "
id: 12789
prediction: 0.722
AveOccup: 19.3125

MedInc: 1.4387
HouseAge: 37.0
AveRooms: 5.11734693877551
AveBedrms: 1.2465986394557824
Population: 1513.0
Latitude: 38.62
Longitude: -121.44
_original_yhat_: 0.6552099999999994
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.1761399999999995, - 1.1761399999999995, - 1.1761399999999995, - 1.1761399999999995, - 1.16552, - 1.1716199999999997, - 1.1596699999999998, - 0.9193200000000001, - 0.80857, - 0.7082799999999999, - 0.6597899999999994, - 0.7011099999999996, - 0.6271599999999997, - 0.62396, - 0.62357, - 0.6138399999999998, - 0.6067399999999997, - 0.6031899999999997, - 0.6100499999999996, - 0.6068499999999996, - 0.6078899999999996, - 0.6091499999999996, - 0.6466899999999997, - 0.6322999999999996, - 0.6356099999999996, - 0.6346899999999995, - 0.6425499999999996, - 0.6624899999999996, - 0.6796699999999997, - 0.6751699999999997, - 0.6751699999999997, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7058999999999996, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7125599999999995, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996, - 0.7218199999999996 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 3080
prediction: 2.875
AveOccup: 0.6923076923076923

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.875
AveOccup: 0.8785096153846154

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.875
AveOccup: 1.0647115384615384

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.875
AveOccup: 1.2509134615384614

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.875
AveOccup: 1.4371153846153846

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.905
AveOccup: 1.6233173076923078

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.877
AveOccup: 1.8095192307692307

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.912
AveOccup: 1.995721153846154

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.932
AveOccup: 2.181923076923077

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.61
AveOccup: 2.368125

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.427
AveOccup: 2.554326923076923

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.695
AveOccup: 2.740528846153846

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 3.048
AveOccup: 2.926730769230769

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.711
AveOccup: 3.112932692307692

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.38
AveOccup: 3.2991346153846157

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.426
AveOccup: 3.4853365384615387

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.436
AveOccup: 3.6715384615384616

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.428
AveOccup: 3.8577403846153846

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.425
AveOccup: 4.043942307692308

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.405
AveOccup: 4.2301442307692305

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.405
AveOccup: 4.4163461538461535

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.406
AveOccup: 4.602548076923076

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 4.78875

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 4.974951923076923

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 5.161153846153846

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 5.347355769230769

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 5.533557692307692

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 5.719759615384615

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 5.905961538461539

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 6.092163461538462

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 6.278365384615385

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 6.464567307692308

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 6.650769230769231

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 6.836971153846154

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 7.023173076923077

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 7.209375

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 7.395576923076923

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 7.5817788461538465

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 7.767980769230769

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 7.954182692307692

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 8.140384615384615

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 8.326586538461537

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 8.512788461538461

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 8.698990384615383

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 8.885192307692307

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 9.07139423076923

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 9.257596153846153

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 9.443798076923075

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 9.629999999999999

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 9.816201923076923

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 10.002403846153845

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 10.188605769230769

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 10.37480769230769

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 10.561009615384615

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 10.747211538461537

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 10.93341346153846

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 11.119615384615384

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 11.305817307692307

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 11.49201923076923

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 11.678221153846152

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 11.864423076923076

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 12.050624999999998

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 12.236826923076922

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 12.423028846153844

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 12.609230769230768

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 12.795432692307692

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 12.981634615384614

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 13.167836538461538

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 13.35403846153846

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 13.540240384615384

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 13.726442307692306

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 13.91264423076923

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 14.098846153846152

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 14.285048076923076

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 14.47125

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 14.657451923076922

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 14.843653846153845

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 15.029855769230767

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 15.216057692307691

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 15.402259615384613

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 15.588461538461537

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 15.774663461538461

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 15.960865384615383

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 16.147067307692307

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 16.33326923076923

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 16.519471153846155

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 16.705673076923077

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 16.891875

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 17.078076923076924

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 17.264278846153847

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 17.45048076923077

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 17.636682692307694

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 17.822884615384616

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 18.00908653846154

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 18.19528846153846

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 18.381490384615386

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 18.567692307692308

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 18.75389423076923

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 18.940096153846156

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 19.126298076923078

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ], - [ - "
id: 3080
prediction: 2.423
AveOccup: 19.3125

MedInc: 6.1563
HouseAge: 13.0
AveRooms: 6.3392070484581495
AveBedrms: 1.0440528634361232
Population: 557.0
Latitude: 35.44
Longitude: -118.93
_original_yhat_: 2.4020201000000005
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.875211199999998, - 2.875211199999998, - 2.875211199999998, - 2.875211199999998, - 2.875211199999998, - 2.9052113999999976, - 2.8766112999999986, - 2.9115713999999984, - 2.932351199999998, - 2.6102203999999993, - 2.4266201000000005, - 2.694850000000001, - 3.0480401, - 2.7108399999999993, - 2.3798900000000005, - 2.4256699999999998, - 2.4359899999999994, - 2.4281999999999995, - 2.42493, - 2.4048599999999998, - 2.4048599999999998, - 2.4063199999999996, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257, - 2.42257 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 8465
prediction: 2.53
AveOccup: 0.6923076923076923

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.53
AveOccup: 0.8785096153846154

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.53
AveOccup: 1.0647115384615384

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.474
AveOccup: 1.2509134615384614

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.578
AveOccup: 1.4371153846153846

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.371
AveOccup: 1.6233173076923078

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.348
AveOccup: 1.8095192307692307

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.276
AveOccup: 1.995721153846154

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.935
AveOccup: 2.181923076923077

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.984
AveOccup: 2.368125

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 2.016
AveOccup: 2.554326923076923

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.985
AveOccup: 2.740528846153846

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.927
AveOccup: 2.926730769230769

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.871
AveOccup: 3.112932692307692

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.856
AveOccup: 3.2991346153846157

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.786
AveOccup: 3.4853365384615387

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.736
AveOccup: 3.6715384615384616

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.685
AveOccup: 3.8577403846153846

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.654
AveOccup: 4.043942307692308

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.664
AveOccup: 4.2301442307692305

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.615
AveOccup: 4.4163461538461535

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.617
AveOccup: 4.602548076923076

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.613
AveOccup: 4.78875

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.601
AveOccup: 4.974951923076923

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.627
AveOccup: 5.161153846153846

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.63
AveOccup: 5.347355769230769

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.675
AveOccup: 5.533557692307692

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.654
AveOccup: 5.719759615384615

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.651
AveOccup: 5.905961538461539

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.651
AveOccup: 6.092163461538462

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.651
AveOccup: 6.278365384615385

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.651
AveOccup: 6.464567307692308

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.685
AveOccup: 6.650769230769231

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.699
AveOccup: 6.836971153846154

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.733
AveOccup: 7.023173076923077

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.733
AveOccup: 7.209375

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.733
AveOccup: 7.395576923076923

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.733
AveOccup: 7.5817788461538465

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.733
AveOccup: 7.767980769230769

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.719
AveOccup: 7.954182692307692

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.719
AveOccup: 8.140384615384615

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.719
AveOccup: 8.326586538461537

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.719
AveOccup: 8.512788461538461

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.707
AveOccup: 8.698990384615383

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.707
AveOccup: 8.885192307692307

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.707
AveOccup: 9.07139423076923

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.772
AveOccup: 9.257596153846153

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.772
AveOccup: 9.443798076923075

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.772
AveOccup: 9.629999999999999

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.772
AveOccup: 9.816201923076923

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.806
AveOccup: 10.002403846153845

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.806
AveOccup: 10.188605769230769

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.806
AveOccup: 10.37480769230769

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.806
AveOccup: 10.561009615384615

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.806
AveOccup: 10.747211538461537

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 10.93341346153846

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 11.119615384615384

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 11.305817307692307

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 11.49201923076923

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 11.678221153846152

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 11.864423076923076

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 12.050624999999998

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 12.236826923076922

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 12.423028846153844

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 12.609230769230768

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 12.795432692307692

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 12.981634615384614

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 13.167836538461538

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 13.35403846153846

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 13.540240384615384

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 13.726442307692306

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 13.91264423076923

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 14.098846153846152

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 14.285048076923076

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 14.47125

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 14.657451923076922

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 14.843653846153845

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 15.029855769230767

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 15.216057692307691

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 15.402259615384613

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 15.588461538461537

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 15.774663461538461

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 15.960865384615383

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 16.147067307692307

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 16.33326923076923

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 16.519471153846155

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 16.705673076923077

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 16.891875

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 17.078076923076924

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 17.264278846153847

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 17.45048076923077

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 17.636682692307694

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 17.822884615384616

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 18.00908653846154

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 18.19528846153846

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 18.381490384615386

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 18.567692307692308

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 18.75389423076923

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 18.940096153846156

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 19.126298076923078

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ], - [ - "
id: 8465
prediction: 1.872
AveOccup: 19.3125

MedInc: 2.4741
HouseAge: 8.0
AveRooms: 3.447460595446585
AveBedrms: 1.2294220665499125
Population: 2691.0
Latitude: 33.91
Longitude: -118.34
_original_yhat_: 1.9338599999999997
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.5295906, - 2.5295906, - 2.5295906, - 2.4744106, - 2.5781109000000004, - 2.3708603, - 2.3481901999999995, - 2.2759201999999994, - 1.9350299999999998, - 1.9835999999999994, - 2.0156701, - 1.9848599999999998, - 1.9266700000000005, - 1.8712300000000002, - 1.8563, - 1.7863699999999993, - 1.7356199999999995, - 1.6848799999999995, - 1.6543099999999995, - 1.6643199999999998, - 1.6151900000000001, - 1.6169900000000001, - 1.6132, - 1.6011499999999999, - 1.6274799999999996, - 1.6296399999999998, - 1.6753499999999995, - 1.6540199999999996, - 1.6509499999999997, - 1.6509499999999997, - 1.6509499999999997, - 1.6509499999999997, - 1.6854400999999999, - 1.6993401, - 1.7330001, - 1.7330001, - 1.7330001, - 1.7330001, - 1.7330001, - 1.7193701, - 1.7193701, - 1.7193701, - 1.7193701, - 1.7071501, - 1.7071501, - 1.7071501, - 1.7715803000000003, - 1.7715803000000003, - 1.7715803000000003, - 1.7715803000000003, - 1.8063504000000001, - 1.8063504000000001, - 1.8063504000000001, - 1.8063504000000001, - 1.8063504000000001, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003, - 1.8716306000000003 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 10611
prediction: 2.8
AveOccup: 0.6923076923076923

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.8
AveOccup: 0.8785096153846154

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.8
AveOccup: 1.0647115384615384

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.8
AveOccup: 1.2509134615384614

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.8
AveOccup: 1.4371153846153846

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.815
AveOccup: 1.6233173076923078

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.8
AveOccup: 1.8095192307692307

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.594
AveOccup: 1.995721153846154

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.65
AveOccup: 2.181923076923077

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.635
AveOccup: 2.368125

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.546
AveOccup: 2.554326923076923

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.561
AveOccup: 2.740528846153846

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.539
AveOccup: 2.926730769230769

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.501
AveOccup: 3.112932692307692

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.333
AveOccup: 3.2991346153846157

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.398
AveOccup: 3.4853365384615387

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.393
AveOccup: 3.6715384615384616

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.396
AveOccup: 3.8577403846153846

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.379
AveOccup: 4.043942307692308

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 4.2301442307692305

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 4.4163461538461535

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 4.602548076923076

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 4.78875

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 4.974951923076923

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 5.161153846153846

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 5.347355769230769

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 5.533557692307692

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 5.719759615384615

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 5.905961538461539

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 6.092163461538462

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 6.278365384615385

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 6.464567307692308

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 6.650769230769231

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 6.836971153846154

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 7.023173076923077

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 7.209375

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 7.395576923076923

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 7.5817788461538465

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 7.767980769230769

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 7.954182692307692

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 8.140384615384615

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 8.326586538461537

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 8.512788461538461

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 8.698990384615383

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 8.885192307692307

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 9.07139423076923

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 9.257596153846153

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 9.443798076923075

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 9.629999999999999

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 9.816201923076923

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 10.002403846153845

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 10.188605769230769

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 10.37480769230769

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 10.561009615384615

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 10.747211538461537

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 10.93341346153846

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 11.119615384615384

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 11.305817307692307

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 11.49201923076923

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 11.678221153846152

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 11.864423076923076

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 12.050624999999998

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 12.236826923076922

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 12.423028846153844

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 12.609230769230768

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 12.795432692307692

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 12.981634615384614

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 13.167836538461538

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 13.35403846153846

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 13.540240384615384

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 13.726442307692306

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 13.91264423076923

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 14.098846153846152

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 14.285048076923076

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 14.47125

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 14.657451923076922

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 14.843653846153845

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 15.029855769230767

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 15.216057692307691

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 15.402259615384613

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 15.588461538461537

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 15.774663461538461

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 15.960865384615383

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 16.147067307692307

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 16.33326923076923

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 16.519471153846155

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 16.705673076923077

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 16.891875

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 17.078076923076924

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 17.264278846153847

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 17.45048076923077

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 17.636682692307694

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 17.822884615384616

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 18.00908653846154

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 18.19528846153846

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 18.381490384615386

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 18.567692307692308

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 18.75389423076923

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 18.940096153846156

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 19.126298076923078

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ], - [ - "
id: 10611
prediction: 2.383
AveOccup: 19.3125

MedInc: 5.7858
HouseAge: 9.0
AveRooms: 5.498316498316498
AveBedrms: 0.9932659932659933
Population: 928.0
Latitude: 33.68
Longitude: -117.79
_original_yhat_: 2.514689999999997
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.8004813999999993, - 2.8004813999999993, - 2.8004813999999993, - 2.8004813999999993, - 2.8004813999999993, - 2.8154814999999997, - 2.8000913999999995, - 2.5938207, - 2.649830699999999, - 2.6348504999999993, - 2.5455202000000003, - 2.5607202, - 2.539309999999999, - 2.5011199999999976, - 2.332979999999998, - 2.397719999999998, - 2.392809999999998, - 2.396059999999998, - 2.378819999999999, - 2.3829099999999985, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983, - 2.3831499999999983 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 14675
prediction: 1.701
AveOccup: 0.6923076923076923

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.701
AveOccup: 0.8785096153846154

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.701
AveOccup: 1.0647115384615384

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.701
AveOccup: 1.2509134615384614

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.701
AveOccup: 1.4371153846153846

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.714
AveOccup: 1.6233173076923078

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.783
AveOccup: 1.8095192307692307

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.729
AveOccup: 1.995721153846154

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.644
AveOccup: 2.181923076923077

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.763
AveOccup: 2.368125

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.705
AveOccup: 2.554326923076923

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.627
AveOccup: 2.740528846153846

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.523
AveOccup: 2.926730769230769

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.411
AveOccup: 3.112932692307692

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.355
AveOccup: 3.2991346153846157

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.356
AveOccup: 3.4853365384615387

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.342
AveOccup: 3.6715384615384616

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.306
AveOccup: 3.8577403846153846

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.288
AveOccup: 4.043942307692308

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.293
AveOccup: 4.2301442307692305

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.258
AveOccup: 4.4163461538461535

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.062
AveOccup: 4.602548076923076

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 4.78875

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.03
AveOccup: 4.974951923076923

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 5.161153846153846

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 5.347355769230769

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 5.533557692307692

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 5.719759615384615

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 5.905961538461539

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 6.092163461538462

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 6.278365384615385

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 6.464567307692308

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 6.650769230769231

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 6.836971153846154

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 7.023173076923077

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 7.209375

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 7.395576923076923

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.028
AveOccup: 7.5817788461538465

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 7.767980769230769

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 7.954182692307692

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 8.140384615384615

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 8.326586538461537

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 8.512788461538461

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 8.698990384615383

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 8.885192307692307

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 9.07139423076923

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 9.257596153846153

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 9.443798076923075

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 9.629999999999999

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 9.816201923076923

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 10.002403846153845

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 10.188605769230769

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 10.37480769230769

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 10.561009615384615

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 10.747211538461537

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 10.93341346153846

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 11.119615384615384

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 11.305817307692307

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 11.49201923076923

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 11.678221153846152

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 11.864423076923076

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.019
AveOccup: 12.050624999999998

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 12.236826923076922

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 12.423028846153844

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 12.609230769230768

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 12.795432692307692

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 12.981634615384614

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 13.167836538461538

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 13.35403846153846

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 13.540240384615384

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 13.726442307692306

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 13.91264423076923

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 14.098846153846152

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 14.285048076923076

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 14.47125

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 14.657451923076922

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 14.843653846153845

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 15.029855769230767

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 15.216057692307691

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 15.402259615384613

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 15.588461538461537

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 15.774663461538461

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 15.960865384615383

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 16.147067307692307

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 16.33326923076923

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 16.519471153846155

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 16.705673076923077

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 16.891875

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 17.078076923076924

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 17.264278846153847

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 17.45048076923077

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 17.636682692307694

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 17.822884615384616

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 18.00908653846154

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 18.19528846153846

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 18.381490384615386

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 18.567692307692308

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 18.75389423076923

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 18.940096153846156

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 19.126298076923078

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ], - [ - "
id: 14675
prediction: 1.018
AveOccup: 19.3125

MedInc: 3.2197
HouseAge: 17.0
AveRooms: 6.53781512605042
AveBedrms: 0.984873949579832
Population: 2791.0
Latitude: 32.8
Longitude: -117.11
_original_yhat_: 1.0190199999999991
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.7014500000000004, - 1.7014500000000004, - 1.7014500000000004, - 1.7014500000000004, - 1.7014500000000004, - 1.7136700000000005, - 1.7825200000000003, - 1.7292200000000009, - 1.6442899999999998, - 1.7626499999999998, - 1.7047299999999999, - 1.6274300000000002, - 1.5227400000000002, - 1.4111100000000005, - 1.3545299999999998, - 1.3557299999999999, - 1.3422199999999997, - 1.3063199999999995, - 1.2881899999999993, - 1.2925199999999994, - 1.2576099999999995, - 1.0624999999999993, - 1.0190199999999991, - 1.0297699999999992, - 1.027919999999999, - 1.027919999999999, - 1.027919999999999, - 1.027919999999999, - 1.027919999999999, - 1.027919999999999, - 1.027919999999999, - 1.027919999999999, - 1.027919999999999, - 1.027919999999999, - 1.027919999999999, - 1.027919999999999, - 1.027919999999999, - 1.027919999999999, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.0186799999999991, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999, - 1.018359999999999 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 5325
prediction: 4.847
AveOccup: 0.6923076923076923

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.847
AveOccup: 0.8785096153846154

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.847
AveOccup: 1.0647115384615384

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.847
AveOccup: 1.2509134615384614

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.847
AveOccup: 1.4371153846153846

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.922
AveOccup: 1.6233173076923078

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.941
AveOccup: 1.8095192307692307

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.924
AveOccup: 1.995721153846154

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.635
AveOccup: 2.181923076923077

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.5
AveOccup: 2.368125

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.272
AveOccup: 2.554326923076923

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.996
AveOccup: 2.740528846153846

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.23
AveOccup: 2.926730769230769

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 4.081
AveOccup: 3.112932692307692

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.973
AveOccup: 3.2991346153846157

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.6
AveOccup: 3.4853365384615387

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.479
AveOccup: 3.6715384615384616

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.475
AveOccup: 3.8577403846153846

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.46
AveOccup: 4.043942307692308

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.46
AveOccup: 4.2301442307692305

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.46
AveOccup: 4.4163461538461535

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.46
AveOccup: 4.602548076923076

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.46
AveOccup: 4.78875

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 4.974951923076923

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 5.161153846153846

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 5.347355769230769

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 5.533557692307692

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 5.719759615384615

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 5.905961538461539

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 6.092163461538462

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 6.278365384615385

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 6.464567307692308

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 6.650769230769231

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 6.836971153846154

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 7.023173076923077

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 7.209375

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 7.395576923076923

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 7.5817788461538465

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 7.767980769230769

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 7.954182692307692

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 8.140384615384615

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 8.326586538461537

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 8.512788461538461

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 8.698990384615383

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 8.885192307692307

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 9.07139423076923

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 9.257596153846153

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 9.443798076923075

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 9.629999999999999

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 9.816201923076923

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 10.002403846153845

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 10.188605769230769

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 10.37480769230769

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 10.561009615384615

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 10.747211538461537

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 10.93341346153846

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 11.119615384615384

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 11.305817307692307

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 11.49201923076923

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 11.678221153846152

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 11.864423076923076

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 12.050624999999998

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 12.236826923076922

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 12.423028846153844

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 12.609230769230768

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 12.795432692307692

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 12.981634615384614

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 13.167836538461538

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 13.35403846153846

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 13.540240384615384

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 13.726442307692306

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 13.91264423076923

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 14.098846153846152

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 14.285048076923076

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 14.47125

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 14.657451923076922

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 14.843653846153845

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 15.029855769230767

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 15.216057692307691

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 15.402259615384613

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 15.588461538461537

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 15.774663461538461

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 15.960865384615383

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 16.147067307692307

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 16.33326923076923

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 16.519471153846155

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 16.705673076923077

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 16.891875

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 17.078076923076924

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 17.264278846153847

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 17.45048076923077

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 17.636682692307694

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 17.822884615384616

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 18.00908653846154

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 18.19528846153846

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 18.381490384615386

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 18.567692307692308

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 18.75389423076923

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 18.940096153846156

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 19.126298076923078

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ], - [ - "
id: 5325
prediction: 3.495
AveOccup: 19.3125

MedInc: 5.8587
HouseAge: 52.0
AveRooms: 5.885922330097087
AveBedrms: 1.0558252427184467
Population: 962.0
Latitude: 34.04
Longitude: -118.43
_original_yhat_: 4.6431405
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.846688299999991, - 4.846688299999991, - 4.846688299999991, - 4.846688299999991, - 4.846688299999991, - 4.921688699999991, - 4.941308999999991, - 4.9238887999999905, - 4.635402199999996, - 4.5001209, - 4.271650700000001, - 3.9961305999999994, - 4.2300413999999975, - 4.081190899999998, - 3.9732502, - 3.5995401, - 3.4789399999999997, - 3.4750799999999997, - 3.4599399999999996, - 3.4599399999999996, - 3.4599399999999996, - 3.4599399999999996, - 3.4599399999999996, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101, - 3.4949101 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 5710
prediction: 3.27
AveOccup: 0.6923076923076923

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.27
AveOccup: 0.8785096153846154

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.27
AveOccup: 1.0647115384615384

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.27
AveOccup: 1.2509134615384614

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.283
AveOccup: 1.4371153846153846

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.281
AveOccup: 1.6233173076923078

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 3.052
AveOccup: 1.8095192307692307

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.836
AveOccup: 1.995721153846154

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.452
AveOccup: 2.181923076923077

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.436
AveOccup: 2.368125

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.139
AveOccup: 2.554326923076923

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.106
AveOccup: 2.740528846153846

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 2.002
AveOccup: 2.926730769230769

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.878
AveOccup: 3.112932692307692

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.761
AveOccup: 3.2991346153846157

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.661
AveOccup: 3.4853365384615387

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.565
AveOccup: 3.6715384615384616

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.539
AveOccup: 3.8577403846153846

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.547
AveOccup: 4.043942307692308

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.539
AveOccup: 4.2301442307692305

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.466
AveOccup: 4.4163461538461535

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.379
AveOccup: 4.602548076923076

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.383
AveOccup: 4.78875

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.399
AveOccup: 4.974951923076923

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.404
AveOccup: 5.161153846153846

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.398
AveOccup: 5.347355769230769

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.403
AveOccup: 5.533557692307692

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.394
AveOccup: 5.719759615384615

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.385
AveOccup: 5.905961538461539

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.394
AveOccup: 6.092163461538462

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.394
AveOccup: 6.278365384615385

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.394
AveOccup: 6.464567307692308

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.396
AveOccup: 6.650769230769231

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.396
AveOccup: 6.836971153846154

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.396
AveOccup: 7.023173076923077

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.396
AveOccup: 7.209375

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.401
AveOccup: 7.395576923076923

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.401
AveOccup: 7.5817788461538465

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.401
AveOccup: 7.767980769230769

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.401
AveOccup: 7.954182692307692

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 8.140384615384615

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 8.326586538461537

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 8.512788461538461

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 8.698990384615383

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 8.885192307692307

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 9.07139423076923

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 9.257596153846153

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 9.443798076923075

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 9.629999999999999

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 9.816201923076923

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 10.002403846153845

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 10.188605769230769

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 10.37480769230769

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 10.561009615384615

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 10.747211538461537

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 10.93341346153846

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 11.119615384615384

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 11.305817307692307

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.407
AveOccup: 11.49201923076923

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 11.678221153846152

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 11.864423076923076

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 12.050624999999998

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 12.236826923076922

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 12.423028846153844

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 12.609230769230768

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 12.795432692307692

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 12.981634615384614

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 13.167836538461538

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 13.35403846153846

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 13.540240384615384

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 13.726442307692306

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.406
AveOccup: 13.91264423076923

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.377
AveOccup: 14.098846153846152

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 14.285048076923076

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 14.47125

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 14.657451923076922

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 14.843653846153845

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 15.029855769230767

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 15.216057692307691

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 15.402259615384613

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 15.588461538461537

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 15.774663461538461

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 15.960865384615383

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 16.147067307692307

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 16.33326923076923

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 16.519471153846155

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 16.705673076923077

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 16.891875

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 17.078076923076924

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 17.264278846153847

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 17.45048076923077

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 17.636682692307694

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 17.822884615384616

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 18.00908653846154

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 18.19528846153846

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 18.381490384615386

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 18.567692307692308

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.369
AveOccup: 18.75389423076923

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.322
AveOccup: 18.940096153846156

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.322
AveOccup: 19.126298076923078

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ], - [ - "
id: 5710
prediction: 1.322
AveOccup: 19.3125

MedInc: 3.4148
HouseAge: 38.0
AveRooms: 3.6243523316062176
AveBedrms: 1.0103626943005182
Population: 859.0
Latitude: 34.21
Longitude: -118.23
_original_yhat_: 2.4137400000000033
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.2702511, - 3.2702511, - 3.2702511, - 3.2702511, - 3.2829709000000005, - 3.2812503999999993, - 3.0520401000000006, - 2.8359300000000007, - 2.4517400000000027, - 2.436070000000001, - 2.1392198999999996, - 2.1059098999999994, - 2.0023798999999998, - 1.8780000000000001, - 1.7609199999999994, - 1.6613000000000002, - 1.5646000000000007, - 1.5386499999999999, - 1.54667, - 1.53894, - 1.4664499999999998, - 1.37923, - 1.38281, - 1.3989700000000003, - 1.4037700000000002, - 1.39847, - 1.40263, - 1.3944000000000003, - 1.3850399999999998, - 1.3937800000000002, - 1.3940200000000003, - 1.3940200000000003, - 1.3958300000000003, - 1.3958300000000003, - 1.3958300000000003, - 1.3958300000000003, - 1.4011500000000001, - 1.4011500000000001, - 1.4011500000000001, - 1.4011500000000001, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4066000000000003, - 1.4063700000000003, - 1.4063700000000003, - 1.4059800000000002, - 1.4062200000000002, - 1.4062200000000002, - 1.4062200000000002, - 1.4062200000000002, - 1.4062200000000002, - 1.4062200000000002, - 1.4062200000000002, - 1.4062200000000002, - 1.4062200000000002, - 1.4062200000000002, - 1.3773800000000003, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3693000000000004, - 1.3219000000000003, - 1.3219000000000003, - 1.3219000000000003 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 6001
prediction: 4.022
AveOccup: 0.6923076923076923

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.022
AveOccup: 0.8785096153846154

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.022
AveOccup: 1.0647115384615384

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.022
AveOccup: 1.2509134615384614

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.061
AveOccup: 1.4371153846153846

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 4.101
AveOccup: 1.6233173076923078

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.995
AveOccup: 1.8095192307692307

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.465
AveOccup: 1.995721153846154

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 3.178
AveOccup: 2.181923076923077

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 2.591
AveOccup: 2.368125

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 2.114
AveOccup: 2.554326923076923

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 2.068
AveOccup: 2.740528846153846

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.591
AveOccup: 2.926730769230769

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.568
AveOccup: 3.112932692307692

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.548
AveOccup: 3.2991346153846157

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.536
AveOccup: 3.4853365384615387

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.527
AveOccup: 3.6715384615384616

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.517
AveOccup: 3.8577403846153846

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.493
AveOccup: 4.043942307692308

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.495
AveOccup: 4.2301442307692305

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.482
AveOccup: 4.4163461538461535

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.477
AveOccup: 4.602548076923076

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.478
AveOccup: 4.78875

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.464
AveOccup: 4.974951923076923

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.495
AveOccup: 5.161153846153846

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.513
AveOccup: 5.347355769230769

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.513
AveOccup: 5.533557692307692

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.507
AveOccup: 5.719759615384615

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.507
AveOccup: 5.905961538461539

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.503
AveOccup: 6.092163461538462

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.503
AveOccup: 6.278365384615385

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.503
AveOccup: 6.464567307692308

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.503
AveOccup: 6.650769230769231

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.503
AveOccup: 6.836971153846154

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.523
AveOccup: 7.023173076923077

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 7.209375

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 7.395576923076923

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 7.5817788461538465

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 7.767980769230769

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 7.954182692307692

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 8.140384615384615

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 8.326586538461537

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 8.512788461538461

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 8.698990384615383

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 8.885192307692307

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 9.07139423076923

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 9.257596153846153

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 9.443798076923075

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 9.629999999999999

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 9.816201923076923

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 10.002403846153845

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 10.188605769230769

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 10.37480769230769

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 10.561009615384615

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 10.747211538461537

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 10.93341346153846

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 11.119615384615384

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 11.305817307692307

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 11.49201923076923

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 11.678221153846152

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 11.864423076923076

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 12.050624999999998

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 12.236826923076922

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 12.423028846153844

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 12.609230769230768

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 12.795432692307692

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 12.981634615384614

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 13.167836538461538

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 13.35403846153846

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 13.540240384615384

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 13.726442307692306

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 13.91264423076923

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 14.098846153846152

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 14.285048076923076

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 14.47125

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 14.657451923076922

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 14.843653846153845

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 15.029855769230767

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 15.216057692307691

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 15.402259615384613

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 15.588461538461537

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 15.774663461538461

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 15.960865384615383

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 16.147067307692307

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 16.33326923076923

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 16.519471153846155

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 16.705673076923077

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 16.891875

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 17.078076923076924

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 17.264278846153847

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 17.45048076923077

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 17.636682692307694

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 17.822884615384616

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 18.00908653846154

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 18.19528846153846

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 18.381490384615386

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 18.567692307692308

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.57
AveOccup: 18.75389423076923

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.564
AveOccup: 18.940096153846156

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.564
AveOccup: 19.126298076923078

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ], - [ - "
id: 6001
prediction: 1.564
AveOccup: 19.3125

MedInc: 4.2143
HouseAge: 36.0
AveRooms: 5.677064220183486
AveBedrms: 1.0201834862385322
Population: 1672.0
Latitude: 34.09
Longitude: -117.75
_original_yhat_: 1.5503699999999982
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.021972799999998, - 4.021972799999998, - 4.021972799999998, - 4.021972799999998, - 4.060802899999998, - 4.100883299999998, - 3.994573199999997, - 3.4647614999999967, - 3.1778505999999975, - 2.5907099999999987, - 2.11425, - 2.067580000000001, - 1.5908499999999988, - 1.5681999999999983, - 1.5475899999999985, - 1.5361599999999984, - 1.5274199999999984, - 1.5173699999999988, - 1.493249999999999, - 1.4949199999999991, - 1.481689999999999, - 1.477489999999999, - 1.477819999999999, - 1.463919999999999, - 1.4949299999999988, - 1.5126399999999989, - 1.5126399999999989, - 1.506699999999999, - 1.506699999999999, - 1.502609999999999, - 1.502609999999999, - 1.502609999999999, - 1.502609999999999, - 1.502609999999999, - 1.5232599999999987, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5702599999999989, - 1.5638799999999988, - 1.5638799999999988, - 1.5638799999999988 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 14112
prediction: 1.566
AveOccup: 0.6923076923076923

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.566
AveOccup: 0.8785096153846154

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.566
AveOccup: 1.0647115384615384

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.566
AveOccup: 1.2509134615384614

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.567
AveOccup: 1.4371153846153846

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.59
AveOccup: 1.6233173076923078

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.551
AveOccup: 1.8095192307692307

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.497
AveOccup: 1.995721153846154

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.437
AveOccup: 2.181923076923077

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.334
AveOccup: 2.368125

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.309
AveOccup: 2.554326923076923

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.278
AveOccup: 2.740528846153846

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.185
AveOccup: 2.926730769230769

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.07
AveOccup: 3.112932692307692

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.046
AveOccup: 3.2991346153846157

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.026
AveOccup: 3.4853365384615387

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.006
AveOccup: 3.6715384615384616

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.007
AveOccup: 3.8577403846153846

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 0.995
AveOccup: 4.043942307692308

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 0.992
AveOccup: 4.2301442307692305

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 0.988
AveOccup: 4.4163461538461535

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 0.994
AveOccup: 4.602548076923076

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 0.991
AveOccup: 4.78875

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.043
AveOccup: 4.974951923076923

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.041
AveOccup: 5.161153846153846

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.054
AveOccup: 5.347355769230769

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.054
AveOccup: 5.533557692307692

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.081
AveOccup: 5.719759615384615

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 5.905961538461539

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 6.092163461538462

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 6.278365384615385

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 6.464567307692308

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 6.650769230769231

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 6.836971153846154

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 7.023173076923077

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 7.209375

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 7.395576923076923

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 7.5817788461538465

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 7.767980769230769

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 7.954182692307692

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 8.140384615384615

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 8.326586538461537

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 8.512788461538461

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 8.698990384615383

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 8.885192307692307

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 9.07139423076923

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 9.257596153846153

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 9.443798076923075

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 9.629999999999999

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 9.816201923076923

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 10.002403846153845

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 10.188605769230769

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 10.37480769230769

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 10.561009615384615

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 10.747211538461537

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 10.93341346153846

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 11.119615384615384

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 11.305817307692307

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 11.49201923076923

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 11.678221153846152

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 11.864423076923076

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 12.050624999999998

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 12.236826923076922

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 12.423028846153844

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 12.609230769230768

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 12.795432692307692

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 12.981634615384614

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 13.167836538461538

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 13.35403846153846

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 13.540240384615384

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 13.726442307692306

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 13.91264423076923

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 14.098846153846152

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 14.285048076923076

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 14.47125

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 14.657451923076922

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 14.843653846153845

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 15.029855769230767

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 15.216057692307691

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 15.402259615384613

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 15.588461538461537

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 15.774663461538461

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 15.960865384615383

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 16.147067307692307

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 16.33326923076923

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 16.519471153846155

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 16.705673076923077

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 16.891875

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 17.078076923076924

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 17.264278846153847

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 17.45048076923077

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 17.636682692307694

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 17.822884615384616

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 18.00908653846154

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 18.19528846153846

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 18.381490384615386

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 18.567692307692308

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 18.75389423076923

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 18.940096153846156

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 19.126298076923078

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ], - [ - "
id: 14112
prediction: 1.095
AveOccup: 19.3125

MedInc: 2.2
HouseAge: 25.0
AveRooms: 4.503164556962025
AveBedrms: 1.018987341772152
Population: 2272.0
Latitude: 32.74
Longitude: -117.11
_original_yhat_: 1.013609999999999
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.5664199999999997, - 1.5664199999999997, - 1.5664199999999997, - 1.5664199999999997, - 1.5666699999999998, - 1.5900599999999994, - 1.5510199999999994, - 1.4965699999999995, - 1.4366299999999996, - 1.3342999999999996, - 1.3092, - 1.2781499999999997, - 1.1851899999999995, - 1.0700399999999994, - 1.0456399999999995, - 1.0262599999999988, - 1.005669999999999, - 1.007459999999999, - 0.9952599999999989, - 0.9920699999999989, - 0.987569999999999, - 0.9938199999999989, - 0.990879999999999, - 1.042769999999999, - 1.0409199999999992, - 1.0541099999999992, - 1.0541099999999992, - 1.0812499999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0949799999999994, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993, - 1.0946599999999993 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 11419
prediction: 4.084
AveOccup: 0.6923076923076923

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.084
AveOccup: 0.8785096153846154

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.084
AveOccup: 1.0647115384615384

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.084
AveOccup: 1.2509134615384614

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.084
AveOccup: 1.4371153846153846

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.153
AveOccup: 1.6233173076923078

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.121
AveOccup: 1.8095192307692307

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 4.126
AveOccup: 1.995721153846154

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.737
AveOccup: 2.181923076923077

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.466
AveOccup: 2.368125

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.133
AveOccup: 2.554326923076923

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.066
AveOccup: 2.740528846153846

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 3.026
AveOccup: 2.926730769230769

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.941
AveOccup: 3.112932692307692

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.794
AveOccup: 3.2991346153846157

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.777
AveOccup: 3.4853365384615387

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.782
AveOccup: 3.6715384615384616

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.758
AveOccup: 3.8577403846153846

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.716
AveOccup: 4.043942307692308

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 4.2301442307692305

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 4.4163461538461535

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 4.602548076923076

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 4.78875

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 4.974951923076923

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 5.161153846153846

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 5.347355769230769

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 5.533557692307692

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 5.719759615384615

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 5.905961538461539

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 6.092163461538462

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 6.278365384615385

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 6.464567307692308

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 6.650769230769231

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 6.836971153846154

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 7.023173076923077

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 7.209375

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 7.395576923076923

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 7.5817788461538465

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 7.767980769230769

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 7.954182692307692

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 8.140384615384615

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 8.326586538461537

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 8.512788461538461

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 8.698990384615383

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 8.885192307692307

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 9.07139423076923

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 9.257596153846153

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 9.443798076923075

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 9.629999999999999

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 9.816201923076923

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 10.002403846153845

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 10.188605769230769

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 10.37480769230769

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 10.561009615384615

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 10.747211538461537

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 10.93341346153846

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 11.119615384615384

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 11.305817307692307

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 11.49201923076923

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 11.678221153846152

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 11.864423076923076

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 12.050624999999998

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 12.236826923076922

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 12.423028846153844

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 12.609230769230768

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 12.795432692307692

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 12.981634615384614

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 13.167836538461538

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 13.35403846153846

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 13.540240384615384

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 13.726442307692306

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 13.91264423076923

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 14.098846153846152

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 14.285048076923076

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 14.47125

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 14.657451923076922

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 14.843653846153845

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 15.029855769230767

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 15.216057692307691

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 15.402259615384613

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 15.588461538461537

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 15.774663461538461

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 15.960865384615383

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 16.147067307692307

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 16.33326923076923

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 16.519471153846155

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 16.705673076923077

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 16.891875

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 17.078076923076924

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 17.264278846153847

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 17.45048076923077

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 17.636682692307694

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 17.822884615384616

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 18.00908653846154

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 18.19528846153846

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 18.381490384615386

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 18.567692307692308

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 18.75389423076923

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 18.940096153846156

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 19.126298076923078

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ], - [ - "
id: 11419
prediction: 2.704
AveOccup: 19.3125

MedInc: 6.091
HouseAge: 20.0
AveRooms: 7.229166666666667
AveBedrms: 1.0208333333333333
Population: 1319.0
Latitude: 33.69
Longitude: -117.96
_original_yhat_: 2.9322499999999985
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.084344299999998, - 4.084344299999998, - 4.084344299999998, - 4.084344299999998, - 4.084344299999998, - 4.152864599999997, - 4.1213742999999985, - 4.126264199999998, - 3.7367320000000013, - 3.4663912000000012, - 3.132860700000003, - 3.0661601000000003, - 3.025590299999999, - 2.9405899999999985, - 2.7940100000000014, - 2.7767600000000017, - 2.7822400000000016, - 2.757810000000001, - 2.7163700000000004, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008, - 2.7043600000000008 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 11326
prediction: 1.562
AveOccup: 0.6923076923076923

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.562
AveOccup: 0.8785096153846154

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.562
AveOccup: 1.0647115384615384

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.559
AveOccup: 1.2509134615384614

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.616
AveOccup: 1.4371153846153846

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.937
AveOccup: 1.6233173076923078

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 2.012
AveOccup: 1.8095192307692307

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.979
AveOccup: 1.995721153846154

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.902
AveOccup: 2.181923076923077

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.776
AveOccup: 2.368125

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.794
AveOccup: 2.554326923076923

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.79
AveOccup: 2.740528846153846

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.746
AveOccup: 2.926730769230769

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.768
AveOccup: 3.112932692307692

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.745
AveOccup: 3.2991346153846157

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.729
AveOccup: 3.4853365384615387

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.724
AveOccup: 3.6715384615384616

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.695
AveOccup: 3.8577403846153846

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.671
AveOccup: 4.043942307692308

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.659
AveOccup: 4.2301442307692305

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.644
AveOccup: 4.4163461538461535

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.629
AveOccup: 4.602548076923076

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.676
AveOccup: 4.78875

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.669
AveOccup: 4.974951923076923

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.71
AveOccup: 5.161153846153846

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.693
AveOccup: 5.347355769230769

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.727
AveOccup: 5.533557692307692

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.703
AveOccup: 5.719759615384615

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.7
AveOccup: 5.905961538461539

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.7
AveOccup: 6.092163461538462

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.7
AveOccup: 6.278365384615385

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.702
AveOccup: 6.464567307692308

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.707
AveOccup: 6.650769230769231

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.71
AveOccup: 6.836971153846154

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.71
AveOccup: 7.023173076923077

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.71
AveOccup: 7.209375

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.71
AveOccup: 7.395576923076923

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 7.5817788461538465

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 7.767980769230769

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 7.954182692307692

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 8.140384615384615

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 8.326586538461537

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 8.512788461538461

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 8.698990384615383

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 8.885192307692307

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 9.07139423076923

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 9.257596153846153

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 9.443798076923075

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 9.629999999999999

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 9.816201923076923

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 10.002403846153845

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 10.188605769230769

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 10.37480769230769

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 10.561009615384615

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 10.747211538461537

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 10.93341346153846

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 11.119615384615384

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 11.305817307692307

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 11.49201923076923

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 11.678221153846152

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 11.864423076923076

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 12.050624999999998

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 12.236826923076922

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 12.423028846153844

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 12.609230769230768

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 12.795432692307692

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 12.981634615384614

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 13.167836538461538

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 13.35403846153846

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 13.540240384615384

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 13.726442307692306

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 13.91264423076923

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 14.098846153846152

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 14.285048076923076

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 14.47125

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 14.657451923076922

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 14.843653846153845

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 15.029855769230767

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 15.216057692307691

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 15.402259615384613

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 15.588461538461537

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 15.774663461538461

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 15.960865384615383

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 16.147067307692307

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 16.33326923076923

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 16.519471153846155

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 16.705673076923077

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 16.891875

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 17.078076923076924

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 17.264278846153847

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 17.45048076923077

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 17.636682692307694

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 17.822884615384616

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 18.00908653846154

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 18.19528846153846

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 18.381490384615386

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 18.567692307692308

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 18.75389423076923

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 18.940096153846156

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 19.126298076923078

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ], - [ - "
id: 11326
prediction: 1.719
AveOccup: 19.3125

MedInc: 2.7986
HouseAge: 14.0
AveRooms: 4.586837294332724
AveBedrms: 1.117001828153565
Population: 1814.0
Latitude: 33.75
Longitude: -117.96
_original_yhat_: 1.748669999999999
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.5623001000000007, - 1.5623001000000007, - 1.5623001000000007, - 1.558630100000001, - 1.6159001000000008, - 1.9369101000000004, - 2.0119201, - 1.9793600999999996, - 1.9016200999999995, - 1.7763000000000004, - 1.7941200000000006, - 1.7895400000000006, - 1.7464900000000005, - 1.7682199999999995, - 1.744669999999999, - 1.728509999999999, - 1.7240699999999993, - 1.695389999999999, - 1.6706099999999995, - 1.65926, - 1.6440999999999997, - 1.6293499999999996, - 1.6755600000000004, - 1.6691600000000002, - 1.7099000000000004, - 1.69298, - 1.7272700000000005, - 1.7029600000000005, - 1.6999300000000002, - 1.6999300000000002, - 1.7001700000000002, - 1.7020000000000004, - 1.7065400000000006, - 1.7099600000000006, - 1.7099600000000006, - 1.7099600000000006, - 1.7099600000000006, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008, - 1.7193400000000008 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 14541
prediction: 2.426
AveOccup: 0.6923076923076923

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.426
AveOccup: 0.8785096153846154

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.426
AveOccup: 1.0647115384615384

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.426
AveOccup: 1.2509134615384614

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.426
AveOccup: 1.4371153846153846

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.447
AveOccup: 1.6233173076923078

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.467
AveOccup: 1.8095192307692307

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.443
AveOccup: 1.995721153846154

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.503
AveOccup: 2.181923076923077

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.388
AveOccup: 2.368125

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 2.058
AveOccup: 2.554326923076923

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.994
AveOccup: 2.740528846153846

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.974
AveOccup: 2.926730769230769

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.934
AveOccup: 3.112932692307692

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.82
AveOccup: 3.2991346153846157

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.807
AveOccup: 3.4853365384615387

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.816
AveOccup: 3.6715384615384616

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.816
AveOccup: 3.8577403846153846

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.816
AveOccup: 4.043942307692308

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.815
AveOccup: 4.2301442307692305

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.813
AveOccup: 4.4163461538461535

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.796
AveOccup: 4.602548076923076

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.79
AveOccup: 4.78875

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.79
AveOccup: 4.974951923076923

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.79
AveOccup: 5.161153846153846

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.79
AveOccup: 5.347355769230769

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.791
AveOccup: 5.533557692307692

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 5.719759615384615

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 5.905961538461539

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 6.092163461538462

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 6.278365384615385

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 6.464567307692308

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 6.650769230769231

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 6.836971153846154

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 7.023173076923077

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 7.209375

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 7.395576923076923

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 7.5817788461538465

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 7.767980769230769

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 7.954182692307692

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 8.140384615384615

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 8.326586538461537

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 8.512788461538461

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 8.698990384615383

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 8.885192307692307

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 9.07139423076923

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 9.257596153846153

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 9.443798076923075

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 9.629999999999999

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 9.816201923076923

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 10.002403846153845

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 10.188605769230769

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 10.37480769230769

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 10.561009615384615

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 10.747211538461537

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 10.93341346153846

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 11.119615384615384

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 11.305817307692307

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 11.49201923076923

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 11.678221153846152

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 11.864423076923076

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 12.050624999999998

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 12.236826923076922

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 12.423028846153844

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 12.609230769230768

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 12.795432692307692

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 12.981634615384614

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 13.167836538461538

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 13.35403846153846

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 13.540240384615384

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 13.726442307692306

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 13.91264423076923

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 14.098846153846152

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 14.285048076923076

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 14.47125

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 14.657451923076922

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 14.843653846153845

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 15.029855769230767

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 15.216057692307691

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 15.402259615384613

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 15.588461538461537

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 15.774663461538461

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 15.960865384615383

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 16.147067307692307

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 16.33326923076923

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 16.519471153846155

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 16.705673076923077

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 16.891875

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 17.078076923076924

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 17.264278846153847

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 17.45048076923077

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 17.636682692307694

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 17.822884615384616

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 18.00908653846154

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 18.19528846153846

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 18.381490384615386

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 18.567692307692308

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 18.75389423076923

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 18.940096153846156

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 19.126298076923078

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ], - [ - "
id: 14541
prediction: 1.773
AveOccup: 19.3125

MedInc: 4.9024
HouseAge: 16.0
AveRooms: 5.813267813267813
AveBedrms: 0.9631449631449631
Population: 1482.0
Latitude: 32.92
Longitude: -117.15
_original_yhat_: 1.8162799999999997
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.4262300999999997, - 2.4262300999999997, - 2.4262300999999997, - 2.4262300999999997, - 2.4262300999999997, - 2.4466701, - 2.4670001000000004, - 2.4430301, - 2.502600099999999, - 2.3878999999999997, - 2.0579599999999996, - 1.99407, - 1.9744300000000008, - 1.9340000000000006, - 1.8196600000000003, - 1.80717, - 1.8160899999999995, - 1.8161799999999995, - 1.8160299999999996, - 1.8148299999999995, - 1.8131399999999993, - 1.7957599999999994, - 1.7904799999999994, - 1.7904799999999994, - 1.7904799999999994, - 1.7904799999999994, - 1.7907499999999994, - 1.7725499999999992, - 1.7725499999999992, - 1.7725499999999992, - 1.7725499999999992, - 1.7725499999999992, - 1.7725499999999992, - 1.7725499999999992, - 1.7725499999999992, - 1.7725499999999992, - 1.7725499999999992, - 1.7725499999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992, - 1.7733999999999992 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 3618
prediction: 3.947
AveOccup: 0.6923076923076923

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.947
AveOccup: 0.8785096153846154

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.947
AveOccup: 1.0647115384615384

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.947
AveOccup: 1.2509134615384614

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.947
AveOccup: 1.4371153846153846

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.986
AveOccup: 1.6233173076923078

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.975
AveOccup: 1.8095192307692307

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.866
AveOccup: 1.995721153846154

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.435
AveOccup: 2.181923076923077

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.253
AveOccup: 2.368125

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.129
AveOccup: 2.554326923076923

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 3.058
AveOccup: 2.740528846153846

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 2.627
AveOccup: 2.926730769230769

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 2.323
AveOccup: 3.112932692307692

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.996
AveOccup: 3.2991346153846157

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.803
AveOccup: 3.4853365384615387

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.8
AveOccup: 3.6715384615384616

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.808
AveOccup: 3.8577403846153846

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.813
AveOccup: 4.043942307692308

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.805
AveOccup: 4.2301442307692305

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.795
AveOccup: 4.4163461538461535

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.792
AveOccup: 4.602548076923076

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.787
AveOccup: 4.78875

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.854
AveOccup: 4.974951923076923

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.884
AveOccup: 5.161153846153846

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.884
AveOccup: 5.347355769230769

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.884
AveOccup: 5.533557692307692

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.884
AveOccup: 5.719759615384615

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.884
AveOccup: 5.905961538461539

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.884
AveOccup: 6.092163461538462

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.884
AveOccup: 6.278365384615385

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.884
AveOccup: 6.464567307692308

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.884
AveOccup: 6.650769230769231

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.884
AveOccup: 6.836971153846154

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 7.023173076923077

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 7.209375

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 7.395576923076923

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 7.5817788461538465

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 7.767980769230769

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 7.954182692307692

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 8.140384615384615

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 8.326586538461537

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 8.512788461538461

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 8.698990384615383

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 8.885192307692307

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 9.07139423076923

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 9.257596153846153

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 9.443798076923075

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 9.629999999999999

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 9.816201923076923

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 10.002403846153845

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 10.188605769230769

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 10.37480769230769

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 10.561009615384615

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 10.747211538461537

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 10.93341346153846

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 11.119615384615384

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 11.305817307692307

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 11.49201923076923

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 11.678221153846152

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 11.864423076923076

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 12.050624999999998

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 12.236826923076922

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 12.423028846153844

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 12.609230769230768

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 12.795432692307692

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 12.981634615384614

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 13.167836538461538

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 13.35403846153846

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 13.540240384615384

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 13.726442307692306

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 13.91264423076923

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 14.098846153846152

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 14.285048076923076

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 14.47125

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 14.657451923076922

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 14.843653846153845

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 15.029855769230767

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 15.216057692307691

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 15.402259615384613

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 15.588461538461537

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 15.774663461538461

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 15.960865384615383

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 16.147067307692307

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 16.33326923076923

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 16.519471153846155

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 16.705673076923077

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 16.891875

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 17.078076923076924

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 17.264278846153847

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 17.45048076923077

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 17.636682692307694

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 17.822884615384616

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 18.00908653846154

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 18.19528846153846

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 18.381490384615386

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 18.567692307692308

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 18.75389423076923

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 18.940096153846156

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 19.126298076923078

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ], - [ - "
id: 3618
prediction: 1.902
AveOccup: 19.3125

MedInc: 5.5124
HouseAge: 34.0
AveRooms: 3.9156626506024095
AveBedrms: 0.7228915662650602
Population: 433.0
Latitude: 34.26
Longitude: -118.44
_original_yhat_: 1.8843302999999978
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.947381999999995, - 3.947381999999995, - 3.947381999999995, - 3.947381999999995, - 3.947381999999995, - 3.986091999999995, - 3.974661699999994, - 3.8661111999999958, - 3.435371599999998, - 3.2528418, - 3.1290511999999997, - 3.0577307999999994, - 2.626580299999999, - 2.323100299999999, - 1.996329999999999, - 1.803389999999999, - 1.7999199999999984, - 1.8084199999999988, - 1.8131199999999985, - 1.8050199999999983, - 1.7953399999999986, - 1.7918899999999984, - 1.7874299999999983, - 1.853910199999998, - 1.8843302999999978, - 1.8843302999999978, - 1.8843302999999978, - 1.8843302999999978, - 1.8843302999999978, - 1.8843302999999978, - 1.8843302999999978, - 1.8843302999999978, - 1.8843302999999978, - 1.8843302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978, - 1.9021302999999978 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 2053
prediction: 2.081
AveOccup: 0.6923076923076923

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 2.081
AveOccup: 0.8785096153846154

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 2.081
AveOccup: 1.0647115384615384

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 2.067
AveOccup: 1.2509134615384614

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.926
AveOccup: 1.4371153846153846

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.715
AveOccup: 1.6233173076923078

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.708
AveOccup: 1.8095192307692307

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.735
AveOccup: 1.995721153846154

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 1.039
AveOccup: 2.181923076923077

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.972
AveOccup: 2.368125

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.901
AveOccup: 2.554326923076923

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.871
AveOccup: 2.740528846153846

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.733
AveOccup: 2.926730769230769

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.582
AveOccup: 3.112932692307692

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.551
AveOccup: 3.2991346153846157

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.572
AveOccup: 3.4853365384615387

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.56
AveOccup: 3.6715384615384616

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.532
AveOccup: 3.8577403846153846

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.548
AveOccup: 4.043942307692308

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.545
AveOccup: 4.2301442307692305

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.546
AveOccup: 4.4163461538461535

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.542
AveOccup: 4.602548076923076

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.542
AveOccup: 4.78875

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.54
AveOccup: 4.974951923076923

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.537
AveOccup: 5.161153846153846

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.537
AveOccup: 5.347355769230769

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.535
AveOccup: 5.533557692307692

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.583
AveOccup: 5.719759615384615

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.613
AveOccup: 5.905961538461539

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.666
AveOccup: 6.092163461538462

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.666
AveOccup: 6.278365384615385

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.666
AveOccup: 6.464567307692308

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.666
AveOccup: 6.650769230769231

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.669
AveOccup: 6.836971153846154

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.669
AveOccup: 7.023173076923077

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.669
AveOccup: 7.209375

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.669
AveOccup: 7.395576923076923

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.669
AveOccup: 7.5817788461538465

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.726
AveOccup: 7.767980769230769

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.726
AveOccup: 7.954182692307692

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.726
AveOccup: 8.140384615384615

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.726
AveOccup: 8.326586538461537

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.726
AveOccup: 8.512788461538461

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.726
AveOccup: 8.698990384615383

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.726
AveOccup: 8.885192307692307

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.726
AveOccup: 9.07139423076923

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.726
AveOccup: 9.257596153846153

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.726
AveOccup: 9.443798076923075

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.726
AveOccup: 9.629999999999999

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.726
AveOccup: 9.816201923076923

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.751
AveOccup: 10.002403846153845

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.762
AveOccup: 10.188605769230769

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.762
AveOccup: 10.37480769230769

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.762
AveOccup: 10.561009615384615

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.762
AveOccup: 10.747211538461537

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.774
AveOccup: 10.93341346153846

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.774
AveOccup: 11.119615384615384

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 11.305817307692307

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 11.49201923076923

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 11.678221153846152

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 11.864423076923076

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 12.050624999999998

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 12.236826923076922

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 12.423028846153844

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 12.609230769230768

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 12.795432692307692

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 12.981634615384614

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 13.167836538461538

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 13.35403846153846

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 13.540240384615384

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 13.726442307692306

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 13.91264423076923

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 14.098846153846152

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 14.285048076923076

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 14.47125

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 14.657451923076922

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 14.843653846153845

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 15.029855769230767

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 15.216057692307691

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 15.402259615384613

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 15.588461538461537

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 15.774663461538461

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 15.960865384615383

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 16.147067307692307

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 16.33326923076923

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 16.519471153846155

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 16.705673076923077

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 16.891875

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 17.078076923076924

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 17.264278846153847

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 17.45048076923077

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 17.636682692307694

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 17.822884615384616

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 18.00908653846154

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 18.19528846153846

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 18.381490384615386

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 18.567692307692308

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 18.75389423076923

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 18.940096153846156

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 19.126298076923078

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ], - [ - "
id: 2053
prediction: 0.778
AveOccup: 19.3125

MedInc: 1.7986
HouseAge: 32.0
AveRooms: 3.6473429951690823
AveBedrms: 0.9903381642512077
Population: 681.0
Latitude: 36.68
Longitude: -119.73
_original_yhat_: 0.5505000000000004
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.0811300999999998, - 2.0811300999999998, - 2.0811300999999998, - 2.0671500999999997, - 1.9257202999999996, - 1.7150800999999998, - 1.7082100999999996, - 1.7353900999999998, - 1.03868, - 0.9719899999999995, - 0.9012199999999996, - 0.8714499999999998, - 0.7330900000000002, - 0.5823600000000004, - 0.5505000000000004, - 0.5723800000000002, - 0.5600600000000003, - 0.5319, - 0.54755, - 0.5454800000000001, - 0.5464100000000002, - 0.5421400000000002, - 0.5423200000000001, - 0.5399700000000002, - 0.5369500000000001, - 0.5369900000000002, - 0.5348500000000002, - 0.5827800000000002, - 0.6129200000000001, - 0.6657400000000001, - 0.6657400000000001, - 0.6657400000000001, - 0.6657400000000001, - 0.66949, - 0.66949, - 0.66949, - 0.66949, - 0.66949, - 0.7259000000000002, - 0.7259000000000002, - 0.7259000000000002, - 0.7259000000000002, - 0.7259000000000002, - 0.7259000000000002, - 0.7259000000000002, - 0.7259000000000002, - 0.7259000000000002, - 0.7259000000000002, - 0.7259000000000002, - 0.7259000000000002, - 0.7509700000000002, - 0.7622900000000001, - 0.7622900000000001, - 0.7622900000000001, - 0.7622900000000001, - 0.7737900000000002, - 0.7737900000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002, - 0.7775400000000002 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 13035
prediction: 2.124
AveOccup: 0.6923076923076923

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.124
AveOccup: 0.8785096153846154

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.124
AveOccup: 1.0647115384615384

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.124
AveOccup: 1.2509134615384614

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.126
AveOccup: 1.4371153846153846

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.227
AveOccup: 1.6233173076923078

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.318
AveOccup: 1.8095192307692307

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 2.057
AveOccup: 1.995721153846154

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.756
AveOccup: 2.181923076923077

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.367
AveOccup: 2.368125

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.288
AveOccup: 2.554326923076923

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.294
AveOccup: 2.740528846153846

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.306
AveOccup: 2.926730769230769

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.29
AveOccup: 3.112932692307692

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.269
AveOccup: 3.2991346153846157

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.252
AveOccup: 3.4853365384615387

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.246
AveOccup: 3.6715384615384616

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.263
AveOccup: 3.8577403846153846

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.256
AveOccup: 4.043942307692308

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.256
AveOccup: 4.2301442307692305

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.256
AveOccup: 4.4163461538461535

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.263
AveOccup: 4.602548076923076

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.279
AveOccup: 4.78875

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.303
AveOccup: 4.974951923076923

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.33
AveOccup: 5.161153846153846

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.333
AveOccup: 5.347355769230769

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.332
AveOccup: 5.533557692307692

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.332
AveOccup: 5.719759615384615

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.332
AveOccup: 5.905961538461539

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.319
AveOccup: 6.092163461538462

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.319
AveOccup: 6.278365384615385

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.319
AveOccup: 6.464567307692308

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.319
AveOccup: 6.650769230769231

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.319
AveOccup: 6.836971153846154

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.319
AveOccup: 7.023173076923077

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.319
AveOccup: 7.209375

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.319
AveOccup: 7.395576923076923

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 7.5817788461538465

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 7.767980769230769

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 7.954182692307692

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 8.140384615384615

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 8.326586538461537

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 8.512788461538461

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 8.698990384615383

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 8.885192307692307

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 9.07139423076923

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 9.257596153846153

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 9.443798076923075

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 9.629999999999999

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 9.816201923076923

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 10.002403846153845

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 10.188605769230769

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 10.37480769230769

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 10.561009615384615

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 10.747211538461537

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 10.93341346153846

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 11.119615384615384

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 11.305817307692307

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 11.49201923076923

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 11.678221153846152

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 11.864423076923076

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 12.050624999999998

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 12.236826923076922

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 12.423028846153844

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 12.609230769230768

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 12.795432692307692

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 12.981634615384614

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 13.167836538461538

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 13.35403846153846

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 13.540240384615384

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 13.726442307692306

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 13.91264423076923

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 14.098846153846152

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 14.285048076923076

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 14.47125

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 14.657451923076922

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 14.843653846153845

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 15.029855769230767

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 15.216057692307691

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 15.402259615384613

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 15.588461538461537

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 15.774663461538461

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 15.960865384615383

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 16.147067307692307

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 16.33326923076923

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 16.519471153846155

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 16.705673076923077

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 16.891875

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 17.078076923076924

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 17.264278846153847

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 17.45048076923077

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 17.636682692307694

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 17.822884615384616

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 18.00908653846154

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 18.19528846153846

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 18.381490384615386

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 18.567692307692308

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 18.75389423076923

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 18.940096153846156

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 19.126298076923078

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ], - [ - "
id: 13035
prediction: 1.317
AveOccup: 19.3125

MedInc: 2.5183
HouseAge: 15.0
AveRooms: 5.487544483985765
AveBedrms: 0.9911032028469751
Population: 1040.0
Latitude: 38.71
Longitude: -121.17
_original_yhat_: 2.3405599999999964
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.1239399999999975, - 2.1239399999999975, - 2.1243899999999973, - 2.1243899999999973, - 2.1260299999999974, - 2.226889999999997, - 2.3179899999999964, - 2.0565199999999977, - 1.7564099999999987, - 1.3670099999999998, - 1.2876400000000001, - 1.2943499999999997, - 1.3056100000000002, - 1.2902099999999999, - 1.26892, - 1.2521600000000002, - 1.2459200000000001, - 1.2631800000000002, - 1.2562900000000001, - 1.2562900000000001, - 1.2562900000000001, - 1.2633000000000003, - 1.2793600000000003, - 1.3029200000000003, - 1.3303399999999999, - 1.33264, - 1.3323100000000003, - 1.3323100000000003, - 1.3323100000000003, - 1.3192000000000002, - 1.3192000000000002, - 1.3192000000000002, - 1.3192000000000002, - 1.3192000000000002, - 1.3192000000000002, - 1.3192000000000002, - 1.3192000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002, - 1.3167000000000002 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 11828
prediction: 3.167
AveOccup: 0.6923076923076923

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.167
AveOccup: 0.8785096153846154

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.167
AveOccup: 1.0647115384615384

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.167
AveOccup: 1.2509134615384614

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.167
AveOccup: 1.4371153846153846

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.223
AveOccup: 1.6233173076923078

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.223
AveOccup: 1.8095192307692307

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.223
AveOccup: 1.995721153846154

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.236
AveOccup: 2.181923076923077

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.246
AveOccup: 2.368125

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.246
AveOccup: 2.554326923076923

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.24
AveOccup: 2.740528846153846

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.24
AveOccup: 2.926730769230769

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.23
AveOccup: 3.112932692307692

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.201
AveOccup: 3.2991346153846157

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.167
AveOccup: 3.4853365384615387

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.179
AveOccup: 3.6715384615384616

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.179
AveOccup: 3.8577403846153846

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.179
AveOccup: 4.043942307692308

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.195
AveOccup: 4.2301442307692305

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.193
AveOccup: 4.4163461538461535

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.202
AveOccup: 4.602548076923076

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.202
AveOccup: 4.78875

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.189
AveOccup: 4.974951923076923

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.189
AveOccup: 5.161153846153846

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.189
AveOccup: 5.347355769230769

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.189
AveOccup: 5.533557692307692

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.127
AveOccup: 5.719759615384615

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.127
AveOccup: 5.905961538461539

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.127
AveOccup: 6.092163461538462

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.127
AveOccup: 6.278365384615385

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.127
AveOccup: 6.464567307692308

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.127
AveOccup: 6.650769230769231

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.127
AveOccup: 6.836971153846154

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.127
AveOccup: 7.023173076923077

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 7.209375

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 7.395576923076923

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 7.5817788461538465

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 7.767980769230769

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 7.954182692307692

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 8.140384615384615

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 8.326586538461537

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 8.512788461538461

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 8.698990384615383

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 8.885192307692307

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 9.07139423076923

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 9.257596153846153

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 9.443798076923075

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 9.629999999999999

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 9.816201923076923

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 10.002403846153845

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 10.188605769230769

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 10.37480769230769

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 10.561009615384615

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 10.747211538461537

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 10.93341346153846

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 11.119615384615384

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 11.305817307692307

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 11.49201923076923

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 11.678221153846152

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 11.864423076923076

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 12.050624999999998

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 12.236826923076922

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 12.423028846153844

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 12.609230769230768

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 12.795432692307692

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 12.981634615384614

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 13.167836538461538

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 13.35403846153846

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 13.540240384615384

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 13.726442307692306

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 13.91264423076923

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 14.098846153846152

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 14.285048076923076

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 14.47125

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 14.657451923076922

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 14.843653846153845

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 15.029855769230767

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 15.216057692307691

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 15.402259615384613

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 15.588461538461537

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 15.774663461538461

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 15.960865384615383

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 16.147067307692307

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 16.33326923076923

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 16.519471153846155

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 16.705673076923077

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 16.891875

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 17.078076923076924

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 17.264278846153847

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 17.45048076923077

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 17.636682692307694

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 17.822884615384616

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 18.00908653846154

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 18.19528846153846

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 18.381490384615386

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 18.567692307692308

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 18.75389423076923

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 18.940096153846156

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 19.126298076923078

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ], - [ - "
id: 11828
prediction: 3.128
AveOccup: 19.3125

MedInc: 10.9891
HouseAge: 4.0
AveRooms: 6.296296296296297
AveBedrms: 0.8518518518518519
Population: 93.0
Latitude: 39.0
Longitude: -121.0
_original_yhat_: 3.166690599999998
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.166920999999998, - 3.166920999999998, - 3.166920999999998, - 3.166920999999998, - 3.166920999999998, - 3.223120999999998, - 3.223120999999998, - 3.223120999999998, - 3.2361009999999983, - 3.2463909999999983, - 3.2463909999999983, - 3.240180999999998, - 3.240180999999998, - 3.229580999999998, - 3.201000899999998, - 3.166690599999998, - 3.1791905999999983, - 3.1791905999999983, - 3.1791905999999983, - 3.1949905999999983, - 3.1933204999999982, - 3.201650499999998, - 3.201650499999998, - 3.1886504999999983, - 3.1886504999999983, - 3.1886504999999983, - 3.1886504999999983, - 3.126820399999998, - 3.126820399999998, - 3.126820399999998, - 3.126820399999998, - 3.126820399999998, - 3.126820399999998, - 3.126820399999998, - 3.126820399999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998, - 3.128490499999998 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 18300
prediction: 4.532
AveOccup: 0.6923076923076923

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.532
AveOccup: 0.8785096153846154

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.532
AveOccup: 1.0647115384615384

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.532
AveOccup: 1.2509134615384614

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.532
AveOccup: 1.4371153846153846

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.576
AveOccup: 1.6233173076923078

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.565
AveOccup: 1.8095192307692307

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.425
AveOccup: 1.995721153846154

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 4.162
AveOccup: 2.181923076923077

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 3.916
AveOccup: 2.368125

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 3.637
AveOccup: 2.554326923076923

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 3.307
AveOccup: 2.740528846153846

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.908
AveOccup: 2.926730769230769

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.606
AveOccup: 3.112932692307692

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.562
AveOccup: 3.2991346153846157

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.385
AveOccup: 3.4853365384615387

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.386
AveOccup: 3.6715384615384616

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.375
AveOccup: 3.8577403846153846

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.318
AveOccup: 4.043942307692308

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.35
AveOccup: 4.2301442307692305

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.35
AveOccup: 4.4163461538461535

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.35
AveOccup: 4.602548076923076

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.351
AveOccup: 4.78875

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.442
AveOccup: 4.974951923076923

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 5.161153846153846

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 5.347355769230769

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 5.533557692307692

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 5.719759615384615

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 5.905961538461539

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 6.092163461538462

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 6.278365384615385

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 6.464567307692308

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 6.650769230769231

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 6.836971153846154

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 7.023173076923077

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 7.209375

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 7.395576923076923

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 7.5817788461538465

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 7.767980769230769

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 7.954182692307692

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 8.140384615384615

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 8.326586538461537

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 8.512788461538461

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 8.698990384615383

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 8.885192307692307

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 9.07139423076923

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 9.257596153846153

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 9.443798076923075

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 9.629999999999999

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 9.816201923076923

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 10.002403846153845

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 10.188605769230769

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 10.37480769230769

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 10.561009615384615

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 10.747211538461537

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 10.93341346153846

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 11.119615384615384

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 11.305817307692307

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 11.49201923076923

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 11.678221153846152

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 11.864423076923076

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 12.050624999999998

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 12.236826923076922

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 12.423028846153844

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 12.609230769230768

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 12.795432692307692

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 12.981634615384614

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 13.167836538461538

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 13.35403846153846

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 13.540240384615384

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 13.726442307692306

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 13.91264423076923

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 14.098846153846152

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 14.285048076923076

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 14.47125

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 14.657451923076922

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 14.843653846153845

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 15.029855769230767

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 15.216057692307691

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 15.402259615384613

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 15.588461538461537

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 15.774663461538461

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 15.960865384615383

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 16.147067307692307

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 16.33326923076923

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 16.519471153846155

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 16.705673076923077

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 16.891875

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 17.078076923076924

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 17.264278846153847

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 17.45048076923077

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 17.636682692307694

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 17.822884615384616

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 18.00908653846154

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 18.19528846153846

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 18.381490384615386

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 18.567692307692308

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 18.75389423076923

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 18.940096153846156

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 19.126298076923078

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ], - [ - "
id: 18300
prediction: 2.471
AveOccup: 19.3125

MedInc: 5.4063
HouseAge: 36.0
AveRooms: 5.378651685393258
AveBedrms: 1.0112359550561798
Population: 2039.0
Latitude: 37.41
Longitude: -122.13
_original_yhat_: 4.249989999999997
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.531545699999994, - 4.531545699999994, - 4.531545699999994, - 4.531545699999994, - 4.531545699999994, - 4.576005799999994, - 4.5653158999999945, - 4.424513999999997, - 4.161560099999996, - 3.915570099999997, - 3.6370999999999976, - 3.306969999999999, - 2.9081301, - 2.6062301000000003, - 2.5620301000000008, - 2.3850901000000007, - 2.3856401, - 2.3752100999999994, - 2.3178300999999992, - 2.3500100999999995, - 2.3500100999999995, - 2.3500100999999995, - 2.3511500999999995, - 2.4415503999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997, - 2.4711404999999997 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 6359
prediction: 3.418
AveOccup: 0.6923076923076923

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.418
AveOccup: 0.8785096153846154

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.418
AveOccup: 1.0647115384615384

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.418
AveOccup: 1.2509134615384614

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.404
AveOccup: 1.4371153846153846

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.39
AveOccup: 1.6233173076923078

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 3.101
AveOccup: 1.8095192307692307

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.577
AveOccup: 1.995721153846154

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.431
AveOccup: 2.181923076923077

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 2.304
AveOccup: 2.368125

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.951
AveOccup: 2.554326923076923

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.914
AveOccup: 2.740528846153846

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.97
AveOccup: 2.926730769230769

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.918
AveOccup: 3.112932692307692

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.698
AveOccup: 3.2991346153846157

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.694
AveOccup: 3.4853365384615387

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.595
AveOccup: 3.6715384615384616

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.565
AveOccup: 3.8577403846153846

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.568
AveOccup: 4.043942307692308

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.529
AveOccup: 4.2301442307692305

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.498
AveOccup: 4.4163461538461535

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.471
AveOccup: 4.602548076923076

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.456
AveOccup: 4.78875

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.463
AveOccup: 4.974951923076923

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.462
AveOccup: 5.161153846153846

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.461
AveOccup: 5.347355769230769

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.46
AveOccup: 5.533557692307692

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.457
AveOccup: 5.719759615384615

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.457
AveOccup: 5.905961538461539

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.461
AveOccup: 6.092163461538462

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 6.278365384615385

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 6.464567307692308

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 6.650769230769231

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 6.836971153846154

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 7.023173076923077

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 7.209375

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 7.395576923076923

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 7.5817788461538465

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 7.767980769230769

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 7.954182692307692

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 8.140384615384615

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 8.326586538461537

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 8.512788461538461

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 8.698990384615383

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 8.885192307692307

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 9.07139423076923

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 9.257596153846153

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 9.443798076923075

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 9.629999999999999

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 9.816201923076923

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 10.002403846153845

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 10.188605769230769

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 10.37480769230769

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 10.561009615384615

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 10.747211538461537

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 10.93341346153846

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 11.119615384615384

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 11.305817307692307

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 11.49201923076923

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 11.678221153846152

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 11.864423076923076

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 12.050624999999998

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 12.236826923076922

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 12.423028846153844

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 12.609230769230768

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 12.795432692307692

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 12.981634615384614

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 13.167836538461538

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 13.35403846153846

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 13.540240384615384

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 13.726442307692306

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.467
AveOccup: 13.91264423076923

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.448
AveOccup: 14.098846153846152

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 14.285048076923076

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 14.47125

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 14.657451923076922

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 14.843653846153845

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 15.029855769230767

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 15.216057692307691

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 15.402259615384613

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 15.588461538461537

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 15.774663461538461

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 15.960865384615383

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 16.147067307692307

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 16.33326923076923

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 16.519471153846155

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 16.705673076923077

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 16.891875

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 17.078076923076924

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 17.264278846153847

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 17.45048076923077

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 17.636682692307694

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 17.822884615384616

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 18.00908653846154

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 18.19528846153846

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 18.381490384615386

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 18.567692307692308

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.437
AveOccup: 18.75389423076923

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.384
AveOccup: 18.940096153846156

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.384
AveOccup: 19.126298076923078

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ], - [ - "
id: 6359
prediction: 1.384
AveOccup: 19.3125

MedInc: 3.4375
HouseAge: 42.0
AveRooms: 4.949275362318841
AveBedrms: 0.9202898550724637
Population: 541.0
Latitude: 34.13
Longitude: -117.97
_original_yhat_: 1.5596899999999994
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.4184311999999983, - 3.4184311999999983, - 3.4184311999999983, - 3.4184311999999983, - 3.404031199999998, - 3.3902607999999983, - 3.1006902999999992, - 2.576560100000001, - 2.4306201, - 2.3036001, - 1.9512299999999998, - 1.91357, - 1.9699299999999988, - 1.9181599999999994, - 1.6984199999999987, - 1.69366, - 1.5945700000000003, - 1.5651599999999999, - 1.5677999999999996, - 1.5293099999999995, - 1.4977499999999995, - 1.4714499999999995, - 1.4564899999999994, - 1.4631799999999995, - 1.4619999999999995, - 1.4605499999999996, - 1.4597999999999993, - 1.4574399999999992, - 1.4568099999999993, - 1.4614699999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4667299999999994, - 1.4484299999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.4371699999999992, - 1.3839399999999997, - 1.3839399999999997, - 1.3839399999999997 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 20513
prediction: 1.176
AveOccup: 0.6923076923076923

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.176
AveOccup: 0.8785096153846154

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.176
AveOccup: 1.0647115384615384

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.18
AveOccup: 1.2509134615384614

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.194
AveOccup: 1.4371153846153846

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.266
AveOccup: 1.6233173076923078

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.305
AveOccup: 1.8095192307692307

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.267
AveOccup: 1.995721153846154

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.242
AveOccup: 2.181923076923077

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.31
AveOccup: 2.368125

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.275
AveOccup: 2.554326923076923

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.249
AveOccup: 2.740528846153846

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.289
AveOccup: 2.926730769230769

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.263
AveOccup: 3.112932692307692

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.235
AveOccup: 3.2991346153846157

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.271
AveOccup: 3.4853365384615387

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.336
AveOccup: 3.6715384615384616

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.343
AveOccup: 3.8577403846153846

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.366
AveOccup: 4.043942307692308

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.423
AveOccup: 4.2301442307692305

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.431
AveOccup: 4.4163461538461535

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.569
AveOccup: 4.602548076923076

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.623
AveOccup: 4.78875

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.733
AveOccup: 4.974951923076923

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.842
AveOccup: 5.161153846153846

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.842
AveOccup: 5.347355769230769

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.851
AveOccup: 5.533557692307692

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.851
AveOccup: 5.719759615384615

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.851
AveOccup: 5.905961538461539

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.856
AveOccup: 6.092163461538462

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.856
AveOccup: 6.278365384615385

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 6.464567307692308

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 6.650769230769231

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 6.836971153846154

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 7.023173076923077

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 7.209375

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 7.395576923076923

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 7.5817788461538465

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 7.767980769230769

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 7.954182692307692

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 8.140384615384615

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 8.326586538461537

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 8.512788461538461

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 8.698990384615383

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 8.885192307692307

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 9.07139423076923

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 9.257596153846153

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 9.443798076923075

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 9.629999999999999

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 9.816201923076923

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 10.002403846153845

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 10.188605769230769

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 10.37480769230769

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 10.561009615384615

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 10.747211538461537

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 10.93341346153846

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 11.119615384615384

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 11.305817307692307

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 11.49201923076923

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 11.678221153846152

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 11.864423076923076

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 12.050624999999998

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 12.236826923076922

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 12.423028846153844

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 12.609230769230768

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 12.795432692307692

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 12.981634615384614

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 13.167836538461538

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 13.35403846153846

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 13.540240384615384

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 13.726442307692306

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 13.91264423076923

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 14.098846153846152

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 14.285048076923076

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 14.47125

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 14.657451923076922

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 14.843653846153845

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 15.029855769230767

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 15.216057692307691

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 15.402259615384613

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 15.588461538461537

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 15.774663461538461

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 15.960865384615383

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 16.147067307692307

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 16.33326923076923

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 16.519471153846155

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 16.705673076923077

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 16.891875

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 17.078076923076924

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 17.264278846153847

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 17.45048076923077

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 17.636682692307694

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 17.822884615384616

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 18.00908653846154

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 18.19528846153846

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 18.381490384615386

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 18.567692307692308

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 18.75389423076923

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 18.940096153846156

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 19.126298076923078

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ], - [ - "
id: 20513
prediction: 1.845
AveOccup: 19.3125

MedInc: 2.625
HouseAge: 34.0
AveRooms: 5.597402597402597
AveBedrms: 1.103896103896104
Population: 391.0
Latitude: 38.67
Longitude: -121.63
_original_yhat_: 1.8421600000000005
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.1760899999999999, - 1.1760899999999999, - 1.1762899999999998, - 1.18029, - 1.19424, - 1.2658, - 1.3046099999999998, - 1.2670699999999997, - 1.2423300000000004, - 1.30996, - 1.2754699999999999, - 1.2494300000000003, - 1.2892700000000006, - 1.2634900000000002, - 1.2349700000000001, - 1.2714200000000002, - 1.3357500000000002, - 1.34335, - 1.3657299999999999, - 1.4232299999999998, - 1.4310399999999999, - 1.5694599999999996, - 1.62269, - 1.73293, - 1.8421600000000005, - 1.8421600000000005, - 1.8510300000000002, - 1.8510300000000002, - 1.8510300000000002, - 1.8563600000000002, - 1.8563600000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002, - 1.8451100000000002 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 5456
prediction: 3.48
AveOccup: 0.6923076923076923

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.48
AveOccup: 0.8785096153846154

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.48
AveOccup: 1.0647115384615384

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.486
AveOccup: 1.2509134615384614

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.551
AveOccup: 1.4371153846153846

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.269
AveOccup: 1.6233173076923078

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.282
AveOccup: 1.8095192307692307

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.213
AveOccup: 1.995721153846154

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 3.175
AveOccup: 2.181923076923077

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.992
AveOccup: 2.368125

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.896
AveOccup: 2.554326923076923

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.927
AveOccup: 2.740528846153846

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.793
AveOccup: 2.926730769230769

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.443
AveOccup: 3.112932692307692

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.392
AveOccup: 3.2991346153846157

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 2.22
AveOccup: 3.4853365384615387

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.958
AveOccup: 3.6715384615384616

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.88
AveOccup: 3.8577403846153846

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.749
AveOccup: 4.043942307692308

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.744
AveOccup: 4.2301442307692305

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.704
AveOccup: 4.4163461538461535

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.698
AveOccup: 4.602548076923076

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.703
AveOccup: 4.78875

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.657
AveOccup: 4.974951923076923

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.659
AveOccup: 5.161153846153846

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.652
AveOccup: 5.347355769230769

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.656
AveOccup: 5.533557692307692

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.672
AveOccup: 5.719759615384615

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.715
AveOccup: 5.905961538461539

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.732
AveOccup: 6.092163461538462

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.738
AveOccup: 6.278365384615385

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.738
AveOccup: 6.464567307692308

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.78
AveOccup: 6.650769230769231

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.789
AveOccup: 6.836971153846154

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.877
AveOccup: 7.023173076923077

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.877
AveOccup: 7.209375

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.877
AveOccup: 7.395576923076923

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.877
AveOccup: 7.5817788461538465

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.868
AveOccup: 7.767980769230769

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.868
AveOccup: 7.954182692307692

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.868
AveOccup: 8.140384615384615

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.868
AveOccup: 8.326586538461537

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.868
AveOccup: 8.512788461538461

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.883
AveOccup: 8.698990384615383

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.883
AveOccup: 8.885192307692307

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.883
AveOccup: 9.07139423076923

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.883
AveOccup: 9.257596153846153

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.883
AveOccup: 9.443798076923075

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.883
AveOccup: 9.629999999999999

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.883
AveOccup: 9.816201923076923

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.915
AveOccup: 10.002403846153845

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.915
AveOccup: 10.188605769230769

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.915
AveOccup: 10.37480769230769

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.915
AveOccup: 10.561009615384615

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.915
AveOccup: 10.747211538461537

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 10.93341346153846

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 11.119615384615384

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 11.305817307692307

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 11.49201923076923

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 11.678221153846152

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 11.864423076923076

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 12.050624999999998

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 12.236826923076922

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 12.423028846153844

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 12.609230769230768

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 12.795432692307692

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 12.981634615384614

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 13.167836538461538

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 13.35403846153846

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 13.540240384615384

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 13.726442307692306

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 13.91264423076923

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 14.098846153846152

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 14.285048076923076

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 14.47125

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 14.657451923076922

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 14.843653846153845

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 15.029855769230767

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 15.216057692307691

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 15.402259615384613

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 15.588461538461537

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 15.774663461538461

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 15.960865384615383

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 16.147067307692307

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 16.33326923076923

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 16.519471153846155

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 16.705673076923077

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 16.891875

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 17.078076923076924

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 17.264278846153847

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 17.45048076923077

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 17.636682692307694

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 17.822884615384616

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 18.00908653846154

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 18.19528846153846

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 18.381490384615386

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 18.567692307692308

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 18.75389423076923

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 18.940096153846156

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 19.126298076923078

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ], - [ - "
id: 5456
prediction: 1.965
AveOccup: 19.3125

MedInc: 2.7143
HouseAge: 38.0
AveRooms: 3.2845744680851063
AveBedrms: 1.0372340425531914
Population: 891.0
Latitude: 34.0
Longitude: -118.47
_original_yhat_: 2.99214
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.4802213999999982, - 3.4802213999999982, - 3.4802213999999982, - 3.485641399999998, - 3.5505017999999966, - 3.269470199999999, - 3.281669999999999, - 3.2128599999999996, - 3.1747899999999993, - 2.99214, - 2.8961302000000004, - 2.9271203000000003, - 2.7927204, - 2.4427801000000002, - 2.3922201000000003, - 2.2204601000000004, - 1.9580099999999996, - 1.8798, - 1.74922, - 1.7440600000000002, - 1.70375, - 1.6977799999999998, - 1.7025099999999997, - 1.6573, - 1.65935, - 1.6515600000000004, - 1.6562800000000002, - 1.6723000000000001, - 1.7154700000000003, - 1.7322600000000004, - 1.7383000000000004, - 1.7383000000000004, - 1.7804000000000002, - 1.7893800000000002, - 1.8774300000000002, - 1.8774300000000002, - 1.8774300000000002, - 1.8774300000000002, - 1.8681100000000004, - 1.8681100000000004, - 1.8681100000000004, - 1.8681100000000004, - 1.8681100000000004, - 1.8828101000000002, - 1.8828101000000002, - 1.8828101000000002, - 1.8828101000000002, - 1.8828101000000002, - 1.8828101000000002, - 1.8828101000000002, - 1.9146402000000002, - 1.9146402000000002, - 1.9146402000000002, - 1.9146402000000002, - 1.9146402000000002, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005, - 1.9645204000000005 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 1050
prediction: 1.347
AveOccup: 0.6923076923076923

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.347
AveOccup: 0.8785096153846154

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.348
AveOccup: 1.0647115384615384

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.338
AveOccup: 1.2509134615384614

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.325
AveOccup: 1.4371153846153846

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.472
AveOccup: 1.6233173076923078

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.516
AveOccup: 1.8095192307692307

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.377
AveOccup: 1.995721153846154

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.133
AveOccup: 2.181923076923077

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.221
AveOccup: 2.368125

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.26
AveOccup: 2.554326923076923

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.264
AveOccup: 2.740528846153846

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.242
AveOccup: 2.926730769230769

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.249
AveOccup: 3.112932692307692

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.243
AveOccup: 3.2991346153846157

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.241
AveOccup: 3.4853365384615387

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.215
AveOccup: 3.6715384615384616

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.24
AveOccup: 3.8577403846153846

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.234
AveOccup: 4.043942307692308

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.234
AveOccup: 4.2301442307692305

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.234
AveOccup: 4.4163461538461535

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.256
AveOccup: 4.602548076923076

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.264
AveOccup: 4.78875

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.294
AveOccup: 4.974951923076923

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.345
AveOccup: 5.161153846153846

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.345
AveOccup: 5.347355769230769

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.39
AveOccup: 5.533557692307692

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.39
AveOccup: 5.719759615384615

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.39
AveOccup: 5.905961538461539

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 6.092163461538462

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 6.278365384615385

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 6.464567307692308

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 6.650769230769231

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 6.836971153846154

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 7.023173076923077

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 7.209375

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 7.395576923076923

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 7.5817788461538465

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 7.767980769230769

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 7.954182692307692

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 8.140384615384615

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 8.326586538461537

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 8.512788461538461

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 8.698990384615383

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 8.885192307692307

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 9.07139423076923

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 9.257596153846153

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 9.443798076923075

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 9.629999999999999

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 9.816201923076923

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 10.002403846153845

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 10.188605769230769

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 10.37480769230769

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 10.561009615384615

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 10.747211538461537

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 10.93341346153846

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 11.119615384615384

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 11.305817307692307

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 11.49201923076923

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 11.678221153846152

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 11.864423076923076

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 12.050624999999998

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 12.236826923076922

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 12.423028846153844

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 12.609230769230768

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 12.795432692307692

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 12.981634615384614

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 13.167836538461538

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 13.35403846153846

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 13.540240384615384

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 13.726442307692306

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 13.91264423076923

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 14.098846153846152

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 14.285048076923076

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 14.47125

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 14.657451923076922

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 14.843653846153845

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 15.029855769230767

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 15.216057692307691

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 15.402259615384613

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 15.588461538461537

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 15.774663461538461

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 15.960865384615383

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 16.147067307692307

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 16.33326923076923

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 16.519471153846155

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 16.705673076923077

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 16.891875

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 17.078076923076924

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 17.264278846153847

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 17.45048076923077

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 17.636682692307694

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 17.822884615384616

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 18.00908653846154

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 18.19528846153846

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 18.381490384615386

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 18.567692307692308

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 18.75389423076923

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 18.940096153846156

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 19.126298076923078

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ], - [ - "
id: 1050
prediction: 1.5
AveOccup: 19.3125

MedInc: 2.7236
HouseAge: 19.0
AveRooms: 5.77208480565371
AveBedrms: 1.0848056537102473
Population: 1252.0
Latitude: 38.36
Longitude: -120.69
_original_yhat_: 1.1440500000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.347210300000001, - 1.347210300000001, - 1.347860300000001, - 1.338100300000001, - 1.3253803000000008, - 1.4718604000000002, - 1.5158303999999998, - 1.3766503000000003, - 1.1326600000000004, - 1.2207499999999998, - 1.2595299999999998, - 1.2635899999999998, - 1.2415999999999994, - 1.2488199999999994, - 1.24332, - 1.2406700000000002, - 1.21472, - 1.23973, - 1.2336900000000002, - 1.2336900000000002, - 1.2336900000000002, - 1.25581, - 1.2642499999999999, - 1.2942299999999998, - 1.3452200000000003, - 1.3452200000000003, - 1.3897900000000005, - 1.3897900000000005, - 1.3897900000000005, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953, - 1.49953 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 15405
prediction: 2.963
AveOccup: 0.6923076923076923

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.963
AveOccup: 0.8785096153846154

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.963
AveOccup: 1.0647115384615384

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.963
AveOccup: 1.2509134615384614

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.914
AveOccup: 1.4371153846153846

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.814
AveOccup: 1.6233173076923078

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.807
AveOccup: 1.8095192307692307

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.409
AveOccup: 1.995721153846154

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.032
AveOccup: 2.181923076923077

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 2.091
AveOccup: 2.368125

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.756
AveOccup: 2.554326923076923

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.719
AveOccup: 2.740528846153846

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.649
AveOccup: 2.926730769230769

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.611
AveOccup: 3.112932692307692

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.572
AveOccup: 3.2991346153846157

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.539
AveOccup: 3.4853365384615387

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.555
AveOccup: 3.6715384615384616

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.51
AveOccup: 3.8577403846153846

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.51
AveOccup: 4.043942307692308

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.512
AveOccup: 4.2301442307692305

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.516
AveOccup: 4.4163461538461535

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.436
AveOccup: 4.602548076923076

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.42
AveOccup: 4.78875

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.42
AveOccup: 4.974951923076923

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 5.161153846153846

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 5.347355769230769

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 5.533557692307692

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 5.719759615384615

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 5.905961538461539

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 6.092163461538462

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 6.278365384615385

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 6.464567307692308

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 6.650769230769231

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 6.836971153846154

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 7.023173076923077

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 7.209375

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 7.395576923076923

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 7.5817788461538465

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.418
AveOccup: 7.767980769230769

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 7.954182692307692

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 8.140384615384615

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 8.326586538461537

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 8.512788461538461

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 8.698990384615383

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 8.885192307692307

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 9.07139423076923

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 9.257596153846153

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 9.443798076923075

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 9.629999999999999

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 9.816201923076923

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 10.002403846153845

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 10.188605769230769

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 10.37480769230769

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 10.561009615384615

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 10.747211538461537

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 10.93341346153846

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 11.119615384615384

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 11.305817307692307

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 11.49201923076923

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 11.678221153846152

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 11.864423076923076

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 12.050624999999998

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 12.236826923076922

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 12.423028846153844

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 12.609230769230768

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 12.795432692307692

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 12.981634615384614

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 13.167836538461538

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 13.35403846153846

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 13.540240384615384

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 13.726442307692306

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 13.91264423076923

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 14.098846153846152

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 14.285048076923076

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 14.47125

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 14.657451923076922

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 14.843653846153845

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 15.029855769230767

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 15.216057692307691

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 15.402259615384613

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 15.588461538461537

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 15.774663461538461

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 15.960865384615383

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 16.147067307692307

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 16.33326923076923

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 16.519471153846155

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 16.705673076923077

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 16.891875

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 17.078076923076924

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 17.264278846153847

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 17.45048076923077

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 17.636682692307694

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 17.822884615384616

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 18.00908653846154

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 18.19528846153846

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 18.381490384615386

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 18.567692307692308

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 18.75389423076923

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 18.940096153846156

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 19.126298076923078

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ], - [ - "
id: 15405
prediction: 1.401
AveOccup: 19.3125

MedInc: 3.4359
HouseAge: 21.0
AveRooms: 5.506410256410256
AveBedrms: 0.9871794871794872
Population: 1194.0
Latitude: 33.23
Longitude: -117.24
_original_yhat_: 1.5066699999999986
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.9627716, - 2.9627716, - 2.9627716, - 2.9627716, - 2.9143613, - 2.8138207000000004, - 2.8074908999999995, - 2.4094401000000003, - 2.03247, - 2.0907899999999993, - 1.7561299999999977, - 1.7186899999999983, - 1.6493099999999987, - 1.6113199999999985, - 1.571659999999998, - 1.5389799999999982, - 1.5552299999999986, - 1.5101299999999986, - 1.5103199999999988, - 1.5120199999999986, - 1.5158499999999984, - 1.4361899999999994, - 1.4201999999999992, - 1.4201999999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4177799999999992, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991, - 1.4007299999999991 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 5058
prediction: 3.81
AveOccup: 0.6923076923076923

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.81
AveOccup: 0.8785096153846154

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.81
AveOccup: 1.0647115384615384

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.81
AveOccup: 1.2509134615384614

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.833
AveOccup: 1.4371153846153846

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.837
AveOccup: 1.6233173076923078

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.715
AveOccup: 1.8095192307692307

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.158
AveOccup: 1.995721153846154

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.857
AveOccup: 2.181923076923077

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.843
AveOccup: 2.368125

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 3.103
AveOccup: 2.554326923076923

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.88
AveOccup: 2.740528846153846

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.475
AveOccup: 2.926730769230769

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 2.052
AveOccup: 3.112932692307692

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.906
AveOccup: 3.2991346153846157

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.834
AveOccup: 3.4853365384615387

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.8
AveOccup: 3.6715384615384616

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.774
AveOccup: 3.8577403846153846

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.756
AveOccup: 4.043942307692308

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.733
AveOccup: 4.2301442307692305

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.702
AveOccup: 4.4163461538461535

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.662
AveOccup: 4.602548076923076

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.641
AveOccup: 4.78875

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.641
AveOccup: 4.974951923076923

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.632
AveOccup: 5.161153846153846

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.627
AveOccup: 5.347355769230769

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.622
AveOccup: 5.533557692307692

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.603
AveOccup: 5.719759615384615

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.603
AveOccup: 5.905961538461539

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.603
AveOccup: 6.092163461538462

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.603
AveOccup: 6.278365384615385

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.603
AveOccup: 6.464567307692308

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.603
AveOccup: 6.650769230769231

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.603
AveOccup: 6.836971153846154

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.603
AveOccup: 7.023173076923077

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.603
AveOccup: 7.209375

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 7.395576923076923

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 7.5817788461538465

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 7.767980769230769

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 7.954182692307692

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 8.140384615384615

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 8.326586538461537

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 8.512788461538461

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 8.698990384615383

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 8.885192307692307

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 9.07139423076923

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 9.257596153846153

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 9.443798076923075

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 9.629999999999999

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 9.816201923076923

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 10.002403846153845

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 10.188605769230769

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 10.37480769230769

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 10.561009615384615

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 10.747211538461537

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 10.93341346153846

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 11.119615384615384

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 11.305817307692307

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 11.49201923076923

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 11.678221153846152

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 11.864423076923076

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 12.050624999999998

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 12.236826923076922

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 12.423028846153844

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 12.609230769230768

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 12.795432692307692

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 12.981634615384614

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 13.167836538461538

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 13.35403846153846

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 13.540240384615384

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 13.726442307692306

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.607
AveOccup: 13.91264423076923

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.585
AveOccup: 14.098846153846152

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 14.285048076923076

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 14.47125

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 14.657451923076922

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 14.843653846153845

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 15.029855769230767

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 15.216057692307691

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 15.402259615384613

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 15.588461538461537

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 15.774663461538461

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 15.960865384615383

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 16.147067307692307

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 16.33326923076923

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 16.519471153846155

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 16.705673076923077

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 16.891875

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 17.078076923076924

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 17.264278846153847

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 17.45048076923077

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 17.636682692307694

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 17.822884615384616

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 18.00908653846154

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 18.19528846153846

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 18.381490384615386

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 18.567692307692308

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.573
AveOccup: 18.75389423076923

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.514
AveOccup: 18.940096153846156

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.514
AveOccup: 19.126298076923078

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ], - [ - "
id: 5058
prediction: 1.514
AveOccup: 19.3125

MedInc: 3.6629
HouseAge: 33.0
AveRooms: 5.383084577114428
AveBedrms: 0.9966832504145937
Population: 1585.0
Latitude: 34.01
Longitude: -118.35
_original_yhat_: 3.1663799999999993
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.809651999999998, - 3.809651999999998, - 3.809651999999998, - 3.809651999999998, - 3.8333520999999986, - 3.8366420999999993, - 3.7149723999999975, - 3.1580804000000002, - 2.8569901, - 2.84277, - 3.103069999999999, - 2.8802600999999997, - 2.475280100000001, - 2.0524799999999996, - 1.9056299999999995, - 1.834219999999999, - 1.8002099999999996, - 1.7742899999999997, - 1.7555499999999997, - 1.7329699999999995, - 1.7023200000000003, - 1.6621300000000006, - 1.64058, - 1.64056, - 1.6323, - 1.62732, - 1.6215600000000003, - 1.6030300000000002, - 1.6030300000000002, - 1.6030300000000002, - 1.6030300000000002, - 1.6030300000000002, - 1.6030300000000002, - 1.6030300000000002, - 1.6030300000000002, - 1.6030300000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.6074400000000002, - 1.5845700000000003, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5729600000000001, - 1.5141100000000003, - 1.5141100000000003, - 1.5141100000000003 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 5171
prediction: 2.446
AveOccup: 0.6923076923076923

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.446
AveOccup: 0.8785096153846154

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.446
AveOccup: 1.0647115384615384

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.367
AveOccup: 1.2509134615384614

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.353
AveOccup: 1.4371153846153846

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.05
AveOccup: 1.6233173076923078

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.026
AveOccup: 1.8095192307692307

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 2.019
AveOccup: 1.995721153846154

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.698
AveOccup: 2.181923076923077

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.694
AveOccup: 2.368125

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.217
AveOccup: 2.554326923076923

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.181
AveOccup: 2.740528846153846

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.153
AveOccup: 2.926730769230769

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.986
AveOccup: 3.112932692307692

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.969
AveOccup: 3.2991346153846157

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.939
AveOccup: 3.4853365384615387

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.923
AveOccup: 3.6715384615384616

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.917
AveOccup: 3.8577403846153846

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.922
AveOccup: 4.043942307692308

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.917
AveOccup: 4.2301442307692305

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.934
AveOccup: 4.4163461538461535

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.959
AveOccup: 4.602548076923076

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.954
AveOccup: 4.78875

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.959
AveOccup: 4.974951923076923

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.966
AveOccup: 5.161153846153846

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.966
AveOccup: 5.347355769230769

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.971
AveOccup: 5.533557692307692

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.972
AveOccup: 5.719759615384615

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.994
AveOccup: 5.905961538461539

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 0.994
AveOccup: 6.092163461538462

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.006
AveOccup: 6.278365384615385

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.006
AveOccup: 6.464567307692308

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.043
AveOccup: 6.650769230769231

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.043
AveOccup: 6.836971153846154

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.043
AveOccup: 7.023173076923077

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.043
AveOccup: 7.209375

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.043
AveOccup: 7.395576923076923

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.043
AveOccup: 7.5817788461538465

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.043
AveOccup: 7.767980769230769

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.043
AveOccup: 7.954182692307692

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.043
AveOccup: 8.140384615384615

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.043
AveOccup: 8.326586538461537

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.043
AveOccup: 8.512788461538461

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.043
AveOccup: 8.698990384615383

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.084
AveOccup: 8.885192307692307

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.084
AveOccup: 9.07139423076923

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.163
AveOccup: 9.257596153846153

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.163
AveOccup: 9.443798076923075

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.163
AveOccup: 9.629999999999999

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.163
AveOccup: 9.816201923076923

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.204
AveOccup: 10.002403846153845

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.204
AveOccup: 10.188605769230769

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.204
AveOccup: 10.37480769230769

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.204
AveOccup: 10.561009615384615

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.204
AveOccup: 10.747211538461537

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 10.93341346153846

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 11.119615384615384

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 11.305817307692307

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 11.49201923076923

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 11.678221153846152

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 11.864423076923076

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 12.050624999999998

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 12.236826923076922

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 12.423028846153844

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 12.609230769230768

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 12.795432692307692

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 12.981634615384614

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 13.167836538461538

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 13.35403846153846

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 13.540240384615384

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 13.726442307692306

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 13.91264423076923

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 14.098846153846152

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 14.285048076923076

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 14.47125

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 14.657451923076922

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 14.843653846153845

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 15.029855769230767

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 15.216057692307691

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 15.402259615384613

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 15.588461538461537

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 15.774663461538461

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 15.960865384615383

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 16.147067307692307

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 16.33326923076923

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 16.519471153846155

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 16.705673076923077

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 16.891875

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 17.078076923076924

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 17.264278846153847

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 17.45048076923077

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 17.636682692307694

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 17.822884615384616

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 18.00908653846154

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 18.19528846153846

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 18.381490384615386

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 18.567692307692308

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 18.75389423076923

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 18.940096153846156

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 19.126298076923078

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ], - [ - "
id: 5171
prediction: 1.291
AveOccup: 19.3125

MedInc: 1.5714
HouseAge: 38.0
AveRooms: 3.932098765432099
AveBedrms: 1.2592592592592593
Population: 679.0
Latitude: 33.94
Longitude: -118.28
_original_yhat_: 0.9168700000000005
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.4455305000000003, - 2.4455305000000003, - 2.4455305000000003, - 2.3672005000000005, - 2.3534107000000004, - 2.0501804, - 2.0264003, - 2.0190303, - 1.6981399999999995, - 1.6944899999999996, - 1.21712, - 1.18053, - 1.1533300000000002, - 0.9863299999999999, - 0.9685800000000002, - 0.9391900000000003, - 0.9227900000000002, - 0.9174200000000003, - 0.9215400000000006, - 0.9165600000000005, - 0.9342300000000001, - 0.9588800000000003, - 0.9542300000000004, - 0.9590500000000002, - 0.9657500000000003, - 0.9657500000000003, - 0.9708600000000003, - 0.9715700000000004, - 0.9943300000000005, - 0.9943300000000005, - 1.0063200000000005, - 1.0063200000000005, - 1.0425700000000007, - 1.0425700000000007, - 1.0425700000000007, - 1.0425700000000007, - 1.0425700000000007, - 1.0425700000000007, - 1.0425700000000007, - 1.0425700000000007, - 1.0425700000000007, - 1.0425700000000007, - 1.0425700000000007, - 1.0425700000000007, - 1.0836001000000008, - 1.0836001000000008, - 1.1625203000000008, - 1.1625203000000008, - 1.1625203000000008, - 1.1625203000000008, - 1.2035504000000008, - 1.2035504000000008, - 1.2035504000000008, - 1.2035504000000008, - 1.2035504000000008, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001, - 1.290700600000001 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 10439
prediction: 2.943
AveOccup: 0.6923076923076923

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.943
AveOccup: 0.8785096153846154

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.943
AveOccup: 1.0647115384615384

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.943
AveOccup: 1.2509134615384614

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.943
AveOccup: 1.4371153846153846

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.95
AveOccup: 1.6233173076923078

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.899
AveOccup: 1.8095192307692307

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.721
AveOccup: 1.995721153846154

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.585
AveOccup: 2.181923076923077

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.59
AveOccup: 2.368125

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.7
AveOccup: 2.554326923076923

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.642
AveOccup: 2.740528846153846

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.751
AveOccup: 2.926730769230769

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.357
AveOccup: 3.112932692307692

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.277
AveOccup: 3.2991346153846157

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.273
AveOccup: 3.4853365384615387

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.245
AveOccup: 3.6715384615384616

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.252
AveOccup: 3.8577403846153846

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.251
AveOccup: 4.043942307692308

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.246
AveOccup: 4.2301442307692305

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.246
AveOccup: 4.4163461538461535

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.242
AveOccup: 4.602548076923076

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 4.78875

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 4.974951923076923

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 5.161153846153846

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 5.347355769230769

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 5.533557692307692

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 5.719759615384615

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 5.905961538461539

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 6.092163461538462

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 6.278365384615385

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 6.464567307692308

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 6.650769230769231

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 6.836971153846154

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 7.023173076923077

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 7.209375

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 7.395576923076923

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 7.5817788461538465

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 7.767980769230769

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 7.954182692307692

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 8.140384615384615

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 8.326586538461537

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 8.512788461538461

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 8.698990384615383

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 8.885192307692307

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 9.07139423076923

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 9.257596153846153

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 9.443798076923075

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 9.629999999999999

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 9.816201923076923

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 10.002403846153845

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 10.188605769230769

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 10.37480769230769

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 10.561009615384615

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 10.747211538461537

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 10.93341346153846

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 11.119615384615384

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 11.305817307692307

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 11.49201923076923

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 11.678221153846152

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 11.864423076923076

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 12.050624999999998

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 12.236826923076922

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 12.423028846153844

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 12.609230769230768

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 12.795432692307692

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 12.981634615384614

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 13.167836538461538

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 13.35403846153846

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 13.540240384615384

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 13.726442307692306

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 13.91264423076923

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 14.098846153846152

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 14.285048076923076

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 14.47125

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 14.657451923076922

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 14.843653846153845

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 15.029855769230767

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 15.216057692307691

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 15.402259615384613

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 15.588461538461537

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 15.774663461538461

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 15.960865384615383

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 16.147067307692307

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 16.33326923076923

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 16.519471153846155

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 16.705673076923077

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 16.891875

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 17.078076923076924

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 17.264278846153847

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 17.45048076923077

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 17.636682692307694

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 17.822884615384616

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 18.00908653846154

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 18.19528846153846

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 18.381490384615386

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 18.567692307692308

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 18.75389423076923

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 18.940096153846156

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 19.126298076923078

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ], - [ - "
id: 10439
prediction: 2.243
AveOccup: 19.3125

MedInc: 5.4031
HouseAge: 4.0
AveRooms: 5.445977011494253
AveBedrms: 1.3011494252873563
Population: 996.0
Latitude: 33.45
Longitude: -117.6
_original_yhat_: 2.5604800999999977
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.9426109999999976, - 2.9426109999999976, - 2.9426109999999976, - 2.9426109999999976, - 2.9426109999999976, - 2.950000999999998, - 2.8991409999999975, - 2.7209604999999977, - 2.5854801999999966, - 2.5900300999999972, - 2.6998701999999977, - 2.642120099999999, - 2.7510000999999993, - 2.3574301999999996, - 2.276690199999999, - 2.273490199999999, - 2.2448701999999985, - 2.2522901999999987, - 2.251360199999999, - 2.246280199999999, - 2.246280199999999, - 2.2421001999999985, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999, - 2.242760199999999 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 2657
prediction: 1.391
AveOccup: 0.6923076923076923

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.391
AveOccup: 0.8785096153846154

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.391
AveOccup: 1.0647115384615384

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.381
AveOccup: 1.2509134615384614

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.407
AveOccup: 1.4371153846153846

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.452
AveOccup: 1.6233173076923078

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.499
AveOccup: 1.8095192307692307

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.404
AveOccup: 1.995721153846154

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.187
AveOccup: 2.181923076923077

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.225
AveOccup: 2.368125

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.054
AveOccup: 2.554326923076923

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.918
AveOccup: 2.740528846153846

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.925
AveOccup: 2.926730769230769

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.913
AveOccup: 3.112932692307692

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.919
AveOccup: 3.2991346153846157

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.921
AveOccup: 3.4853365384615387

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.924
AveOccup: 3.6715384615384616

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.924
AveOccup: 3.8577403846153846

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.924
AveOccup: 4.043942307692308

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.924
AveOccup: 4.2301442307692305

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.924
AveOccup: 4.4163461538461535

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.972
AveOccup: 4.602548076923076

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.972
AveOccup: 4.78875

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.972
AveOccup: 4.974951923076923

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.987
AveOccup: 5.161153846153846

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.987
AveOccup: 5.347355769230769

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.997
AveOccup: 5.533557692307692

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.997
AveOccup: 5.719759615384615

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 0.997
AveOccup: 5.905961538461539

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.036
AveOccup: 6.092163461538462

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.036
AveOccup: 6.278365384615385

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.025
AveOccup: 6.464567307692308

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.025
AveOccup: 6.650769230769231

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.025
AveOccup: 6.836971153846154

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.025
AveOccup: 7.023173076923077

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.025
AveOccup: 7.209375

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.025
AveOccup: 7.395576923076923

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 7.5817788461538465

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 7.767980769230769

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 7.954182692307692

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 8.140384615384615

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 8.326586538461537

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 8.512788461538461

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 8.698990384615383

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 8.885192307692307

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 9.07139423076923

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 9.257596153846153

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 9.443798076923075

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 9.629999999999999

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 9.816201923076923

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 10.002403846153845

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 10.188605769230769

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 10.37480769230769

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 10.561009615384615

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 10.747211538461537

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 10.93341346153846

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 11.119615384615384

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 11.305817307692307

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 11.49201923076923

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 11.678221153846152

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 11.864423076923076

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 12.050624999999998

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 12.236826923076922

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 12.423028846153844

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 12.609230769230768

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 12.795432692307692

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 12.981634615384614

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 13.167836538461538

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 13.35403846153846

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 13.540240384615384

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 13.726442307692306

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 13.91264423076923

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 14.098846153846152

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 14.285048076923076

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 14.47125

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 14.657451923076922

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 14.843653846153845

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 15.029855769230767

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 15.216057692307691

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 15.402259615384613

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 15.588461538461537

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 15.774663461538461

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 15.960865384615383

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 16.147067307692307

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 16.33326923076923

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 16.519471153846155

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 16.705673076923077

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 16.891875

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 17.078076923076924

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 17.264278846153847

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 17.45048076923077

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 17.636682692307694

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 17.822884615384616

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 18.00908653846154

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 18.19528846153846

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 18.381490384615386

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 18.567692307692308

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 18.75389423076923

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 18.940096153846156

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 19.126298076923078

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ], - [ - "
id: 2657
prediction: 1.023
AveOccup: 19.3125

MedInc: 2.625
HouseAge: 17.0
AveRooms: 8.0920245398773
AveBedrms: 1.638036809815951
Population: 393.0
Latitude: 40.06
Longitude: -124.08
_original_yhat_: 1.2352199999999989
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.39112, - 1.39112, - 1.39112, - 1.3813599999999997, - 1.4069499999999997, - 1.4515699999999996, - 1.4987499999999994, - 1.4042099999999997, - 1.1868699999999999, - 1.225289999999999, - 1.0542499999999995, - 0.91829, - 0.92536, - 0.9125500000000001, - 0.91868, - 0.92069, - 0.92388, - 0.92388, - 0.92388, - 0.92388, - 0.92388, - 0.9721499999999998, - 0.9721499999999998, - 0.9721499999999998, - 0.98669, - 0.98669, - 0.9968399999999998, - 0.9968399999999998, - 0.9968399999999998, - 1.0364899999999997, - 1.0364899999999997, - 1.0252399999999997, - 1.0252399999999997, - 1.0252399999999997, - 1.0252399999999997, - 1.0252399999999997, - 1.0252399999999997, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998, - 1.0227399999999998 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 18888
prediction: 1.509
AveOccup: 0.6923076923076923

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.509
AveOccup: 0.8785096153846154

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.509
AveOccup: 1.0647115384615384

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.509
AveOccup: 1.2509134615384614

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.508
AveOccup: 1.4371153846153846

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.498
AveOccup: 1.6233173076923078

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.521
AveOccup: 1.8095192307692307

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.379
AveOccup: 1.995721153846154

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.326
AveOccup: 2.181923076923077

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.143
AveOccup: 2.368125

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.05
AveOccup: 2.554326923076923

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.993
AveOccup: 2.740528846153846

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.98
AveOccup: 2.926730769230769

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.963
AveOccup: 3.112932692307692

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.971
AveOccup: 3.2991346153846157

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.959
AveOccup: 3.4853365384615387

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.959
AveOccup: 3.6715384615384616

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.964
AveOccup: 3.8577403846153846

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 0.999
AveOccup: 4.043942307692308

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.035
AveOccup: 4.2301442307692305

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.034
AveOccup: 4.4163461538461535

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.03
AveOccup: 4.602548076923076

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.043
AveOccup: 4.78875

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.043
AveOccup: 4.974951923076923

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.052
AveOccup: 5.161153846153846

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.069
AveOccup: 5.347355769230769

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.083
AveOccup: 5.533557692307692

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.092
AveOccup: 5.719759615384615

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.092
AveOccup: 5.905961538461539

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.092
AveOccup: 6.092163461538462

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 6.278365384615385

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 6.464567307692308

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 6.650769230769231

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 6.836971153846154

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 7.023173076923077

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 7.209375

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 7.395576923076923

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 7.5817788461538465

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 7.767980769230769

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 7.954182692307692

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 8.140384615384615

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 8.326586538461537

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 8.512788461538461

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 8.698990384615383

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 8.885192307692307

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 9.07139423076923

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 9.257596153846153

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 9.443798076923075

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 9.629999999999999

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 9.816201923076923

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 10.002403846153845

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 10.188605769230769

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 10.37480769230769

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 10.561009615384615

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 10.747211538461537

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 10.93341346153846

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 11.119615384615384

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 11.305817307692307

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 11.49201923076923

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 11.678221153846152

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 11.864423076923076

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 12.050624999999998

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 12.236826923076922

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 12.423028846153844

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 12.609230769230768

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 12.795432692307692

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 12.981634615384614

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 13.167836538461538

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 13.35403846153846

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 13.540240384615384

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 13.726442307692306

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 13.91264423076923

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 14.098846153846152

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 14.285048076923076

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 14.47125

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 14.657451923076922

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 14.843653846153845

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 15.029855769230767

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 15.216057692307691

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 15.402259615384613

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 15.588461538461537

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 15.774663461538461

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 15.960865384615383

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 16.147067307692307

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 16.33326923076923

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 16.519471153846155

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 16.705673076923077

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 16.891875

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 17.078076923076924

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 17.264278846153847

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 17.45048076923077

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 17.636682692307694

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 17.822884615384616

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 18.00908653846154

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 18.19528846153846

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 18.381490384615386

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 18.567692307692308

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 18.75389423076923

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 18.940096153846156

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 19.126298076923078

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ], - [ - "
id: 18888
prediction: 1.124
AveOccup: 19.3125

MedInc: 2.3241
HouseAge: 42.0
AveRooms: 5.1114369501466275
AveBedrms: 1.1378299120234605
Population: 889.0
Latitude: 38.11
Longitude: -122.24
_original_yhat_: 1.0239700000000003
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.5093599999999998, - 1.5093599999999998, - 1.5093599999999998, - 1.5093599999999998, - 1.5082499999999999, - 1.4977099999999999, - 1.5205100000000003, - 1.3791200000000006, - 1.3260800000000004, - 1.1434699999999995, - 1.0503500000000001, - 0.9931300000000003, - 0.9798399999999999, - 0.9633000000000002, - 0.9710400000000001, - 0.9589600000000001, - 0.9589200000000001, - 0.9642800000000001, - 0.9993600000000002, - 1.03522, - 1.03433, - 1.0296399999999999, - 1.0434400000000001, - 1.0434400000000001, - 1.0520500000000002, - 1.0687, - 1.0834000000000001, - 1.09161, - 1.09161, - 1.09161, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411, - 1.12411 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 14236
prediction: 2.001
AveOccup: 0.6923076923076923

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.001
AveOccup: 0.8785096153846154

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.001
AveOccup: 1.0647115384615384

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.001
AveOccup: 1.2509134615384614

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.001
AveOccup: 1.4371153846153846

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.006
AveOccup: 1.6233173076923078

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.997
AveOccup: 1.8095192307692307

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.943
AveOccup: 1.995721153846154

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 2.003
AveOccup: 2.181923076923077

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.964
AveOccup: 2.368125

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.664
AveOccup: 2.554326923076923

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.679
AveOccup: 2.740528846153846

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.775
AveOccup: 2.926730769230769

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.77
AveOccup: 3.112932692307692

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.667
AveOccup: 3.2991346153846157

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.572
AveOccup: 3.4853365384615387

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.568
AveOccup: 3.6715384615384616

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.568
AveOccup: 3.8577403846153846

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.573
AveOccup: 4.043942307692308

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.574
AveOccup: 4.2301442307692305

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.579
AveOccup: 4.4163461538461535

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.578
AveOccup: 4.602548076923076

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.58
AveOccup: 4.78875

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.566
AveOccup: 4.974951923076923

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.566
AveOccup: 5.161153846153846

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.566
AveOccup: 5.347355769230769

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.566
AveOccup: 5.533557692307692

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 5.719759615384615

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 5.905961538461539

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 6.092163461538462

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 6.278365384615385

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 6.464567307692308

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 6.650769230769231

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 6.836971153846154

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 7.023173076923077

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 7.209375

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 7.395576923076923

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 7.5817788461538465

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 7.767980769230769

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 7.954182692307692

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 8.140384615384615

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 8.326586538461537

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 8.512788461538461

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 8.698990384615383

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 8.885192307692307

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 9.07139423076923

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 9.257596153846153

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 9.443798076923075

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 9.629999999999999

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 9.816201923076923

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 10.002403846153845

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 10.188605769230769

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 10.37480769230769

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 10.561009615384615

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 10.747211538461537

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 10.93341346153846

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 11.119615384615384

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 11.305817307692307

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 11.49201923076923

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 11.678221153846152

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 11.864423076923076

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 12.050624999999998

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 12.236826923076922

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 12.423028846153844

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 12.609230769230768

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 12.795432692307692

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 12.981634615384614

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 13.167836538461538

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 13.35403846153846

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 13.540240384615384

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 13.726442307692306

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 13.91264423076923

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 14.098846153846152

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 14.285048076923076

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 14.47125

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 14.657451923076922

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 14.843653846153845

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 15.029855769230767

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 15.216057692307691

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 15.402259615384613

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 15.588461538461537

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 15.774663461538461

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 15.960865384615383

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 16.147067307692307

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 16.33326923076923

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 16.519471153846155

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 16.705673076923077

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 16.891875

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 17.078076923076924

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 17.264278846153847

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 17.45048076923077

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 17.636682692307694

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 17.822884615384616

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 18.00908653846154

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 18.19528846153846

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 18.381490384615386

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 18.567692307692308

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 18.75389423076923

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 18.940096153846156

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 19.126298076923078

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ], - [ - "
id: 14236
prediction: 1.553
AveOccup: 19.3125

MedInc: 4.6648
HouseAge: 10.0
AveRooms: 5.395209580838324
AveBedrms: 0.9760479041916168
Population: 698.0
Latitude: 32.69
Longitude: -117.03
_original_yhat_: 1.5739000000000019
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.0014100000000004, - 2.0014100000000004, - 2.0014100000000004, - 2.0014100000000004, - 2.0014100000000004, - 2.00577, - 1.9968100000000004, - 1.9430900000000002, - 2.00267, - 1.9644700000000006, - 1.6638600000000008, - 1.6790300000000005, - 1.7745000000000004, - 1.770000000000001, - 1.6667800000000008, - 1.5716700000000015, - 1.5676700000000015, - 1.5678200000000015, - 1.5731800000000016, - 1.5739000000000019, - 1.5786600000000015, - 1.5782300000000016, - 1.580390000000002, - 1.5664000000000018, - 1.5664000000000018, - 1.5664000000000018, - 1.5664000000000018, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016, - 1.5526800000000016 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 14811
prediction: 4.513
AveOccup: 0.6923076923076923

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.513
AveOccup: 0.8785096153846154

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.513
AveOccup: 1.0647115384615384

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.513
AveOccup: 1.2509134615384614

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.535
AveOccup: 1.4371153846153846

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.606
AveOccup: 1.6233173076923078

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.57
AveOccup: 1.8095192307692307

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.353
AveOccup: 1.995721153846154

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 4.255
AveOccup: 2.181923076923077

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 3.787
AveOccup: 2.368125

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 3.22
AveOccup: 2.554326923076923

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 2.977
AveOccup: 2.740528846153846

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 2.302
AveOccup: 2.926730769230769

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.977
AveOccup: 3.112932692307692

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.912
AveOccup: 3.2991346153846157

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.803
AveOccup: 3.4853365384615387

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.801
AveOccup: 3.6715384615384616

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.796
AveOccup: 3.8577403846153846

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.764
AveOccup: 4.043942307692308

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.761
AveOccup: 4.2301442307692305

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.761
AveOccup: 4.4163461538461535

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.761
AveOccup: 4.602548076923076

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.754
AveOccup: 4.78875

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.821
AveOccup: 4.974951923076923

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 5.161153846153846

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 5.347355769230769

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 5.533557692307692

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 5.719759615384615

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 5.905961538461539

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 6.092163461538462

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 6.278365384615385

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 6.464567307692308

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 6.650769230769231

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 6.836971153846154

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 7.023173076923077

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 7.209375

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 7.395576923076923

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 7.5817788461538465

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 7.767980769230769

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 7.954182692307692

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 8.140384615384615

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 8.326586538461537

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 8.512788461538461

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 8.698990384615383

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 8.885192307692307

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 9.07139423076923

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 9.257596153846153

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 9.443798076923075

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 9.629999999999999

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 9.816201923076923

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 10.002403846153845

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 10.188605769230769

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 10.37480769230769

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 10.561009615384615

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 10.747211538461537

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 10.93341346153846

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 11.119615384615384

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 11.305817307692307

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 11.49201923076923

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 11.678221153846152

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 11.864423076923076

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 12.050624999999998

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 12.236826923076922

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 12.423028846153844

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 12.609230769230768

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 12.795432692307692

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 12.981634615384614

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 13.167836538461538

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 13.35403846153846

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 13.540240384615384

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 13.726442307692306

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 13.91264423076923

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 14.098846153846152

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 14.285048076923076

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 14.47125

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 14.657451923076922

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 14.843653846153845

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 15.029855769230767

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 15.216057692307691

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 15.402259615384613

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 15.588461538461537

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 15.774663461538461

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 15.960865384615383

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 16.147067307692307

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 16.33326923076923

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 16.519471153846155

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 16.705673076923077

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 16.891875

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 17.078076923076924

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 17.264278846153847

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 17.45048076923077

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 17.636682692307694

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 17.822884615384616

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 18.00908653846154

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 18.19528846153846

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 18.381490384615386

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 18.567692307692308

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 18.75389423076923

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 18.940096153846156

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 19.126298076923078

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ], - [ - "
id: 14811
prediction: 1.86
AveOccup: 19.3125

MedInc: 5.1249
HouseAge: 48.0
AveRooms: 6.155902004454343
AveBedrms: 1.0935412026726057
Population: 978.0
Latitude: 32.69
Longitude: -117.18
_original_yhat_: 4.268691500000004
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.512583899999996, - 4.512583899999996, - 4.512583899999996, - 4.512583899999996, - 4.534833899999996, - 4.606073899999996, - 4.569953799999997, - 4.353072399999997, - 4.254981500000003, - 3.786930999999999, - 3.220210699999998, - 2.977120199999999, - 2.302440099999999, - 1.9765399999999997, - 1.9124800999999996, - 1.802899999999999, - 1.8012199999999994, - 1.7956699999999992, - 1.7643399999999994, - 1.7613199999999996, - 1.7610199999999994, - 1.7610199999999994, - 1.7535399999999997, - 1.8209001999999996, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998, - 1.8601702999999998 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 8998
prediction: 4.68
AveOccup: 0.6923076923076923

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.68
AveOccup: 0.8785096153846154

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.68
AveOccup: 1.0647115384615384

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.68
AveOccup: 1.2509134615384614

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.68
AveOccup: 1.4371153846153846

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.732
AveOccup: 1.6233173076923078

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.74
AveOccup: 1.8095192307692307

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.719
AveOccup: 1.995721153846154

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.245
AveOccup: 2.181923076923077

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.082
AveOccup: 2.368125

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.834
AveOccup: 2.554326923076923

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.567
AveOccup: 2.740528846153846

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.24
AveOccup: 2.926730769230769

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 4.163
AveOccup: 3.112932692307692

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.984
AveOccup: 3.2991346153846157

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.634
AveOccup: 3.4853365384615387

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.529
AveOccup: 3.6715384615384616

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.529
AveOccup: 3.8577403846153846

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.499
AveOccup: 4.043942307692308

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.498
AveOccup: 4.2301442307692305

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.498
AveOccup: 4.4163461538461535

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.498
AveOccup: 4.602548076923076

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.498
AveOccup: 4.78875

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 4.974951923076923

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 5.161153846153846

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 5.347355769230769

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 5.533557692307692

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 5.719759615384615

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 5.905961538461539

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 6.092163461538462

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 6.278365384615385

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 6.464567307692308

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 6.650769230769231

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 6.836971153846154

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 7.023173076923077

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 7.209375

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 7.395576923076923

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 7.5817788461538465

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 7.767980769230769

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 7.954182692307692

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 8.140384615384615

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 8.326586538461537

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 8.512788461538461

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 8.698990384615383

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 8.885192307692307

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 9.07139423076923

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 9.257596153846153

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 9.443798076923075

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 9.629999999999999

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 9.816201923076923

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 10.002403846153845

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 10.188605769230769

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 10.37480769230769

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 10.561009615384615

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 10.747211538461537

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 10.93341346153846

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 11.119615384615384

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 11.305817307692307

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 11.49201923076923

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 11.678221153846152

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 11.864423076923076

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 12.050624999999998

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 12.236826923076922

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 12.423028846153844

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 12.609230769230768

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 12.795432692307692

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 12.981634615384614

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 13.167836538461538

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 13.35403846153846

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 13.540240384615384

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 13.726442307692306

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 13.91264423076923

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 14.098846153846152

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 14.285048076923076

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 14.47125

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 14.657451923076922

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 14.843653846153845

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 15.029855769230767

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 15.216057692307691

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 15.402259615384613

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 15.588461538461537

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 15.774663461538461

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 15.960865384615383

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 16.147067307692307

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 16.33326923076923

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 16.519471153846155

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 16.705673076923077

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 16.891875

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 17.078076923076924

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 17.264278846153847

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 17.45048076923077

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 17.636682692307694

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 17.822884615384616

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 18.00908653846154

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 18.19528846153846

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 18.381490384615386

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 18.567692307692308

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 18.75389423076923

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 18.940096153846156

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 19.126298076923078

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ], - [ - "
id: 8998
prediction: 3.525
AveOccup: 19.3125

MedInc: 5.8993
HouseAge: 49.0
AveRooms: 7.051724137931035
AveBedrms: 1.0123152709359606
Population: 1108.0
Latitude: 34.0
Longitude: -118.34
_original_yhat_: 3.5597305999999986
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.679766499999992, - 4.679766499999992, - 4.679766499999992, - 4.679766499999992, - 4.679766499999992, - 4.7316665999999925, - 4.740176599999993, - 4.718746299999992, - 4.245032199999997, - 4.081782199999999, - 3.8343612, - 3.566620599999999, - 4.240361099999996, - 4.1629207999999975, - 3.983540099999999, - 3.6340801000000003, - 3.5289301, - 3.5289301, - 3.498660100000001, - 3.4980001000000005, - 3.4980001000000005, - 3.4980001000000005, - 3.4980001000000005, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007, - 3.5253802000000007 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 889
prediction: 4.229
AveOccup: 0.6923076923076923

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.229
AveOccup: 0.8785096153846154

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.229
AveOccup: 1.0647115384615384

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.229
AveOccup: 1.2509134615384614

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.229
AveOccup: 1.4371153846153846

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.286
AveOccup: 1.6233173076923078

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.361
AveOccup: 1.8095192307692307

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.375
AveOccup: 1.995721153846154

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.154
AveOccup: 2.181923076923077

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 4.045
AveOccup: 2.368125

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.891
AveOccup: 2.554326923076923

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.599
AveOccup: 2.740528846153846

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.491
AveOccup: 2.926730769230769

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.146
AveOccup: 3.112932692307692

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.007
AveOccup: 3.2991346153846157

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.029
AveOccup: 3.4853365384615387

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 3.027
AveOccup: 3.6715384615384616

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.988
AveOccup: 3.8577403846153846

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 4.043942307692308

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 4.2301442307692305

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 4.4163461538461535

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 4.602548076923076

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 4.78875

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 4.974951923076923

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 5.161153846153846

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 5.347355769230769

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 5.533557692307692

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 5.719759615384615

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 5.905961538461539

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 6.092163461538462

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 6.278365384615385

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 6.464567307692308

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 6.650769230769231

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.982
AveOccup: 6.836971153846154

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.962
AveOccup: 7.023173076923077

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.962
AveOccup: 7.209375

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.962
AveOccup: 7.395576923076923

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.962
AveOccup: 7.5817788461538465

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 7.767980769230769

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 7.954182692307692

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 8.140384615384615

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 8.326586538461537

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 8.512788461538461

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 8.698990384615383

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 8.885192307692307

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 9.07139423076923

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 9.257596153846153

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 9.443798076923075

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 9.629999999999999

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 9.816201923076923

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 10.002403846153845

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 10.188605769230769

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 10.37480769230769

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 10.561009615384615

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 10.747211538461537

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 10.93341346153846

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 11.119615384615384

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 11.305817307692307

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 11.49201923076923

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 11.678221153846152

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 11.864423076923076

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 12.050624999999998

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 12.236826923076922

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 12.423028846153844

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 12.609230769230768

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 12.795432692307692

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 12.981634615384614

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 13.167836538461538

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 13.35403846153846

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 13.540240384615384

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 13.726442307692306

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 13.91264423076923

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 14.098846153846152

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 14.285048076923076

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 14.47125

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 14.657451923076922

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 14.843653846153845

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 15.029855769230767

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 15.216057692307691

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 15.402259615384613

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 15.588461538461537

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 15.774663461538461

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 15.960865384615383

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 16.147067307692307

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 16.33326923076923

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 16.519471153846155

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 16.705673076923077

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 16.891875

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 17.078076923076924

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 17.264278846153847

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 17.45048076923077

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 17.636682692307694

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 17.822884615384616

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 18.00908653846154

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 18.19528846153846

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 18.381490384615386

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 18.567692307692308

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 18.75389423076923

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 18.940096153846156

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 19.126298076923078

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ], - [ - "
id: 889
prediction: 2.935
AveOccup: 19.3125

MedInc: 6.6478
HouseAge: 21.0
AveRooms: 7.030921052631579
AveBedrms: 1.013157894736842
Population: 4552.0
Latitude: 37.55
Longitude: -121.95
_original_yhat_: 3.3871601000000022
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.229494099999995, - 4.229494099999995, - 4.229494099999995, - 4.229494099999995, - 4.229494099999995, - 4.285744399999995, - 4.360614399999995, - 4.3751940999999945, - 4.154342099999997, - 4.045231799999997, - 3.8910722999999985, - 3.5988507, - 3.4907801000000025, - 3.1463500000000044, - 3.0067000000000017, - 3.029030000000002, - 3.026800000000001, - 2.988080000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.982060000000002, - 2.962330000000002, - 2.962330000000002, - 2.962330000000002, - 2.962330000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002, - 2.935340000000002 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 4941
prediction: 2.491
AveOccup: 0.6923076923076923

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.491
AveOccup: 0.8785096153846154

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.491
AveOccup: 1.0647115384615384

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.407
AveOccup: 1.2509134615384614

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.484
AveOccup: 1.4371153846153846

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.223
AveOccup: 1.6233173076923078

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.159
AveOccup: 1.8095192307692307

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 2.213
AveOccup: 1.995721153846154

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.833
AveOccup: 2.181923076923077

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.832
AveOccup: 2.368125

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.503
AveOccup: 2.554326923076923

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.512
AveOccup: 2.740528846153846

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.336
AveOccup: 2.926730769230769

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.137
AveOccup: 3.112932692307692

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.121
AveOccup: 3.2991346153846157

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.1
AveOccup: 3.4853365384615387

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.113
AveOccup: 3.6715384615384616

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.101
AveOccup: 3.8577403846153846

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.06
AveOccup: 4.043942307692308

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.044
AveOccup: 4.2301442307692305

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.021
AveOccup: 4.4163461538461535

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.064
AveOccup: 4.602548076923076

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.065
AveOccup: 4.78875

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.063
AveOccup: 4.974951923076923

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.084
AveOccup: 5.161153846153846

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.097
AveOccup: 5.347355769230769

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.103
AveOccup: 5.533557692307692

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.103
AveOccup: 5.719759615384615

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.121
AveOccup: 5.905961538461539

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.121
AveOccup: 6.092163461538462

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.121
AveOccup: 6.278365384615385

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.121
AveOccup: 6.464567307692308

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.156
AveOccup: 6.650769230769231

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.156
AveOccup: 6.836971153846154

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.156
AveOccup: 7.023173076923077

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.156
AveOccup: 7.209375

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.156
AveOccup: 7.395576923076923

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.156
AveOccup: 7.5817788461538465

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.175
AveOccup: 7.767980769230769

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.175
AveOccup: 7.954182692307692

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.175
AveOccup: 8.140384615384615

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.175
AveOccup: 8.326586538461537

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.175
AveOccup: 8.512788461538461

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.175
AveOccup: 8.698990384615383

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.215
AveOccup: 8.885192307692307

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.215
AveOccup: 9.07139423076923

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.292
AveOccup: 9.257596153846153

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.292
AveOccup: 9.443798076923075

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.292
AveOccup: 9.629999999999999

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.292
AveOccup: 9.816201923076923

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.33
AveOccup: 10.002403846153845

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.33
AveOccup: 10.188605769230769

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.33
AveOccup: 10.37480769230769

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.33
AveOccup: 10.561009615384615

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.33
AveOccup: 10.747211538461537

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 10.93341346153846

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 11.119615384615384

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 11.305817307692307

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 11.49201923076923

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 11.678221153846152

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 11.864423076923076

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 12.050624999999998

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 12.236826923076922

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 12.423028846153844

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 12.609230769230768

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 12.795432692307692

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 12.981634615384614

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 13.167836538461538

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 13.35403846153846

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 13.540240384615384

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 13.726442307692306

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 13.91264423076923

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 14.098846153846152

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 14.285048076923076

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 14.47125

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 14.657451923076922

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 14.843653846153845

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 15.029855769230767

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 15.216057692307691

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 15.402259615384613

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 15.588461538461537

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 15.774663461538461

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 15.960865384615383

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 16.147067307692307

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 16.33326923076923

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 16.519471153846155

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 16.705673076923077

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 16.891875

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 17.078076923076924

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 17.264278846153847

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 17.45048076923077

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 17.636682692307694

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 17.822884615384616

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 18.00908653846154

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 18.19528846153846

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 18.381490384615386

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 18.567692307692308

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 18.75389423076923

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 18.940096153846156

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 19.126298076923078

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ], - [ - "
id: 4941
prediction: 1.368
AveOccup: 19.3125

MedInc: 1.8086
HouseAge: 38.0
AveRooms: 3.5
AveBedrms: 1.1119402985074627
Population: 1783.0
Latitude: 33.99
Longitude: -118.27
_original_yhat_: 1.0169900000000007
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.4906705000000002, - 2.4906705000000002, - 2.4906705000000002, - 2.4068905000000007, - 2.4839109000000006, - 2.2228203, - 2.1589001, - 2.2128501, - 1.8329699999999998, - 1.8318899999999994, - 1.5031499999999993, - 1.5123799999999994, - 1.3360100000000006, - 1.1368700000000005, - 1.1211900000000004, - 1.0995900000000003, - 1.1132000000000004, - 1.1006000000000002, - 1.0599100000000001, - 1.0437100000000001, - 1.0205500000000007, - 1.0640200000000002, - 1.0645900000000001, - 1.06295, - 1.0841899999999998, - 1.0969999999999998, - 1.1029899999999997, - 1.1029899999999997, - 1.1213, - 1.1213, - 1.1213, - 1.1213, - 1.15588, - 1.15588, - 1.15588, - 1.15588, - 1.15588, - 1.15588, - 1.1752699999999998, - 1.1752699999999998, - 1.1752699999999998, - 1.1752699999999998, - 1.1752699999999998, - 1.1752699999999998, - 1.2153600999999998, - 1.2153600999999998, - 1.2919203000000001, - 1.2919203000000001, - 1.2919203000000001, - 1.2919203000000001, - 1.3297304000000003, - 1.3297304000000003, - 1.3297304000000003, - 1.3297304000000003, - 1.3297304000000003, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002, - 1.3684805000000002 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 9145
prediction: 2.53
AveOccup: 0.6923076923076923

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.53
AveOccup: 0.8785096153846154

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.53
AveOccup: 1.0647115384615384

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.53
AveOccup: 1.2509134615384614

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.53
AveOccup: 1.4371153846153846

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.56
AveOccup: 1.6233173076923078

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.619
AveOccup: 1.8095192307692307

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.351
AveOccup: 1.995721153846154

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.272
AveOccup: 2.181923076923077

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.146
AveOccup: 2.368125

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.291
AveOccup: 2.554326923076923

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.257
AveOccup: 2.740528846153846

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.288
AveOccup: 2.926730769230769

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.243
AveOccup: 3.112932692307692

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.167
AveOccup: 3.2991346153846157

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.115
AveOccup: 3.4853365384615387

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.118
AveOccup: 3.6715384615384616

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.08
AveOccup: 3.8577403846153846

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.027
AveOccup: 4.043942307692308

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.017
AveOccup: 4.2301442307692305

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.011
AveOccup: 4.4163461538461535

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.042
AveOccup: 4.602548076923076

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.04
AveOccup: 4.78875

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.04
AveOccup: 4.974951923076923

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.04
AveOccup: 5.161153846153846

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.049
AveOccup: 5.347355769230769

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.06
AveOccup: 5.533557692307692

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.06
AveOccup: 5.719759615384615

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.061
AveOccup: 5.905961538461539

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.061
AveOccup: 6.092163461538462

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.077
AveOccup: 6.278365384615385

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.095
AveOccup: 6.464567307692308

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.095
AveOccup: 6.650769230769231

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.13
AveOccup: 6.836971153846154

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.167
AveOccup: 7.023173076923077

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.202
AveOccup: 7.209375

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.202
AveOccup: 7.395576923076923

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.202
AveOccup: 7.5817788461538465

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.203
AveOccup: 7.767980769230769

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.203
AveOccup: 7.954182692307692

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.203
AveOccup: 8.140384615384615

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.203
AveOccup: 8.326586538461537

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.203
AveOccup: 8.512788461538461

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 8.698990384615383

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 8.885192307692307

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 9.07139423076923

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 9.257596153846153

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 9.443798076923075

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 9.629999999999999

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 9.816201923076923

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 10.002403846153845

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 10.188605769230769

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 10.37480769230769

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 10.561009615384615

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 10.747211538461537

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 10.93341346153846

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 11.119615384615384

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 11.305817307692307

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 11.49201923076923

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 11.678221153846152

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 11.864423076923076

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 12.050624999999998

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 12.236826923076922

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 12.423028846153844

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 12.609230769230768

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 12.795432692307692

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 12.981634615384614

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 13.167836538461538

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 13.35403846153846

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 13.540240384615384

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 13.726442307692306

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 13.91264423076923

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 14.098846153846152

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 14.285048076923076

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 14.47125

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 14.657451923076922

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 14.843653846153845

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 15.029855769230767

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 15.216057692307691

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 15.402259615384613

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 15.588461538461537

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 15.774663461538461

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 15.960865384615383

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 16.147067307692307

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 16.33326923076923

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 16.519471153846155

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 16.705673076923077

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 16.891875

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 17.078076923076924

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 17.264278846153847

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 17.45048076923077

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 17.636682692307694

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 17.822884615384616

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 18.00908653846154

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 18.19528846153846

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 18.381490384615386

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 18.567692307692308

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 18.75389423076923

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 18.940096153846156

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 19.126298076923078

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ], - [ - "
id: 9145
prediction: 2.185
AveOccup: 19.3125

MedInc: 4.542
HouseAge: 12.0
AveRooms: 5.7810690423162585
AveBedrms: 1.068596881959911
Population: 10475.0
Latitude: 34.4
Longitude: -118.46
_original_yhat_: 2.113090000000001
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.530350199999999, - 2.530350199999999, - 2.530350199999999, - 2.530350199999999, - 2.530350199999999, - 2.559690199999999, - 2.6188402999999996, - 2.35095, - 2.27238, - 2.1463300000000003, - 2.29126, - 2.2573999999999996, - 2.2876800000000013, - 2.2433200000000006, - 2.16678, - 2.1154900000000003, - 2.11801, - 2.08041, - 2.0266200000000008, - 2.017040000000001, - 2.011310000000001, - 2.042460100000001, - 2.040420100000001, - 2.039600100000001, - 2.040150100000001, - 2.0486101000000008, - 2.0603201, - 2.0604101000000004, - 2.0611301000000006, - 2.0611301000000006, - 2.0769801000000006, - 2.0948401000000003, - 2.0948401000000003, - 2.1298401000000005, - 2.166500100000001, - 2.2023201000000006, - 2.2023201000000006, - 2.2023201000000006, - 2.203170100000001, - 2.203170100000001, - 2.203170100000001, - 2.203170100000001, - 2.203170100000001, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007, - 2.1851301000000007 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 2434
prediction: 1.382
AveOccup: 0.6923076923076923

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.382
AveOccup: 0.8785096153846154

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.382
AveOccup: 1.0647115384615384

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.373
AveOccup: 1.2509134615384614

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.384
AveOccup: 1.4371153846153846

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.576
AveOccup: 1.6233173076923078

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.626
AveOccup: 1.8095192307692307

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.573
AveOccup: 1.995721153846154

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 1.35
AveOccup: 2.181923076923077

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.961
AveOccup: 2.368125

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.834
AveOccup: 2.554326923076923

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.812
AveOccup: 2.740528846153846

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.778
AveOccup: 2.926730769230769

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.754
AveOccup: 3.112932692307692

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.745
AveOccup: 3.2991346153846157

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.745
AveOccup: 3.4853365384615387

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.719
AveOccup: 3.6715384615384616

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.698
AveOccup: 3.8577403846153846

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.706
AveOccup: 4.043942307692308

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.705
AveOccup: 4.2301442307692305

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.704
AveOccup: 4.4163461538461535

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.703
AveOccup: 4.602548076923076

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.702
AveOccup: 4.78875

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.728
AveOccup: 4.974951923076923

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.735
AveOccup: 5.161153846153846

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.735
AveOccup: 5.347355769230769

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.735
AveOccup: 5.533557692307692

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.741
AveOccup: 5.719759615384615

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.762
AveOccup: 5.905961538461539

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.762
AveOccup: 6.092163461538462

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.762
AveOccup: 6.278365384615385

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.762
AveOccup: 6.464567307692308

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.762
AveOccup: 6.650769230769231

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.762
AveOccup: 6.836971153846154

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.779
AveOccup: 7.023173076923077

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.779
AveOccup: 7.209375

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.785
AveOccup: 7.395576923076923

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.785
AveOccup: 7.5817788461538465

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.778
AveOccup: 7.767980769230769

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.778
AveOccup: 7.954182692307692

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.778
AveOccup: 8.140384615384615

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.778
AveOccup: 8.326586538461537

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.778
AveOccup: 8.512788461538461

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.778
AveOccup: 8.698990384615383

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 8.885192307692307

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 9.07139423076923

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 9.257596153846153

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 9.443798076923075

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 9.629999999999999

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 9.816201923076923

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 10.002403846153845

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 10.188605769230769

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 10.37480769230769

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 10.561009615384615

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 10.747211538461537

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 10.93341346153846

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 11.119615384615384

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 11.305817307692307

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 11.49201923076923

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 11.678221153846152

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 11.864423076923076

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 12.050624999999998

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 12.236826923076922

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 12.423028846153844

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 12.609230769230768

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 12.795432692307692

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 12.981634615384614

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 13.167836538461538

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 13.35403846153846

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 13.540240384615384

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 13.726442307692306

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 13.91264423076923

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 14.098846153846152

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 14.285048076923076

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 14.47125

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 14.657451923076922

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 14.843653846153845

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 15.029855769230767

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 15.216057692307691

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 15.402259615384613

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 15.588461538461537

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 15.774663461538461

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 15.960865384615383

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 16.147067307692307

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 16.33326923076923

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 16.519471153846155

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 16.705673076923077

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 16.891875

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 17.078076923076924

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 17.264278846153847

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 17.45048076923077

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 17.636682692307694

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 17.822884615384616

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 18.00908653846154

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 18.19528846153846

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 18.381490384615386

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 18.567692307692308

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 18.75389423076923

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 18.940096153846156

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 19.126298076923078

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ], - [ - "
id: 2434
prediction: 0.793
AveOccup: 19.3125

MedInc: 2.6858
HouseAge: 13.0
AveRooms: 4.350364963503649
AveBedrms: 0.9854014598540146
Population: 1652.0
Latitude: 36.58
Longitude: -119.62
_original_yhat_: 0.7060600000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.3821101999999998, - 1.3821101999999998, - 1.3821101999999998, - 1.3725302, - 1.3844701999999998, - 1.5762802999999996, - 1.6261902999999995, - 1.5727802999999991, - 1.3496702999999999, - 0.9608500999999998, - 0.8342599999999999, - 0.8115000000000001, - 0.7783000000000001, - 0.7539900000000002, - 0.7446200000000001, - 0.7446700000000002, - 0.7185000000000001, - 0.6977400000000001, - 0.7060600000000002, - 0.7050100000000001, - 0.7038100000000002, - 0.7025300000000003, - 0.7020700000000002, - 0.72805, - 0.7348299999999999, - 0.7348799999999999, - 0.7348799999999999, - 0.7410499999999999, - 0.7623899999999998, - 0.7623899999999998, - 0.7623899999999998, - 0.7623899999999998, - 0.7623899999999998, - 0.7623899999999998, - 0.7790899999999997, - 0.7790899999999997, - 0.7852299999999999, - 0.7852299999999999, - 0.7777499999999997, - 0.7777499999999997, - 0.7777499999999997, - 0.7777499999999997, - 0.7777499999999997, - 0.7777499999999997, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299, - 0.79299 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 12733
prediction: 3.62
AveOccup: 0.6923076923076923

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.62
AveOccup: 0.8785096153846154

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.62
AveOccup: 1.0647115384615384

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.62
AveOccup: 1.2509134615384614

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.62
AveOccup: 1.4371153846153846

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.619
AveOccup: 1.6233173076923078

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.644
AveOccup: 1.8095192307692307

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.638
AveOccup: 1.995721153846154

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.633
AveOccup: 2.181923076923077

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.656
AveOccup: 2.368125

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.63
AveOccup: 2.554326923076923

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.562
AveOccup: 2.740528846153846

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.463
AveOccup: 2.926730769230769

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.469
AveOccup: 3.112932692307692

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.451
AveOccup: 3.2991346153846157

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.527
AveOccup: 3.4853365384615387

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.556
AveOccup: 3.6715384615384616

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.555
AveOccup: 3.8577403846153846

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.566
AveOccup: 4.043942307692308

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.566
AveOccup: 4.2301442307692305

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.566
AveOccup: 4.4163461538461535

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.566
AveOccup: 4.602548076923076

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.566
AveOccup: 4.78875

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.566
AveOccup: 4.974951923076923

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.566
AveOccup: 5.161153846153846

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.566
AveOccup: 5.347355769230769

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 5.533557692307692

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 5.719759615384615

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 5.905961538461539

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 6.092163461538462

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 6.278365384615385

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 6.464567307692308

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 6.650769230769231

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 6.836971153846154

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 7.023173076923077

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 7.209375

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 7.395576923076923

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 7.5817788461538465

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 7.767980769230769

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 7.954182692307692

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 8.140384615384615

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 8.326586538461537

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 8.512788461538461

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 8.698990384615383

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 8.885192307692307

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 9.07139423076923

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 9.257596153846153

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 9.443798076923075

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 9.629999999999999

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 9.816201923076923

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 10.002403846153845

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 10.188605769230769

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 10.37480769230769

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 10.561009615384615

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 10.747211538461537

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 10.93341346153846

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 11.119615384615384

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 11.305817307692307

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 11.49201923076923

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 11.678221153846152

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 11.864423076923076

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 12.050624999999998

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 12.236826923076922

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 12.423028846153844

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 12.609230769230768

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 12.795432692307692

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 12.981634615384614

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 13.167836538461538

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 13.35403846153846

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 13.540240384615384

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 13.726442307692306

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 13.91264423076923

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 14.098846153846152

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 14.285048076923076

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 14.47125

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 14.657451923076922

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 14.843653846153845

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 15.029855769230767

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 15.216057692307691

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 15.402259615384613

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 15.588461538461537

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 15.774663461538461

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 15.960865384615383

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 16.147067307692307

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 16.33326923076923

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 16.519471153846155

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 16.705673076923077

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 16.891875

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 17.078076923076924

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 17.264278846153847

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 17.45048076923077

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 17.636682692307694

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 17.822884615384616

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 18.00908653846154

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 18.19528846153846

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 18.381490384615386

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 18.567692307692308

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 18.75389423076923

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 18.940096153846156

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 19.126298076923078

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ], - [ - "
id: 12733
prediction: 3.568
AveOccup: 19.3125

MedInc: 8.6572
HouseAge: 20.0
AveRooms: 8.130434782608695
AveBedrms: 1.0271739130434783
Population: 1105.0
Latitude: 38.58
Longitude: -121.35
_original_yhat_: 3.456540599999999
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.6200310999999994, - 3.6200310999999994, - 3.6200310999999994, - 3.6200310999999994, - 3.6200310999999994, - 3.6187310999999993, - 3.643731199999999, - 3.6379810999999993, - 3.6329510999999997, - 3.655801199999999, - 3.629901099999999, - 3.561520899999999, - 3.4633105999999994, - 3.469230599999999, - 3.4506703999999986, - 3.526940499999999, - 3.556080599999999, - 3.5549505999999993, - 3.5663405999999993, - 3.5663405999999993, - 3.5663405999999993, - 3.5663405999999993, - 3.5663405999999993, - 3.5663405999999993, - 3.5663405999999993, - 3.5663405999999993, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996, - 3.5681706999999996 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 2256
prediction: 2.034
AveOccup: 0.6923076923076923

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.034
AveOccup: 0.8785096153846154

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.034
AveOccup: 1.0647115384615384

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.034
AveOccup: 1.2509134615384614

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.002
AveOccup: 1.4371153846153846

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.024
AveOccup: 1.6233173076923078

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.038
AveOccup: 1.8095192307692307

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 2.018
AveOccup: 1.995721153846154

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.785
AveOccup: 2.181923076923077

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 1.267
AveOccup: 2.368125

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.934
AveOccup: 2.554326923076923

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.915
AveOccup: 2.740528846153846

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.893
AveOccup: 2.926730769230769

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.819
AveOccup: 3.112932692307692

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.81
AveOccup: 3.2991346153846157

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.81
AveOccup: 3.4853365384615387

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.81
AveOccup: 3.6715384615384616

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.813
AveOccup: 3.8577403846153846

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.813
AveOccup: 4.043942307692308

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 4.2301442307692305

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 4.4163461538461535

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 4.602548076923076

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 4.78875

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 4.974951923076923

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 5.161153846153846

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 5.347355769230769

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 5.533557692307692

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 5.719759615384615

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 5.905961538461539

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 6.092163461538462

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 6.278365384615385

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 6.464567307692308

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 6.650769230769231

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 6.836971153846154

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 7.023173076923077

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 7.209375

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 7.395576923076923

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 7.5817788461538465

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 7.767980769230769

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 7.954182692307692

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 8.140384615384615

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 8.326586538461537

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 8.512788461538461

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 8.698990384615383

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 8.885192307692307

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 9.07139423076923

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 9.257596153846153

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 9.443798076923075

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 9.629999999999999

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 9.816201923076923

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 10.002403846153845

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 10.188605769230769

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 10.37480769230769

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 10.561009615384615

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 10.747211538461537

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 10.93341346153846

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 11.119615384615384

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 11.305817307692307

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 11.49201923076923

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 11.678221153846152

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 11.864423076923076

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 12.050624999999998

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 12.236826923076922

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 12.423028846153844

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 12.609230769230768

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 12.795432692307692

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 12.981634615384614

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 13.167836538461538

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 13.35403846153846

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 13.540240384615384

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 13.726442307692306

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 13.91264423076923

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 14.098846153846152

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 14.285048076923076

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 14.47125

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 14.657451923076922

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 14.843653846153845

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 15.029855769230767

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 15.216057692307691

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 15.402259615384613

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 15.588461538461537

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 15.774663461538461

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 15.960865384615383

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 16.147067307692307

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 16.33326923076923

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 16.519471153846155

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 16.705673076923077

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 16.891875

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 17.078076923076924

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 17.264278846153847

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 17.45048076923077

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 17.636682692307694

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 17.822884615384616

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 18.00908653846154

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 18.19528846153846

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 18.381490384615386

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 18.567692307692308

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 18.75389423076923

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 18.940096153846156

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 19.126298076923078

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ], - [ - "
id: 2256
prediction: 0.812
AveOccup: 19.3125

MedInc: 3.4074
HouseAge: 16.0
AveRooms: 5.960251046025105
AveBedrms: 1.0585774058577406
Population: 1508.0
Latitude: 36.8
Longitude: -119.84
_original_yhat_: 0.8070799999999998
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.033580100000001, - 2.033580100000001, - 2.033580100000001, - 2.033580100000001, - 2.0019600000000013, - 2.0239200000000013, - 2.0375300000000003, - 2.01834, - 1.7846499999999994, - 1.2671199999999996, - 0.9340599999999999, - 0.9151399999999998, - 0.8931799999999999, - 0.8188199999999998, - 0.81002, - 0.8096799999999995, - 0.8104399999999998, - 0.8133299999999999, - 0.8125199999999998, - 0.8122199999999998, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997, - 0.8121099999999997 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 16175
prediction: 2.69
AveOccup: 0.6923076923076923

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.69
AveOccup: 0.8785096153846154

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.69
AveOccup: 1.0647115384615384

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.69
AveOccup: 1.2509134615384614

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.69
AveOccup: 1.4371153846153846

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.857
AveOccup: 1.6233173076923078

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.857
AveOccup: 1.8095192307692307

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.844
AveOccup: 1.995721153846154

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.857
AveOccup: 2.181923076923077

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.857
AveOccup: 2.368125

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.857
AveOccup: 2.554326923076923

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.857
AveOccup: 2.740528846153846

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.864
AveOccup: 2.926730769230769

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.86
AveOccup: 3.112932692307692

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.792
AveOccup: 3.2991346153846157

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.793
AveOccup: 3.4853365384615387

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.778
AveOccup: 3.6715384615384616

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.778
AveOccup: 3.8577403846153846

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.778
AveOccup: 4.043942307692308

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.778
AveOccup: 4.2301442307692305

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.775
AveOccup: 4.4163461538461535

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.775
AveOccup: 4.602548076923076

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.775
AveOccup: 4.78875

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.762
AveOccup: 4.974951923076923

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.762
AveOccup: 5.161153846153846

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.762
AveOccup: 5.347355769230769

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.762
AveOccup: 5.533557692307692

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.777
AveOccup: 5.719759615384615

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.777
AveOccup: 5.905961538461539

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.777
AveOccup: 6.092163461538462

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.777
AveOccup: 6.278365384615385

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.777
AveOccup: 6.464567307692308

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.777
AveOccup: 6.650769230769231

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 6.836971153846154

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 7.023173076923077

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 7.209375

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 7.395576923076923

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 7.5817788461538465

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 7.767980769230769

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 7.954182692307692

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 8.140384615384615

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 8.326586538461537

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 8.512788461538461

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 8.698990384615383

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 8.885192307692307

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 9.07139423076923

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 9.257596153846153

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 9.443798076923075

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 9.629999999999999

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 9.816201923076923

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 10.002403846153845

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 10.188605769230769

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 10.37480769230769

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 10.561009615384615

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 10.747211538461537

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 10.93341346153846

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 11.119615384615384

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 11.305817307692307

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 11.49201923076923

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 11.678221153846152

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 11.864423076923076

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 12.050624999999998

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 12.236826923076922

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 12.423028846153844

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 12.609230769230768

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 12.795432692307692

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 12.981634615384614

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 13.167836538461538

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 13.35403846153846

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 13.540240384615384

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 13.726442307692306

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 13.91264423076923

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 14.098846153846152

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 14.285048076923076

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 14.47125

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 14.657451923076922

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 14.843653846153845

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 15.029855769230767

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 15.216057692307691

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 15.402259615384613

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 15.588461538461537

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 15.774663461538461

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 15.960865384615383

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 16.147067307692307

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 16.33326923076923

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 16.519471153846155

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 16.705673076923077

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 16.891875

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 17.078076923076924

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 17.264278846153847

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 17.45048076923077

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 17.636682692307694

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 17.822884615384616

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 18.00908653846154

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 18.19528846153846

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 18.381490384615386

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 18.567692307692308

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 18.75389423076923

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 18.940096153846156

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 19.126298076923078

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ], - [ - "
id: 16175
prediction: 2.785
AveOccup: 19.3125

MedInc: 10.2264
HouseAge: 52.0
AveRooms: 4.666666666666667
AveBedrms: 0.8888888888888888
Population: 37.0
Latitude: 37.74
Longitude: -122.39
_original_yhat_: 2.6898811
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.6898811, - 2.6898811, - 2.6898811, - 2.6898811, - 2.6898811, - 2.8566316, - 2.8566316, - 2.8441316, - 2.8566315999999996, - 2.8566315999999996, - 2.8566315999999996, - 2.8566315999999996, - 2.8635315999999995, - 2.8601913999999993, - 2.7922812999999995, - 2.7927012, - 2.7783212, - 2.7783212, - 2.7783212, - 2.7783212, - 2.7748212, - 2.7748212, - 2.7748212, - 2.7618212, - 2.7618212, - 2.7618212, - 2.7618212, - 2.7768213, - 2.7768213, - 2.7768213, - 2.7768213, - 2.7768213, - 2.7768213, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997, - 2.7851513999999997 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 10014
prediction: 2.085
AveOccup: 0.6923076923076923

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.085
AveOccup: 0.8785096153846154

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.085
AveOccup: 1.0647115384615384

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.085
AveOccup: 1.2509134615384614

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.085
AveOccup: 1.4371153846153846

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.087
AveOccup: 1.6233173076923078

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.057
AveOccup: 1.8095192307692307

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.939
AveOccup: 1.995721153846154

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.001
AveOccup: 2.181923076923077

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 2.057
AveOccup: 2.368125

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.948
AveOccup: 2.554326923076923

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.865
AveOccup: 2.740528846153846

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.791
AveOccup: 2.926730769230769

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.793
AveOccup: 3.112932692307692

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.834
AveOccup: 3.2991346153846157

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.812
AveOccup: 3.4853365384615387

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.827
AveOccup: 3.6715384615384616

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.827
AveOccup: 3.8577403846153846

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.827
AveOccup: 4.043942307692308

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.827
AveOccup: 4.2301442307692305

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.827
AveOccup: 4.4163461538461535

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 4.602548076923076

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 4.78875

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 4.974951923076923

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 5.161153846153846

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 5.347355769230769

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 5.533557692307692

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 5.719759615384615

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 5.905961538461539

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 6.092163461538462

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 6.278365384615385

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 6.464567307692308

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 6.650769230769231

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 6.836971153846154

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 7.023173076923077

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 7.209375

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 7.395576923076923

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 7.5817788461538465

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 7.767980769230769

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 7.954182692307692

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 8.140384615384615

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 8.326586538461537

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 8.512788461538461

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 8.698990384615383

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 8.885192307692307

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 9.07139423076923

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 9.257596153846153

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 9.443798076923075

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 9.629999999999999

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 9.816201923076923

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 10.002403846153845

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 10.188605769230769

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.886
AveOccup: 10.37480769230769

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 10.561009615384615

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 10.747211538461537

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 10.93341346153846

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 11.119615384615384

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 11.305817307692307

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 11.49201923076923

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 11.678221153846152

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 11.864423076923076

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 12.050624999999998

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 12.236826923076922

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 12.423028846153844

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 12.609230769230768

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 12.795432692307692

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 12.981634615384614

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 13.167836538461538

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 13.35403846153846

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 13.540240384615384

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 13.726442307692306

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 13.91264423076923

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 14.098846153846152

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 14.285048076923076

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 14.47125

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 14.657451923076922

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 14.843653846153845

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 15.029855769230767

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 15.216057692307691

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 15.402259615384613

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 15.588461538461537

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 15.774663461538461

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 15.960865384615383

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 16.147067307692307

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 16.33326923076923

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 16.519471153846155

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 16.705673076923077

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 16.891875

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 17.078076923076924

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 17.264278846153847

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 17.45048076923077

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 17.636682692307694

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 17.822884615384616

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 18.00908653846154

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 18.19528846153846

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 18.381490384615386

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 18.567692307692308

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 18.75389423076923

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 18.940096153846156

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 19.126298076923078

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ], - [ - "
id: 10014
prediction: 1.878
AveOccup: 19.3125

MedInc: 4.3646
HouseAge: 9.0
AveRooms: 7.129436325678497
AveBedrms: 1.173277661795407
Population: 1208.0
Latitude: 39.25
Longitude: -121.18
_original_yhat_: 1.935430000000001
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.08467, - 2.08467, - 2.08467, - 2.08467, - 2.08467, - 2.0873800000000005, - 2.0573699999999997, - 1.9387599999999992, - 2.00087, - 2.0574199999999996, - 1.9478200000000012, - 1.8654600000000006, - 1.7914900000000005, - 1.792810000000001, - 1.8338800000000013, - 1.812230000000001, - 1.826990000000001, - 1.826990000000001, - 1.826990000000001, - 1.826990000000001, - 1.826990000000001, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.8856502000000008, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001, - 1.877560200000001 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 5831
prediction: 4.516
AveOccup: 0.6923076923076923

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.516
AveOccup: 0.8785096153846154

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.516
AveOccup: 1.0647115384615384

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.516
AveOccup: 1.2509134615384614

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.516
AveOccup: 1.4371153846153846

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.516
AveOccup: 1.6233173076923078

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.512
AveOccup: 1.8095192307692307

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.535
AveOccup: 1.995721153846154

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.482
AveOccup: 2.181923076923077

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.376
AveOccup: 2.368125

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.32
AveOccup: 2.554326923076923

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 4.047
AveOccup: 2.740528846153846

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.842
AveOccup: 2.926730769230769

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.846
AveOccup: 3.112932692307692

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.788
AveOccup: 3.2991346153846157

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.8
AveOccup: 3.4853365384615387

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.672
AveOccup: 3.6715384615384616

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.672
AveOccup: 3.8577403846153846

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.672
AveOccup: 4.043942307692308

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.672
AveOccup: 4.2301442307692305

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.672
AveOccup: 4.4163461538461535

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.672
AveOccup: 4.602548076923076

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.672
AveOccup: 4.78875

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.672
AveOccup: 4.974951923076923

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.658
AveOccup: 5.161153846153846

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.658
AveOccup: 5.347355769230769

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.658
AveOccup: 5.533557692307692

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.658
AveOccup: 5.719759615384615

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.631
AveOccup: 5.905961538461539

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.631
AveOccup: 6.092163461538462

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.631
AveOccup: 6.278365384615385

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.631
AveOccup: 6.464567307692308

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.631
AveOccup: 6.650769230769231

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.631
AveOccup: 6.836971153846154

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.42
AveOccup: 7.023173076923077

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.42
AveOccup: 7.209375

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.42
AveOccup: 7.395576923076923

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.42
AveOccup: 7.5817788461538465

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 7.767980769230769

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 7.954182692307692

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 8.140384615384615

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 8.326586538461537

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 8.512788461538461

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 8.698990384615383

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 8.885192307692307

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 9.07139423076923

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 9.257596153846153

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 9.443798076923075

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 9.629999999999999

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 9.816201923076923

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 10.002403846153845

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 10.188605769230769

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 10.37480769230769

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 10.561009615384615

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 10.747211538461537

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 10.93341346153846

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 11.119615384615384

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 11.305817307692307

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 11.49201923076923

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 11.678221153846152

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 11.864423076923076

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 12.050624999999998

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 12.236826923076922

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 12.423028846153844

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 12.609230769230768

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 12.795432692307692

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 12.981634615384614

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 13.167836538461538

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 13.35403846153846

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 13.540240384615384

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 13.726442307692306

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 13.91264423076923

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 14.098846153846152

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 14.285048076923076

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 14.47125

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 14.657451923076922

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 14.843653846153845

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 15.029855769230767

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 15.216057692307691

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 15.402259615384613

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 15.588461538461537

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 15.774663461538461

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 15.960865384615383

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 16.147067307692307

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 16.33326923076923

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 16.519471153846155

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 16.705673076923077

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 16.891875

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 17.078076923076924

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 17.264278846153847

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 17.45048076923077

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 17.636682692307694

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 17.822884615384616

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 18.00908653846154

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 18.19528846153846

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 18.381490384615386

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 18.567692307692308

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 18.75389423076923

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 18.940096153846156

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 19.126298076923078

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ], - [ - "
id: 5831
prediction: 3.394
AveOccup: 19.3125

MedInc: 6.9909
HouseAge: 36.0
AveRooms: 6.169590643274854
AveBedrms: 1.0116959064327486
Population: 984.0
Latitude: 34.2
Longitude: -118.32
_original_yhat_: 3.788471299999994
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.515624499999995, - 4.515624499999995, - 4.515624499999995, - 4.515624499999995, - 4.515624499999995, - 4.515624499999995, - 4.5122043999999955, - 4.535134499999995, - 4.481904299999994, - 4.375793899999994, - 4.319763699999995, - 4.046982699999994, - 3.841831299999994, - 3.8464413999999953, - 3.787711499999995, - 3.8002714999999956, - 3.6717712999999965, - 3.6717712999999965, - 3.6717712999999965, - 3.6717712999999965, - 3.6717712999999965, - 3.6717712999999965, - 3.6717712999999965, - 3.6717712999999965, - 3.6583012999999966, - 3.6583012999999966, - 3.6583012999999966, - 3.6583012999999966, - 3.6305212999999963, - 3.6305212999999963, - 3.6305212999999963, - 3.6305212999999963, - 3.6305212999999963, - 3.6305212999999963, - 3.420161199999998, - 3.420161199999998, - 3.420161199999998, - 3.420161199999998, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986, - 3.3936611999999986 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 13456
prediction: 2.167
AveOccup: 0.6923076923076923

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.167
AveOccup: 0.8785096153846154

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.167
AveOccup: 1.0647115384615384

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.167
AveOccup: 1.2509134615384614

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.167
AveOccup: 1.4371153846153846

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.159
AveOccup: 1.6233173076923078

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.174
AveOccup: 1.8095192307692307

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.068
AveOccup: 1.995721153846154

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.044
AveOccup: 2.181923076923077

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 2.04
AveOccup: 2.368125

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.715
AveOccup: 2.554326923076923

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.744
AveOccup: 2.740528846153846

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.379
AveOccup: 2.926730769230769

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.353
AveOccup: 3.112932692307692

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.36
AveOccup: 3.2991346153846157

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.338
AveOccup: 3.4853365384615387

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.34
AveOccup: 3.6715384615384616

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.345
AveOccup: 3.8577403846153846

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.347
AveOccup: 4.043942307692308

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.347
AveOccup: 4.2301442307692305

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.347
AveOccup: 4.4163461538461535

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.359
AveOccup: 4.602548076923076

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.359
AveOccup: 4.78875

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.365
AveOccup: 4.974951923076923

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.481
AveOccup: 5.161153846153846

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.481
AveOccup: 5.347355769230769

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.481
AveOccup: 5.533557692307692

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.481
AveOccup: 5.719759615384615

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.481
AveOccup: 5.905961538461539

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 6.092163461538462

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 6.278365384615385

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 6.464567307692308

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 6.650769230769231

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 6.836971153846154

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 7.023173076923077

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 7.209375

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 7.395576923076923

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 7.5817788461538465

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 7.767980769230769

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 7.954182692307692

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 8.140384615384615

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 8.326586538461537

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 8.512788461538461

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 8.698990384615383

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 8.885192307692307

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 9.07139423076923

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 9.257596153846153

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 9.443798076923075

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 9.629999999999999

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 9.816201923076923

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 10.002403846153845

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 10.188605769230769

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 10.37480769230769

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 10.561009615384615

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 10.747211538461537

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 10.93341346153846

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 11.119615384615384

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 11.305817307692307

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 11.49201923076923

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 11.678221153846152

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 11.864423076923076

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 12.050624999999998

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 12.236826923076922

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 12.423028846153844

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 12.609230769230768

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 12.795432692307692

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 12.981634615384614

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 13.167836538461538

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 13.35403846153846

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 13.540240384615384

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 13.726442307692306

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 13.91264423076923

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 14.098846153846152

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 14.285048076923076

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 14.47125

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 14.657451923076922

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 14.843653846153845

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 15.029855769230767

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 15.216057692307691

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 15.402259615384613

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 15.588461538461537

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 15.774663461538461

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 15.960865384615383

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 16.147067307692307

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 16.33326923076923

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 16.519471153846155

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 16.705673076923077

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 16.891875

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 17.078076923076924

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 17.264278846153847

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 17.45048076923077

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 17.636682692307694

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 17.822884615384616

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 18.00908653846154

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 18.19528846153846

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 18.381490384615386

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 18.567692307692308

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 18.75389423076923

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 18.940096153846156

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 19.126298076923078

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ], - [ - "
id: 13456
prediction: 1.492
AveOccup: 19.3125

MedInc: 4.9444
HouseAge: 16.0
AveRooms: 5.533980582524272
AveBedrms: 0.8786407766990292
Population: 627.0
Latitude: 34.11
Longitude: -117.39
_original_yhat_: 1.3626499999999988
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.1673203, - 2.1673203, - 2.1673203, - 2.1673203, - 2.1673203, - 2.1589003000000004, - 2.1736903000000005, - 2.0676703, - 2.044030099999999, - 2.0404100999999994, - 1.7154699999999996, - 1.7438199999999997, - 1.3792199999999992, - 1.352649999999999, - 1.3597699999999993, - 1.3383899999999995, - 1.3395499999999994, - 1.3452699999999993, - 1.3473899999999992, - 1.3473899999999992, - 1.3473899999999992, - 1.3591199999999994, - 1.3591199999999994, - 1.3648399999999996, - 1.4807599999999996, - 1.4807599999999996, - 1.4807599999999996, - 1.4807599999999996, - 1.4807599999999996, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997, - 1.4924899999999997 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 17980
prediction: 3.521
AveOccup: 0.6923076923076923

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.521
AveOccup: 0.8785096153846154

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.521
AveOccup: 1.0647115384615384

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.521
AveOccup: 1.2509134615384614

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.518
AveOccup: 1.4371153846153846

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.551
AveOccup: 1.6233173076923078

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.44
AveOccup: 1.8095192307692307

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 3.109
AveOccup: 1.995721153846154

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.894
AveOccup: 2.181923076923077

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.796
AveOccup: 2.368125

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.539
AveOccup: 2.554326923076923

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.387
AveOccup: 2.740528846153846

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.306
AveOccup: 2.926730769230769

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.309
AveOccup: 3.112932692307692

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.205
AveOccup: 3.2991346153846157

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 2.143
AveOccup: 3.4853365384615387

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.951
AveOccup: 3.6715384615384616

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.821
AveOccup: 3.8577403846153846

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.79
AveOccup: 4.043942307692308

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.79
AveOccup: 4.2301442307692305

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.803
AveOccup: 4.4163461538461535

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.777
AveOccup: 4.602548076923076

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.749
AveOccup: 4.78875

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.754
AveOccup: 4.974951923076923

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.751
AveOccup: 5.161153846153846

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.745
AveOccup: 5.347355769230769

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.745
AveOccup: 5.533557692307692

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.745
AveOccup: 5.719759615384615

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.741
AveOccup: 5.905961538461539

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.736
AveOccup: 6.092163461538462

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.741
AveOccup: 6.278365384615385

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.748
AveOccup: 6.464567307692308

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.748
AveOccup: 6.650769230769231

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.748
AveOccup: 6.836971153846154

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.751
AveOccup: 7.023173076923077

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.752
AveOccup: 7.209375

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.758
AveOccup: 7.395576923076923

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.758
AveOccup: 7.5817788461538465

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.76
AveOccup: 7.767980769230769

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.76
AveOccup: 7.954182692307692

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.757
AveOccup: 8.140384615384615

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.757
AveOccup: 8.326586538461537

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.757
AveOccup: 8.512788461538461

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.745
AveOccup: 8.698990384615383

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 8.885192307692307

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 9.07139423076923

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 9.257596153846153

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 9.443798076923075

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 9.629999999999999

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 9.816201923076923

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 10.002403846153845

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 10.188605769230769

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 10.37480769230769

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 10.561009615384615

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 10.747211538461537

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 10.93341346153846

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 11.119615384615384

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 11.305817307692307

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 11.49201923076923

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 11.678221153846152

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 11.864423076923076

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 12.050624999999998

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 12.236826923076922

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 12.423028846153844

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 12.609230769230768

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 12.795432692307692

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 12.981634615384614

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 13.167836538461538

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 13.35403846153846

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 13.540240384615384

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 13.726442307692306

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.726
AveOccup: 13.91264423076923

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 14.098846153846152

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 14.285048076923076

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 14.47125

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 14.657451923076922

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 14.843653846153845

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 15.029855769230767

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 15.216057692307691

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 15.402259615384613

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 15.588461538461537

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 15.774663461538461

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 15.960865384615383

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 16.147067307692307

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 16.33326923076923

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 16.519471153846155

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 16.705673076923077

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 16.891875

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 17.078076923076924

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 17.264278846153847

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 17.45048076923077

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 17.636682692307694

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 17.822884615384616

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 18.00908653846154

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 18.19528846153846

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 18.381490384615386

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 18.567692307692308

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 18.75389423076923

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 18.940096153846156

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 19.126298076923078

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ], - [ - "
id: 17980
prediction: 1.717
AveOccup: 19.3125

MedInc: 3.7632
HouseAge: 30.0
AveRooms: 4.360082304526749
AveBedrms: 1.0390946502057614
Population: 1914.0
Latitude: 37.31
Longitude: -121.94
_original_yhat_: 3.068540199999997
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.5207913999999985, - 3.5207913999999985, - 3.5207913999999985, - 3.5207913999999985, - 3.5181212999999985, - 3.5505711999999985, - 3.439510999999998, - 3.1087901999999974, - 2.8936902, - 2.7962504, - 2.5385700000000013, - 2.3870201000000026, - 2.3062900000000024, - 2.309140000000001, - 2.2046100000000006, - 2.14349, - 1.95081, - 1.8206600000000006, - 1.7902600000000006, - 1.7900300000000005, - 1.8032200000000005, - 1.7765799999999998, - 1.7488400000000004, - 1.7539100000000003, - 1.7505000000000004, - 1.7449800000000002, - 1.74483, - 1.74478, - 1.7414600000000002, - 1.7358599999999997, - 1.7408700000000001, - 1.7476100000000003, - 1.7476100000000003, - 1.7476100000000003, - 1.75066, - 1.75221, - 1.75849, - 1.75849, - 1.76, - 1.76, - 1.75702, - 1.75702, - 1.75702, - 1.7446000000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.7263100000000002, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684, - 1.71684 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 6599
prediction: 3.06
AveOccup: 0.6923076923076923

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.06
AveOccup: 0.8785096153846154

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.06
AveOccup: 1.0647115384615384

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.06
AveOccup: 1.2509134615384614

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.097
AveOccup: 1.4371153846153846

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 3.179
AveOccup: 1.6233173076923078

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.949
AveOccup: 1.8095192307692307

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.627
AveOccup: 1.995721153846154

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.302
AveOccup: 2.181923076923077

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.456
AveOccup: 2.368125

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.251
AveOccup: 2.554326923076923

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 2.073
AveOccup: 2.740528846153846

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.827
AveOccup: 2.926730769230769

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.719
AveOccup: 3.112932692307692

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.731
AveOccup: 3.2991346153846157

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.72
AveOccup: 3.4853365384615387

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.834
AveOccup: 3.6715384615384616

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.856
AveOccup: 3.8577403846153846

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.836
AveOccup: 4.043942307692308

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.842
AveOccup: 4.2301442307692305

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.841
AveOccup: 4.4163461538461535

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.847
AveOccup: 4.602548076923076

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.849
AveOccup: 4.78875

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.851
AveOccup: 4.974951923076923

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.851
AveOccup: 5.161153846153846

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.85
AveOccup: 5.347355769230769

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.85
AveOccup: 5.533557692307692

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.846
AveOccup: 5.719759615384615

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.867
AveOccup: 5.905961538461539

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.867
AveOccup: 6.092163461538462

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.867
AveOccup: 6.278365384615385

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.887
AveOccup: 6.464567307692308

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.882
AveOccup: 6.650769230769231

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.882
AveOccup: 6.836971153846154

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.882
AveOccup: 7.023173076923077

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.882
AveOccup: 7.209375

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.882
AveOccup: 7.395576923076923

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.882
AveOccup: 7.5817788461538465

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.882
AveOccup: 7.767980769230769

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.882
AveOccup: 7.954182692307692

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.882
AveOccup: 8.140384615384615

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.882
AveOccup: 8.326586538461537

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.882
AveOccup: 8.512788461538461

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 8.698990384615383

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 8.885192307692307

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 9.07139423076923

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 9.257596153846153

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 9.443798076923075

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 9.629999999999999

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 9.816201923076923

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 10.002403846153845

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 10.188605769230769

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 10.37480769230769

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 10.561009615384615

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 10.747211538461537

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 10.93341346153846

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 11.119615384615384

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 11.305817307692307

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 11.49201923076923

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 11.678221153846152

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 11.864423076923076

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 12.050624999999998

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 12.236826923076922

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.861
AveOccup: 12.423028846153844

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.87
AveOccup: 12.609230769230768

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.87
AveOccup: 12.795432692307692

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.87
AveOccup: 12.981634615384614

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.87
AveOccup: 13.167836538461538

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.87
AveOccup: 13.35403846153846

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.87
AveOccup: 13.540240384615384

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.87
AveOccup: 13.726442307692306

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.87
AveOccup: 13.91264423076923

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.849
AveOccup: 14.098846153846152

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 14.285048076923076

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 14.47125

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 14.657451923076922

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 14.843653846153845

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 15.029855769230767

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 15.216057692307691

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 15.402259615384613

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 15.588461538461537

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 15.774663461538461

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 15.960865384615383

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 16.147067307692307

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 16.33326923076923

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 16.519471153846155

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 16.705673076923077

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 16.891875

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 17.078076923076924

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 17.264278846153847

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 17.45048076923077

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 17.636682692307694

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 17.822884615384616

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 18.00908653846154

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 18.19528846153846

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 18.381490384615386

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 18.567692307692308

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.838
AveOccup: 18.75389423076923

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.808
AveOccup: 18.940096153846156

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.808
AveOccup: 19.126298076923078

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ], - [ - "
id: 6599
prediction: 1.808
AveOccup: 19.3125

MedInc: 3.1741
HouseAge: 52.0
AveRooms: 5.398190045248869
AveBedrms: 1.0316742081447965
Population: 703.0
Latitude: 34.17
Longitude: -118.16
_original_yhat_: 1.700070000000002
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.0601413999999987, - 3.0601413999999987, - 3.0601413999999987, - 3.0601413999999987, - 3.0967313999999995, - 3.179320999999999, - 2.9489304999999986, - 2.627320200000001, - 2.3015001999999996, - 2.4562701000000007, - 2.2513899999999993, - 2.0731000000000006, - 1.827150000000001, - 1.7189400000000017, - 1.7309300000000014, - 1.7199700000000013, - 1.8339903000000013, - 1.8564405000000017, - 1.8362104000000015, - 1.842340400000001, - 1.8405504000000013, - 1.8466504000000008, - 1.8490804000000005, - 1.8507504000000006, - 1.8507504000000006, - 1.8495504000000005, - 1.8495504000000005, - 1.8456004000000004, - 1.8665304, - 1.8665304, - 1.8665304, - 1.8872604000000002, - 1.8817104000000002, - 1.8817104000000002, - 1.8817104000000002, - 1.8817104000000002, - 1.8817104000000002, - 1.8817104000000002, - 1.8817104000000002, - 1.8817104000000002, - 1.8817104000000002, - 1.8817104000000002, - 1.8817104000000002, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611904000000004, - 1.8611204000000003, - 1.8611204000000003, - 1.8611204000000003, - 1.8611204000000003, - 1.8611204000000003, - 1.8697504000000003, - 1.8697504000000003, - 1.8697504000000003, - 1.8697504000000003, - 1.8697504000000003, - 1.8697504000000003, - 1.8697504000000003, - 1.8697504000000003, - 1.8492204000000003, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8382504000000004, - 1.8077704000000008, - 1.8077704000000008, - 1.8077704000000008 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 19726
prediction: 1.865
AveOccup: 0.6923076923076923

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.865
AveOccup: 0.8785096153846154

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.865
AveOccup: 1.0647115384615384

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.865
AveOccup: 1.2509134615384614

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.78
AveOccup: 1.4371153846153846

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.772
AveOccup: 1.6233173076923078

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.715
AveOccup: 1.8095192307692307

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.472
AveOccup: 1.995721153846154

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.393
AveOccup: 2.181923076923077

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.286
AveOccup: 2.368125

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.146
AveOccup: 2.554326923076923

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.098
AveOccup: 2.740528846153846

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 1.049
AveOccup: 2.926730769230769

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.972
AveOccup: 3.112932692307692

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.949
AveOccup: 3.2991346153846157

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.937
AveOccup: 3.4853365384615387

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.942
AveOccup: 3.6715384615384616

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.94
AveOccup: 3.8577403846153846

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.957
AveOccup: 4.043942307692308

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.951
AveOccup: 4.2301442307692305

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.951
AveOccup: 4.4163461538461535

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.951
AveOccup: 4.602548076923076

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.951
AveOccup: 4.78875

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 4.974951923076923

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 5.161153846153846

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 5.347355769230769

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 5.533557692307692

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 5.719759615384615

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 5.905961538461539

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 6.092163461538462

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 6.278365384615385

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 6.464567307692308

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 6.650769230769231

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 6.836971153846154

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 7.023173076923077

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 7.209375

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 7.395576923076923

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 7.5817788461538465

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.967
AveOccup: 7.767980769230769

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.974
AveOccup: 7.954182692307692

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.974
AveOccup: 8.140384615384615

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.974
AveOccup: 8.326586538461537

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.974
AveOccup: 8.512788461538461

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.974
AveOccup: 8.698990384615383

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.974
AveOccup: 8.885192307692307

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.974
AveOccup: 9.07139423076923

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.974
AveOccup: 9.257596153846153

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.974
AveOccup: 9.443798076923075

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.974
AveOccup: 9.629999999999999

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 9.816201923076923

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 10.002403846153845

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 10.188605769230769

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 10.37480769230769

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 10.561009615384615

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 10.747211538461537

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 10.93341346153846

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 11.119615384615384

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 11.305817307692307

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 11.49201923076923

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 11.678221153846152

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 11.864423076923076

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 12.050624999999998

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 12.236826923076922

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 12.423028846153844

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 12.609230769230768

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 12.795432692307692

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 12.981634615384614

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 13.167836538461538

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 13.35403846153846

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 13.540240384615384

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 13.726442307692306

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 13.91264423076923

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 14.098846153846152

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 14.285048076923076

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 14.47125

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 14.657451923076922

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 14.843653846153845

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 15.029855769230767

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 15.216057692307691

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 15.402259615384613

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 15.588461538461537

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 15.774663461538461

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 15.960865384615383

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 16.147067307692307

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 16.33326923076923

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 16.519471153846155

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 16.705673076923077

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 16.891875

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 17.078076923076924

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 17.264278846153847

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 17.45048076923077

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 17.636682692307694

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 17.822884615384616

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 18.00908653846154

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 18.19528846153846

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 18.381490384615386

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 18.567692307692308

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 18.75389423076923

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 18.940096153846156

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 19.126298076923078

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ], - [ - "
id: 19726
prediction: 0.981
AveOccup: 19.3125

MedInc: 3.3125
HouseAge: 26.0
AveRooms: 5.283168316831683
AveBedrms: 1.00990099009901
Population: 1437.0
Latitude: 39.07
Longitude: -121.7
_original_yhat_: 1.0441
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.8654005000000007, - 1.8654005000000007, - 1.8654005000000007, - 1.8654005000000007, - 1.7803903000000008, - 1.7724302000000005, - 1.7151401000000004, - 1.4720600000000001, - 1.3931900000000002, - 1.2860199999999993, - 1.1457499999999998, - 1.0977999999999997, - 1.0494799999999997, - 0.9715199999999997, - 0.9487399999999998, - 0.9373999999999996, - 0.9415799999999996, - 0.9403199999999995, - 0.9566199999999999, - 0.95095, - 0.95095, - 0.95095, - 0.95095, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9670899999999999, - 0.9741099999999999, - 0.9741099999999999, - 0.9741099999999999, - 0.9741099999999999, - 0.9741099999999999, - 0.9741099999999999, - 0.9741099999999999, - 0.9741099999999999, - 0.9741099999999999, - 0.9741099999999999, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998, - 0.9811299999999998 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 4239
prediction: 4.366
AveOccup: 0.6923076923076923

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.366
AveOccup: 0.8785096153846154

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.366
AveOccup: 1.0647115384615384

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.366
AveOccup: 1.2509134615384614

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.414
AveOccup: 1.4371153846153846

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.468
AveOccup: 1.6233173076923078

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 4.391
AveOccup: 1.8095192307692307

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 3.627
AveOccup: 1.995721153846154

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 3.516
AveOccup: 2.181923076923077

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 3.21
AveOccup: 2.368125

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 2.615
AveOccup: 2.554326923076923

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 2.401
AveOccup: 2.740528846153846

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 2.16
AveOccup: 2.926730769230769

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 2.048
AveOccup: 3.112932692307692

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.979
AveOccup: 3.2991346153846157

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.868
AveOccup: 3.4853365384615387

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.851
AveOccup: 3.6715384615384616

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.786
AveOccup: 3.8577403846153846

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.756
AveOccup: 4.043942307692308

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.719
AveOccup: 4.2301442307692305

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.705
AveOccup: 4.4163461538461535

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.678
AveOccup: 4.602548076923076

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.679
AveOccup: 4.78875

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.67
AveOccup: 4.974951923076923

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.659
AveOccup: 5.161153846153846

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.655
AveOccup: 5.347355769230769

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.642
AveOccup: 5.533557692307692

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.63
AveOccup: 5.719759615384615

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.626
AveOccup: 5.905961538461539

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.626
AveOccup: 6.092163461538462

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.621
AveOccup: 6.278365384615385

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.621
AveOccup: 6.464567307692308

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.636
AveOccup: 6.650769230769231

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.636
AveOccup: 6.836971153846154

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.636
AveOccup: 7.023173076923077

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.685
AveOccup: 7.209375

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.685
AveOccup: 7.395576923076923

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.685
AveOccup: 7.5817788461538465

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.685
AveOccup: 7.767980769230769

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.685
AveOccup: 7.954182692307692

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.685
AveOccup: 8.140384615384615

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.685
AveOccup: 8.326586538461537

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.685
AveOccup: 8.512788461538461

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 8.698990384615383

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 8.885192307692307

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 9.07139423076923

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 9.257596153846153

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 9.443798076923075

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 9.629999999999999

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 9.816201923076923

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 10.002403846153845

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 10.188605769230769

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 10.37480769230769

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 10.561009615384615

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 10.747211538461537

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 10.93341346153846

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 11.119615384615384

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 11.305817307692307

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 11.49201923076923

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 11.678221153846152

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 11.864423076923076

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 12.050624999999998

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 12.236826923076922

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 12.423028846153844

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 12.609230769230768

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 12.795432692307692

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 12.981634615384614

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 13.167836538461538

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 13.35403846153846

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 13.540240384615384

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 13.726442307692306

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.667
AveOccup: 13.91264423076923

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.659
AveOccup: 14.098846153846152

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 14.285048076923076

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 14.47125

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 14.657451923076922

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 14.843653846153845

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 15.029855769230767

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 15.216057692307691

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 15.402259615384613

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 15.588461538461537

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 15.774663461538461

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 15.960865384615383

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 16.147067307692307

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 16.33326923076923

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 16.519471153846155

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 16.705673076923077

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 16.891875

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 17.078076923076924

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 17.264278846153847

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 17.45048076923077

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 17.636682692307694

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 17.822884615384616

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 18.00908653846154

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 18.19528846153846

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 18.381490384615386

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 18.567692307692308

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.648
AveOccup: 18.75389423076923

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.581
AveOccup: 18.940096153846156

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.581
AveOccup: 19.126298076923078

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ], - [ - "
id: 4239
prediction: 1.581
AveOccup: 19.3125

MedInc: 4.0833
HouseAge: 42.0
AveRooms: 5.1078838174273855
AveBedrms: 1.1265560165975104
Population: 857.0
Latitude: 34.11
Longitude: -118.32
_original_yhat_: 4.444612099999993
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.365561899999997, - 4.365561899999997, - 4.365561899999997, - 4.365561899999997, - 4.414002299999996, - 4.467592199999995, - 4.391212899999994, - 3.6273015999999982, - 3.5158315, - 3.2101103000000006, - 2.61512, - 2.4014499999999996, - 2.16003, - 2.0476600000000005, - 1.9785899999999998, - 1.8679099999999997, - 1.8507500000000006, - 1.7863200000000004, - 1.7565, - 1.7186400000000006, - 1.7048800000000002, - 1.6778399999999996, - 1.6787399999999995, - 1.6695199999999994, - 1.6587899999999995, - 1.6550099999999994, - 1.6416499999999994, - 1.6302299999999992, - 1.6256099999999991, - 1.6256099999999991, - 1.6209699999999991, - 1.6209699999999991, - 1.6357799999999991, - 1.6357799999999991, - 1.6357799999999991, - 1.6849399999999992, - 1.6849399999999992, - 1.6849399999999992, - 1.6849399999999992, - 1.6849399999999992, - 1.6849399999999992, - 1.6849399999999992, - 1.6849399999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.6668999999999992, - 1.659389999999999, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.6481299999999992, - 1.5809399999999996, - 1.5809399999999996, - 1.5809399999999996 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 1332
prediction: 3.097
AveOccup: 0.6923076923076923

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.097
AveOccup: 0.8785096153846154

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.097
AveOccup: 1.0647115384615384

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.097
AveOccup: 1.2509134615384614

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.097
AveOccup: 1.4371153846153846

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.093
AveOccup: 1.6233173076923078

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 3.055
AveOccup: 1.8095192307692307

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.909
AveOccup: 1.995721153846154

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.545
AveOccup: 2.181923076923077

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.328
AveOccup: 2.368125

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.179
AveOccup: 2.554326923076923

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.893
AveOccup: 2.740528846153846

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.707
AveOccup: 2.926730769230769

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.918
AveOccup: 3.112932692307692

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.927
AveOccup: 3.2991346153846157

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.992
AveOccup: 3.4853365384615387

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.981
AveOccup: 3.6715384615384616

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.986
AveOccup: 3.8577403846153846

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.979
AveOccup: 4.043942307692308

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.971
AveOccup: 4.2301442307692305

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.971
AveOccup: 4.4163461538461535

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.971
AveOccup: 4.602548076923076

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 1.971
AveOccup: 4.78875

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 4.974951923076923

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 5.161153846153846

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 5.347355769230769

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 5.533557692307692

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 5.719759615384615

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 5.905961538461539

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 6.092163461538462

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 6.278365384615385

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 6.464567307692308

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 6.650769230769231

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 6.836971153846154

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 7.023173076923077

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 7.209375

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 7.395576923076923

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 7.5817788461538465

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 7.767980769230769

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 7.954182692307692

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 8.140384615384615

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 8.326586538461537

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 8.512788461538461

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 8.698990384615383

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 8.885192307692307

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 9.07139423076923

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 9.257596153846153

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 9.443798076923075

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 9.629999999999999

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 9.816201923076923

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 10.002403846153845

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 10.188605769230769

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 10.37480769230769

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 10.561009615384615

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 10.747211538461537

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 10.93341346153846

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 11.119615384615384

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 11.305817307692307

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 11.49201923076923

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 11.678221153846152

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 11.864423076923076

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 12.050624999999998

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 12.236826923076922

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 12.423028846153844

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 12.609230769230768

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 12.795432692307692

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 12.981634615384614

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 13.167836538461538

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 13.35403846153846

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 13.540240384615384

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 13.726442307692306

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 13.91264423076923

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 14.098846153846152

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 14.285048076923076

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 14.47125

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 14.657451923076922

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 14.843653846153845

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 15.029855769230767

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 15.216057692307691

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 15.402259615384613

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 15.588461538461537

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 15.774663461538461

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 15.960865384615383

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 16.147067307692307

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 16.33326923076923

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 16.519471153846155

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 16.705673076923077

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 16.891875

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 17.078076923076924

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 17.264278846153847

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 17.45048076923077

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 17.636682692307694

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 17.822884615384616

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 18.00908653846154

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 18.19528846153846

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 18.381490384615386

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 18.567692307692308

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 18.75389423076923

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 18.940096153846156

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 19.126298076923078

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ], - [ - "
id: 1332
prediction: 2.036
AveOccup: 19.3125

MedInc: 5.3098
HouseAge: 22.0
AveRooms: 5.589147286821706
AveBedrms: 0.9069767441860465
Population: 367.0
Latitude: 38.0
Longitude: -121.88
_original_yhat_: 1.705860000000001
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.0973709999999977, - 3.0973709999999977, - 3.0973709999999977, - 3.0973709999999977, - 3.0973709999999977, - 3.092580999999998, - 3.055430799999998, - 2.9094903999999975, - 2.5452003000000007, - 2.3282003, - 2.179420099999999, - 1.8930300000000002, - 1.7069100000000008, - 1.9182900000000003, - 1.9268299999999994, - 1.9921699999999993, - 1.98064, - 1.9859499999999997, - 1.9785999999999995, - 1.9714699999999994, - 1.9714699999999994, - 1.9714699999999994, - 1.9714699999999994, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502, - 2.0361502 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 16659
prediction: 1.915
AveOccup: 0.6923076923076923

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.915
AveOccup: 0.8785096153846154

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.915
AveOccup: 1.0647115384615384

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.923
AveOccup: 1.2509134615384614

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.903
AveOccup: 1.4371153846153846

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.87
AveOccup: 1.6233173076923078

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.879
AveOccup: 1.8095192307692307

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.876
AveOccup: 1.995721153846154

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.991
AveOccup: 2.181923076923077

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 2.038
AveOccup: 2.368125

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.989
AveOccup: 2.554326923076923

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.983
AveOccup: 2.740528846153846

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.903
AveOccup: 2.926730769230769

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.821
AveOccup: 3.112932692307692

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.804
AveOccup: 3.2991346153846157

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.734
AveOccup: 3.4853365384615387

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.728
AveOccup: 3.6715384615384616

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.727
AveOccup: 3.8577403846153846

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.723
AveOccup: 4.043942307692308

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.721
AveOccup: 4.2301442307692305

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.722
AveOccup: 4.4163461538461535

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.722
AveOccup: 4.602548076923076

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.727
AveOccup: 4.78875

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.726
AveOccup: 4.974951923076923

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.735
AveOccup: 5.161153846153846

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.754
AveOccup: 5.347355769230769

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.754
AveOccup: 5.533557692307692

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.754
AveOccup: 5.719759615384615

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.754
AveOccup: 5.905961538461539

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.754
AveOccup: 6.092163461538462

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.754
AveOccup: 6.278365384615385

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.754
AveOccup: 6.464567307692308

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.754
AveOccup: 6.650769230769231

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.754
AveOccup: 6.836971153846154

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.753
AveOccup: 7.023173076923077

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.753
AveOccup: 7.209375

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.753
AveOccup: 7.395576923076923

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.753
AveOccup: 7.5817788461538465

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.753
AveOccup: 7.767980769230769

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.753
AveOccup: 7.954182692307692

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.753
AveOccup: 8.140384615384615

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.753
AveOccup: 8.326586538461537

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.757
AveOccup: 8.512788461538461

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.757
AveOccup: 8.698990384615383

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.757
AveOccup: 8.885192307692307

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.757
AveOccup: 9.07139423076923

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.757
AveOccup: 9.257596153846153

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.757
AveOccup: 9.443798076923075

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.757
AveOccup: 9.629999999999999

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.757
AveOccup: 9.816201923076923

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.757
AveOccup: 10.002403846153845

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.737
AveOccup: 10.188605769230769

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.737
AveOccup: 10.37480769230769

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.737
AveOccup: 10.561009615384615

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.737
AveOccup: 10.747211538461537

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.737
AveOccup: 10.93341346153846

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.738
AveOccup: 11.119615384615384

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.738
AveOccup: 11.305817307692307

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.738
AveOccup: 11.49201923076923

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.738
AveOccup: 11.678221153846152

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.738
AveOccup: 11.864423076923076

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.738
AveOccup: 12.050624999999998

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.738
AveOccup: 12.236826923076922

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.738
AveOccup: 12.423028846153844

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.738
AveOccup: 12.609230769230768

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.738
AveOccup: 12.795432692307692

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.738
AveOccup: 12.981634615384614

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.738
AveOccup: 13.167836538461538

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 13.35403846153846

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 13.540240384615384

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 13.726442307692306

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 13.91264423076923

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 14.098846153846152

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 14.285048076923076

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 14.47125

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 14.657451923076922

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 14.843653846153845

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 15.029855769230767

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 15.216057692307691

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 15.402259615384613

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 15.588461538461537

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 15.774663461538461

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 15.960865384615383

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 16.147067307692307

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 16.33326923076923

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 16.519471153846155

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 16.705673076923077

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 16.891875

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 17.078076923076924

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 17.264278846153847

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 17.45048076923077

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 17.636682692307694

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 17.822884615384616

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 18.00908653846154

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 18.19528846153846

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 18.381490384615386

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 18.567692307692308

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 18.75389423076923

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 18.940096153846156

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 19.126298076923078

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ], - [ - "
id: 16659
prediction: 1.733
AveOccup: 19.3125

MedInc: 2.2165
HouseAge: 32.0
AveRooms: 4.395397489539749
AveBedrms: 1.0313807531380754
Population: 2309.0
Latitude: 35.3
Longitude: -120.67
_original_yhat_: 2.0466000000000024
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.914580000000001, - 1.914580000000001, - 1.914580000000001, - 1.923330000000001, - 1.902690000000001, - 1.8703700000000012, - 1.879180000000001, - 1.8759000000000006, - 1.9913300000000012, - 2.0379200000000015, - 1.9894100000000021, - 1.9825000000000024, - 1.9034100000000016, - 1.8214400000000015, - 1.8036400000000015, - 1.7335600000000013, - 1.7283100000000016, - 1.7267500000000016, - 1.7226700000000015, - 1.7212800000000013, - 1.7223300000000012, - 1.7223300000000012, - 1.727240000000001, - 1.725990000000001, - 1.7345300000000012, - 1.7539800000000008, - 1.7539800000000008, - 1.7539800000000008, - 1.7539800000000008, - 1.7539800000000008, - 1.7539800000000008, - 1.7539800000000008, - 1.7539800000000008, - 1.7539800000000008, - 1.7527200000000007, - 1.7527200000000007, - 1.7527200000000007, - 1.7527200000000007, - 1.7527200000000007, - 1.7527200000000007, - 1.7527200000000007, - 1.7527200000000007, - 1.7573600000000007, - 1.7573600000000007, - 1.7573600000000007, - 1.7573600000000007, - 1.7573600000000007, - 1.7573600000000007, - 1.7573600000000007, - 1.7573600000000007, - 1.7573600000000007, - 1.7369100000000008, - 1.7369100000000008, - 1.7369100000000008, - 1.7369100000000008, - 1.7369100000000008, - 1.737610000000001, - 1.737610000000001, - 1.737610000000001, - 1.737610000000001, - 1.737610000000001, - 1.737610000000001, - 1.737610000000001, - 1.737610000000001, - 1.737610000000001, - 1.737610000000001, - 1.737610000000001, - 1.737610000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001, - 1.732840000000001 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 10880
prediction: 3.884
AveOccup: 0.6923076923076923

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.884
AveOccup: 0.8785096153846154

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.884
AveOccup: 1.0647115384615384

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.884
AveOccup: 1.2509134615384614

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.884
AveOccup: 1.4371153846153846

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.861
AveOccup: 1.6233173076923078

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.948
AveOccup: 1.8095192307692307

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.629
AveOccup: 1.995721153846154

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 3.018
AveOccup: 2.181923076923077

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.782
AveOccup: 2.368125

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.511
AveOccup: 2.554326923076923

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.475
AveOccup: 2.740528846153846

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.209
AveOccup: 2.926730769230769

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.13
AveOccup: 3.112932692307692

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.096
AveOccup: 3.2991346153846157

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.078
AveOccup: 3.4853365384615387

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.053
AveOccup: 3.6715384615384616

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.026
AveOccup: 3.8577403846153846

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.015
AveOccup: 4.043942307692308

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.976
AveOccup: 4.2301442307692305

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.96
AveOccup: 4.4163461538461535

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.954
AveOccup: 4.602548076923076

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.949
AveOccup: 4.78875

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.937
AveOccup: 4.974951923076923

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.964
AveOccup: 5.161153846153846

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.966
AveOccup: 5.347355769230769

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.966
AveOccup: 5.533557692307692

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.966
AveOccup: 5.719759615384615

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.966
AveOccup: 5.905961538461539

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.961
AveOccup: 6.092163461538462

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.961
AveOccup: 6.278365384615385

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.961
AveOccup: 6.464567307692308

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.961
AveOccup: 6.650769230769231

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.976
AveOccup: 6.836971153846154

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.983
AveOccup: 7.023173076923077

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.023
AveOccup: 7.209375

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.022
AveOccup: 7.395576923076923

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.022
AveOccup: 7.5817788461538465

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.022
AveOccup: 7.767980769230769

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.022
AveOccup: 7.954182692307692

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.022
AveOccup: 8.140384615384615

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.022
AveOccup: 8.326586538461537

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.022
AveOccup: 8.512788461538461

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 8.698990384615383

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 8.885192307692307

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 9.07139423076923

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 9.257596153846153

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 9.443798076923075

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 9.629999999999999

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 9.816201923076923

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 10.002403846153845

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 10.188605769230769

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 10.37480769230769

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 10.561009615384615

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 10.747211538461537

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 10.93341346153846

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 11.119615384615384

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 11.305817307692307

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 11.49201923076923

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 11.678221153846152

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 11.864423076923076

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 12.050624999999998

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 12.236826923076922

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 12.423028846153844

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 12.609230769230768

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 12.795432692307692

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 12.981634615384614

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 13.167836538461538

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 13.35403846153846

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 13.540240384615384

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 13.726442307692306

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 13.91264423076923

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 2.004
AveOccup: 14.098846153846152

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 14.285048076923076

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 14.47125

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 14.657451923076922

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 14.843653846153845

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 15.029855769230767

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 15.216057692307691

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 15.402259615384613

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 15.588461538461537

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 15.774663461538461

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 15.960865384615383

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 16.147067307692307

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 16.33326923076923

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 16.519471153846155

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 16.705673076923077

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 16.891875

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 17.078076923076924

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 17.264278846153847

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 17.45048076923077

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 17.636682692307694

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 17.822884615384616

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 18.00908653846154

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 18.19528846153846

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 18.381490384615386

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 18.567692307692308

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 18.75389423076923

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 18.940096153846156

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 19.126298076923078

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ], - [ - "
id: 10880
prediction: 1.989
AveOccup: 19.3125

MedInc: 4.7422
HouseAge: 23.0
AveRooms: 5.406844106463878
AveBedrms: 0.9885931558935361
Population: 1092.0
Latitude: 33.71
Longitude: -117.89
_original_yhat_: 1.9947500000000007
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.8835532999999964, - 3.8835532999999964, - 3.8835532999999964, - 3.8835532999999964, - 3.8835532999999964, - 3.8605331999999963, - 3.9475931999999965, - 3.628512499999999, - 3.0180114999999996, - 2.7815101999999983, - 2.5107299999999997, - 2.4751400999999995, - 2.2091, - 2.1301499999999995, - 2.0964599999999995, - 2.0782699999999994, - 2.0531500000000005, - 2.025640000000001, - 2.0145200000000005, - 1.9758000000000007, - 1.960460000000001, - 1.953800000000001, - 1.9493300000000011, - 1.9368200000000007, - 1.9644501000000008, - 1.9657301000000007, - 1.9657301000000007, - 1.9664701000000004, - 1.9664701000000004, - 1.9607601000000008, - 1.9607601000000008, - 1.9607601000000008, - 1.9607601000000008, - 1.9757501000000008, - 1.9829401000000006, - 2.0231101000000007, - 2.0221601000000007, - 2.0221601000000007, - 2.0221601000000007, - 2.0221601000000007, - 2.0221601000000007, - 2.0221601000000007, - 2.0221601000000007, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 2.0041201000000006, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008, - 1.9891301000000008 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 8578
prediction: 4.296
AveOccup: 0.6923076923076923

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.296
AveOccup: 0.8785096153846154

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.296
AveOccup: 1.0647115384615384

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.296
AveOccup: 1.2509134615384614

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.296
AveOccup: 1.4371153846153846

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.461
AveOccup: 1.6233173076923078

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.461
AveOccup: 1.8095192307692307

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.461
AveOccup: 1.995721153846154

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.461
AveOccup: 2.181923076923077

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.459
AveOccup: 2.368125

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.459
AveOccup: 2.554326923076923

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.415
AveOccup: 2.740528846153846

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.398
AveOccup: 2.926730769230769

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.39
AveOccup: 3.112932692307692

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.349
AveOccup: 3.2991346153846157

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.347
AveOccup: 3.4853365384615387

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.334
AveOccup: 3.6715384615384616

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.334
AveOccup: 3.8577403846153846

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.334
AveOccup: 4.043942307692308

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.334
AveOccup: 4.2301442307692305

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.334
AveOccup: 4.4163461538461535

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.334
AveOccup: 4.602548076923076

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.334
AveOccup: 4.78875

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.334
AveOccup: 4.974951923076923

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.334
AveOccup: 5.161153846153846

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.302
AveOccup: 5.347355769230769

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.168
AveOccup: 5.533557692307692

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.088
AveOccup: 5.719759615384615

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.088
AveOccup: 5.905961538461539

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.088
AveOccup: 6.092163461538462

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.088
AveOccup: 6.278365384615385

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.088
AveOccup: 6.464567307692308

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.088
AveOccup: 6.650769230769231

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.088
AveOccup: 6.836971153846154

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.088
AveOccup: 7.023173076923077

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.088
AveOccup: 7.209375

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.088
AveOccup: 7.395576923076923

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.088
AveOccup: 7.5817788461538465

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.088
AveOccup: 7.767980769230769

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 7.954182692307692

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 8.140384615384615

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 8.326586538461537

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 8.512788461538461

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 8.698990384615383

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 8.885192307692307

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 9.07139423076923

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 9.257596153846153

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 9.443798076923075

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 9.629999999999999

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 9.816201923076923

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 10.002403846153845

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 10.188605769230769

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 10.37480769230769

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 10.561009615384615

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 10.747211538461537

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 10.93341346153846

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 11.119615384615384

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 11.305817307692307

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 11.49201923076923

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 11.678221153846152

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 11.864423076923076

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 12.050624999999998

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 12.236826923076922

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 12.423028846153844

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 12.609230769230768

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 12.795432692307692

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 12.981634615384614

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 13.167836538461538

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 13.35403846153846

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 13.540240384615384

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 13.726442307692306

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 13.91264423076923

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 14.098846153846152

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 14.285048076923076

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 14.47125

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 14.657451923076922

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 14.843653846153845

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 15.029855769230767

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 15.216057692307691

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 15.402259615384613

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 15.588461538461537

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 15.774663461538461

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 15.960865384615383

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 16.147067307692307

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 16.33326923076923

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 16.519471153846155

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 16.705673076923077

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 16.891875

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 17.078076923076924

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 17.264278846153847

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 17.45048076923077

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 17.636682692307694

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 17.822884615384616

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 18.00908653846154

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 18.19528846153846

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 18.381490384615386

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 18.567692307692308

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 18.75389423076923

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 18.940096153846156

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 19.126298076923078

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ], - [ - "
id: 8578
prediction: 4.12
AveOccup: 19.3125

MedInc: 9.0812
HouseAge: 35.0
AveRooms: 4.047457627118644
AveBedrms: 0.9898305084745763
Population: 507.0
Latitude: 33.89
Longitude: -118.41
_original_yhat_: 4.461427899999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 4.296427299999993, - 4.296427299999993, - 4.296427299999993, - 4.296427299999993, - 4.296427299999993, - 4.461427899999992, - 4.461427899999992, - 4.461427899999992, - 4.461427899999992, - 4.458637799999993, - 4.458637799999993, - 4.414667199999993, - 4.3977668999999935, - 4.389976499999994, - 4.3487163999999945, - 4.347396299999994, - 4.333906199999994, - 4.333906199999994, - 4.333906199999994, - 4.333906199999994, - 4.333906199999994, - 4.333906199999994, - 4.333906199999994, - 4.333906199999994, - 4.333906199999994, - 4.302156099999994, - 4.168055899999994, - 4.087805699999994, - 4.087805699999994, - 4.087805699999994, - 4.087805699999994, - 4.087805699999994, - 4.087805699999994, - 4.087805699999994, - 4.087805699999994, - 4.087805699999994, - 4.087805699999994, - 4.087805699999994, - 4.087805699999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994, - 4.119555799999994 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 18803
prediction: 1.902
AveOccup: 0.6923076923076923

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.902
AveOccup: 0.8785096153846154

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.902
AveOccup: 1.0647115384615384

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.902
AveOccup: 1.2509134615384614

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.902
AveOccup: 1.4371153846153846

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.857
AveOccup: 1.6233173076923078

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.903
AveOccup: 1.8095192307692307

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.871
AveOccup: 1.995721153846154

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.783
AveOccup: 2.181923076923077

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.574
AveOccup: 2.368125

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 2.554326923076923

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.051
AveOccup: 2.740528846153846

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.073
AveOccup: 2.926730769230769

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.056
AveOccup: 3.112932692307692

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.061
AveOccup: 3.2991346153846157

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.053
AveOccup: 3.4853365384615387

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.058
AveOccup: 3.6715384615384616

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.06
AveOccup: 3.8577403846153846

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.078
AveOccup: 4.043942307692308

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.078
AveOccup: 4.2301442307692305

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.078
AveOccup: 4.4163461538461535

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.078
AveOccup: 4.602548076923076

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.078
AveOccup: 4.78875

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.085
AveOccup: 4.974951923076923

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.085
AveOccup: 5.161153846153846

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.085
AveOccup: 5.347355769230769

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.085
AveOccup: 5.533557692307692

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.085
AveOccup: 5.719759615384615

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.085
AveOccup: 5.905961538461539

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.083
AveOccup: 6.092163461538462

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.083
AveOccup: 6.278365384615385

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.083
AveOccup: 6.464567307692308

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.083
AveOccup: 6.650769230769231

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.083
AveOccup: 6.836971153846154

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.083
AveOccup: 7.023173076923077

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.083
AveOccup: 7.209375

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.083
AveOccup: 7.395576923076923

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.083
AveOccup: 7.5817788461538465

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.083
AveOccup: 7.767980769230769

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.087
AveOccup: 7.954182692307692

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.087
AveOccup: 8.140384615384615

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.087
AveOccup: 8.326586538461537

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.087
AveOccup: 8.512788461538461

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.087
AveOccup: 8.698990384615383

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.087
AveOccup: 8.885192307692307

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.087
AveOccup: 9.07139423076923

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.087
AveOccup: 9.257596153846153

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.087
AveOccup: 9.443798076923075

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.087
AveOccup: 9.629999999999999

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 9.816201923076923

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 10.002403846153845

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 10.188605769230769

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 10.37480769230769

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 10.561009615384615

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 10.747211538461537

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 10.93341346153846

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 11.119615384615384

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 11.305817307692307

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 11.49201923076923

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 11.678221153846152

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 11.864423076923076

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 12.050624999999998

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 12.236826923076922

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 12.423028846153844

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 12.609230769230768

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 12.795432692307692

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 12.981634615384614

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 13.167836538461538

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 13.35403846153846

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 13.540240384615384

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 13.726442307692306

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 13.91264423076923

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 14.098846153846152

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 14.285048076923076

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 14.47125

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 14.657451923076922

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 14.843653846153845

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 15.029855769230767

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 15.216057692307691

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 15.402259615384613

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 15.588461538461537

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 15.774663461538461

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 15.960865384615383

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 16.147067307692307

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 16.33326923076923

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 16.519471153846155

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 16.705673076923077

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 16.891875

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 17.078076923076924

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 17.264278846153847

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 17.45048076923077

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 17.636682692307694

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 17.822884615384616

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 18.00908653846154

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 18.19528846153846

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 18.381490384615386

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 18.567692307692308

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 18.75389423076923

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 18.940096153846156

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 19.126298076923078

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ], - [ - "
id: 18803
prediction: 1.097
AveOccup: 19.3125

MedInc: 3.5189
HouseAge: 17.0
AveRooms: 5.498201438848921
AveBedrms: 1.0377697841726619
Population: 1497.0
Latitude: 40.55
Longitude: -122.06
_original_yhat_: 1.0503700000000007
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.9015201000000004, - 1.9015201000000004, - 1.9015201000000004, - 1.9015201000000004, - 1.9015201000000004, - 1.8567700000000003, - 1.9030500000000001, - 1.87113, - 1.7833299999999996, - 1.5741900000000002, - 1.0968800000000003, - 1.0509300000000004, - 1.072550000000001, - 1.0555900000000005, - 1.0605800000000003, - 1.05289, - 1.05795, - 1.06019, - 1.07771, - 1.07771, - 1.07771, - 1.07771, - 1.07771, - 1.08472, - 1.08472, - 1.08472, - 1.08472, - 1.08472, - 1.08472, - 1.08288, - 1.08288, - 1.08288, - 1.08288, - 1.08288, - 1.08288, - 1.08288, - 1.08288, - 1.08288, - 1.08288, - 1.08679, - 1.08679, - 1.08679, - 1.08679, - 1.08679, - 1.08679, - 1.08679, - 1.08679, - 1.08679, - 1.08679, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703, - 1.09703 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 12793
prediction: 1.242
AveOccup: 0.6923076923076923

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.242
AveOccup: 0.8785096153846154

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.242
AveOccup: 1.0647115384615384

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.242
AveOccup: 1.2509134615384614

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.228
AveOccup: 1.4371153846153846

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.231
AveOccup: 1.6233173076923078

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 1.229
AveOccup: 1.8095192307692307

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.961
AveOccup: 1.995721153846154

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.901
AveOccup: 2.181923076923077

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.812
AveOccup: 2.368125

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.78
AveOccup: 2.554326923076923

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.77
AveOccup: 2.740528846153846

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.663
AveOccup: 2.926730769230769

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.644
AveOccup: 3.112932692307692

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.633
AveOccup: 3.2991346153846157

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.631
AveOccup: 3.4853365384615387

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.636
AveOccup: 3.6715384615384616

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.629
AveOccup: 3.8577403846153846

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.631
AveOccup: 4.043942307692308

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.625
AveOccup: 4.2301442307692305

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.615
AveOccup: 4.4163461538461535

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.61
AveOccup: 4.602548076923076

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.654
AveOccup: 4.78875

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.641
AveOccup: 4.974951923076923

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.644
AveOccup: 5.161153846153846

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.643
AveOccup: 5.347355769230769

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.652
AveOccup: 5.533557692307692

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.673
AveOccup: 5.719759615384615

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.693
AveOccup: 5.905961538461539

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.689
AveOccup: 6.092163461538462

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.689
AveOccup: 6.278365384615385

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 6.464567307692308

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 6.650769230769231

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 6.836971153846154

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 7.023173076923077

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 7.209375

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 7.395576923076923

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 7.5817788461538465

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 7.767980769230769

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 7.954182692307692

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 8.140384615384615

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 8.326586538461537

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 8.512788461538461

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 8.698990384615383

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 8.885192307692307

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 9.07139423076923

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 9.257596153846153

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 9.443798076923075

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 9.629999999999999

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 9.816201923076923

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 10.002403846153845

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 10.188605769230769

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 10.37480769230769

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 10.561009615384615

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 10.747211538461537

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 10.93341346153846

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.706
AveOccup: 11.119615384615384

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 11.305817307692307

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 11.49201923076923

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 11.678221153846152

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 11.864423076923076

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 12.050624999999998

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 12.236826923076922

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 12.423028846153844

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 12.609230769230768

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 12.795432692307692

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 12.981634615384614

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 13.167836538461538

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 13.35403846153846

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 13.540240384615384

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 13.726442307692306

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 13.91264423076923

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.712
AveOccup: 14.098846153846152

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 14.285048076923076

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 14.47125

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 14.657451923076922

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 14.843653846153845

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 15.029855769230767

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 15.216057692307691

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 15.402259615384613

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 15.588461538461537

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 15.774663461538461

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 15.960865384615383

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 16.147067307692307

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 16.33326923076923

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 16.519471153846155

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 16.705673076923077

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 16.891875

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 17.078076923076924

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 17.264278846153847

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 17.45048076923077

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 17.636682692307694

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 17.822884615384616

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 18.00908653846154

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 18.19528846153846

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 18.381490384615386

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 18.567692307692308

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 18.75389423076923

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 18.940096153846156

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 19.126298076923078

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ], - [ - "
id: 12793
prediction: 0.722
AveOccup: 19.3125

MedInc: 1.867
HouseAge: 23.0
AveRooms: 4.701587301587302
AveBedrms: 1.0888888888888888
Population: 1079.0
Latitude: 38.64
Longitude: -121.45
_original_yhat_: 0.6276300000000007
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.2424699999999995, - 1.2424699999999995, - 1.2424699999999995, - 1.2424699999999995, - 1.2279399999999996, - 1.2310099999999997, - 1.2288199999999996, - 0.9606500000000001, - 0.9009000000000004, - 0.8116900000000004, - 0.7798700000000001, - 0.7696599999999999, - 0.6626900000000004, - 0.6436700000000006, - 0.6328800000000007, - 0.6312600000000006, - 0.6358800000000006, - 0.6286700000000004, - 0.6314800000000004, - 0.6251500000000003, - 0.6145600000000003, - 0.6099600000000003, - 0.65427, - 0.6405300000000003, - 0.6435700000000001, - 0.6428300000000001, - 0.65156, - 0.6732700000000001, - 0.6930700000000001, - 0.68857, - 0.68857, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.7059000000000001, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.71172, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191, - 0.72191 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 14111
prediction: 1.603
AveOccup: 0.6923076923076923

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.603
AveOccup: 0.8785096153846154

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.603
AveOccup: 1.0647115384615384

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.603
AveOccup: 1.2509134615384614

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.603
AveOccup: 1.4371153846153846

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.592
AveOccup: 1.6233173076923078

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.539
AveOccup: 1.8095192307692307

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.5
AveOccup: 1.995721153846154

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.336
AveOccup: 2.181923076923077

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.182
AveOccup: 2.368125

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.165
AveOccup: 2.554326923076923

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.139
AveOccup: 2.740528846153846

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.089
AveOccup: 2.926730769230769

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.015
AveOccup: 3.112932692307692

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.996
AveOccup: 3.2991346153846157

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.983
AveOccup: 3.4853365384615387

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.972
AveOccup: 3.6715384615384616

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.965
AveOccup: 3.8577403846153846

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.959
AveOccup: 4.043942307692308

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.959
AveOccup: 4.2301442307692305

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.957
AveOccup: 4.4163461538461535

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.964
AveOccup: 4.602548076923076

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.965
AveOccup: 4.78875

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.976
AveOccup: 4.974951923076923

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.976
AveOccup: 5.161153846153846

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.994
AveOccup: 5.347355769230769

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 0.994
AveOccup: 5.533557692307692

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.03
AveOccup: 5.719759615384615

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.044
AveOccup: 5.905961538461539

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.056
AveOccup: 6.092163461538462

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 6.278365384615385

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 6.464567307692308

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 6.650769230769231

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 6.836971153846154

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 7.023173076923077

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 7.209375

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 7.395576923076923

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 7.5817788461538465

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 7.767980769230769

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 7.954182692307692

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 8.140384615384615

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 8.326586538461537

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 8.512788461538461

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 8.698990384615383

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 8.885192307692307

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 9.07139423076923

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 9.257596153846153

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 9.443798076923075

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 9.629999999999999

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 9.816201923076923

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 10.002403846153845

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 10.188605769230769

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 10.37480769230769

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 10.561009615384615

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 10.747211538461537

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 10.93341346153846

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 11.119615384615384

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 11.305817307692307

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 11.49201923076923

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 11.678221153846152

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 11.864423076923076

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 12.050624999999998

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 12.236826923076922

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 12.423028846153844

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 12.609230769230768

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 12.795432692307692

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 12.981634615384614

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 13.167836538461538

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 13.35403846153846

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 13.540240384615384

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 13.726442307692306

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 13.91264423076923

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 14.098846153846152

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 14.285048076923076

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 14.47125

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 14.657451923076922

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 14.843653846153845

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 15.029855769230767

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 15.216057692307691

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 15.402259615384613

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 15.588461538461537

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 15.774663461538461

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 15.960865384615383

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 16.147067307692307

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 16.33326923076923

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 16.519471153846155

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 16.705673076923077

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 16.891875

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 17.078076923076924

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 17.264278846153847

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 17.45048076923077

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 17.636682692307694

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 17.822884615384616

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 18.00908653846154

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 18.19528846153846

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 18.381490384615386

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 18.567692307692308

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 18.75389423076923

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 18.940096153846156

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 19.126298076923078

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ], - [ - "
id: 14111
prediction: 1.068
AveOccup: 19.3125

MedInc: 1.6102
HouseAge: 14.0
AveRooms: 4.488593155893536
AveBedrms: 1.1425855513307985
Population: 1831.0
Latitude: 32.74
Longitude: -117.1
_original_yhat_: 0.9828299999999992
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.6027304999999996, - 1.6027304999999996, - 1.6027304999999996, - 1.6027304999999996, - 1.6027304999999996, - 1.5921204999999992, - 1.5394104999999987, - 1.4997303999999991, - 1.3355501, - 1.1815700000000002, - 1.16486, - 1.1390900000000002, - 1.0887899999999997, - 1.0146999999999995, - 0.9958199999999995, - 0.9825399999999992, - 0.9716599999999991, - 0.9652699999999992, - 0.9589899999999991, - 0.9592199999999993, - 0.9567899999999991, - 0.9642899999999992, - 0.9650999999999992, - 0.9758499999999992, - 0.9758499999999992, - 0.9938099999999994, - 0.9938099999999994, - 1.0296899999999996, - 1.0438399999999997, - 1.0563799999999999, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996, - 1.0676299999999996 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 18032
prediction: 3.495
AveOccup: 0.6923076923076923

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.495
AveOccup: 0.8785096153846154

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.495
AveOccup: 1.0647115384615384

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.495
AveOccup: 1.2509134615384614

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.495
AveOccup: 1.4371153846153846

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.545
AveOccup: 1.6233173076923078

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.532
AveOccup: 1.8095192307692307

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.458
AveOccup: 1.995721153846154

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 3.028
AveOccup: 2.181923076923077

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.901
AveOccup: 2.368125

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.903
AveOccup: 2.554326923076923

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.99
AveOccup: 2.740528846153846

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.891
AveOccup: 2.926730769230769

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.854
AveOccup: 3.112932692307692

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.643
AveOccup: 3.2991346153846157

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.525
AveOccup: 3.4853365384615387

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.492
AveOccup: 3.6715384615384616

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.468
AveOccup: 3.8577403846153846

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.456
AveOccup: 4.043942307692308

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.461
AveOccup: 4.2301442307692305

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.461
AveOccup: 4.4163461538461535

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.461
AveOccup: 4.602548076923076

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.461
AveOccup: 4.78875

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 4.974951923076923

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 5.161153846153846

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 5.347355769230769

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 5.533557692307692

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 5.719759615384615

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 5.905961538461539

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 6.092163461538462

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 6.278365384615385

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 6.464567307692308

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 6.650769230769231

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 6.836971153846154

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 7.023173076923077

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 7.209375

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 7.395576923076923

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 7.5817788461538465

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 7.767980769230769

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 7.954182692307692

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 8.140384615384615

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 8.326586538461537

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 8.512788461538461

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 8.698990384615383

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 8.885192307692307

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 9.07139423076923

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 9.257596153846153

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 9.443798076923075

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 9.629999999999999

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 9.816201923076923

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 10.002403846153845

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 10.188605769230769

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 10.37480769230769

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 10.561009615384615

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 10.747211538461537

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 10.93341346153846

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 11.119615384615384

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 11.305817307692307

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 11.49201923076923

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 11.678221153846152

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 11.864423076923076

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 12.050624999999998

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 12.236826923076922

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 12.423028846153844

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 12.609230769230768

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 12.795432692307692

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 12.981634615384614

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 13.167836538461538

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 13.35403846153846

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 13.540240384615384

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 13.726442307692306

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 13.91264423076923

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 14.098846153846152

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 14.285048076923076

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 14.47125

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 14.657451923076922

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 14.843653846153845

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 15.029855769230767

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 15.216057692307691

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 15.402259615384613

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 15.588461538461537

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 15.774663461538461

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 15.960865384615383

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 16.147067307692307

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 16.33326923076923

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 16.519471153846155

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 16.705673076923077

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 16.891875

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 17.078076923076924

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 17.264278846153847

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 17.45048076923077

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 17.636682692307694

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 17.822884615384616

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 18.00908653846154

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 18.19528846153846

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 18.381490384615386

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 18.567692307692308

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 18.75389423076923

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 18.940096153846156

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 19.126298076923078

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ], - [ - "
id: 18032
prediction: 2.546
AveOccup: 19.3125

MedInc: 5.5944
HouseAge: 19.0
AveRooms: 6.240143369175628
AveBedrms: 1.053763440860215
Population: 632.0
Latitude: 37.24
Longitude: -121.94
_original_yhat_: 2.921149999999999
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.495052399999998, - 3.495052399999998, - 3.495052399999998, - 3.495052399999998, - 3.495052399999998, - 3.5448225999999976, - 3.5317324999999977, - 3.457761999999997, - 3.0284604999999987, - 2.9012999999999987, - 2.902999999999999, - 2.9900400999999994, - 2.8905402999999996, - 2.8537701, - 2.6426199999999977, - 2.525429999999998, - 2.492079999999998, - 2.4675899999999977, - 2.456029999999997, - 2.4612399999999974, - 2.4608799999999973, - 2.4608799999999973, - 2.4608799999999973, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997, - 2.545870299999997 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 5599
prediction: 3.732
AveOccup: 0.6923076923076923

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.732
AveOccup: 0.8785096153846154

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.732
AveOccup: 1.0647115384615384

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.732
AveOccup: 1.2509134615384614

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.774
AveOccup: 1.4371153846153846

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.656
AveOccup: 1.6233173076923078

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 3.41
AveOccup: 1.8095192307692307

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.806
AveOccup: 1.995721153846154

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.44
AveOccup: 2.181923076923077

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.42
AveOccup: 2.368125

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.199
AveOccup: 2.554326923076923

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 2.134
AveOccup: 2.740528846153846

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.962
AveOccup: 2.926730769230769

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.883
AveOccup: 3.112932692307692

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.867
AveOccup: 3.2991346153846157

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.748
AveOccup: 3.4853365384615387

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.72
AveOccup: 3.6715384615384616

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.71
AveOccup: 3.8577403846153846

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.695
AveOccup: 4.043942307692308

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.669
AveOccup: 4.2301442307692305

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.575
AveOccup: 4.4163461538461535

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.492
AveOccup: 4.602548076923076

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.495
AveOccup: 4.78875

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.495
AveOccup: 4.974951923076923

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.485
AveOccup: 5.161153846153846

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.48
AveOccup: 5.347355769230769

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.48
AveOccup: 5.533557692307692

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.478
AveOccup: 5.719759615384615

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.487
AveOccup: 5.905961538461539

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.485
AveOccup: 6.092163461538462

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.487
AveOccup: 6.278365384615385

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.487
AveOccup: 6.464567307692308

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.517
AveOccup: 6.650769230769231

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.517
AveOccup: 6.836971153846154

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.54
AveOccup: 7.023173076923077

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.54
AveOccup: 7.209375

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.54
AveOccup: 7.395576923076923

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.54
AveOccup: 7.5817788461538465

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.533
AveOccup: 7.767980769230769

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.533
AveOccup: 7.954182692307692

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.538
AveOccup: 8.140384615384615

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.538
AveOccup: 8.326586538461537

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.538
AveOccup: 8.512788461538461

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.538
AveOccup: 8.698990384615383

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.538
AveOccup: 8.885192307692307

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.538
AveOccup: 9.07139423076923

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 9.257596153846153

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 9.443798076923075

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 9.629999999999999

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 9.816201923076923

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 10.002403846153845

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 10.188605769230769

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 10.37480769230769

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 10.561009615384615

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 10.747211538461537

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 10.93341346153846

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 11.119615384615384

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 11.305817307692307

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 11.49201923076923

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 11.678221153846152

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 11.864423076923076

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 12.050624999999998

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 12.236826923076922

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 12.423028846153844

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 12.609230769230768

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 12.795432692307692

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 12.981634615384614

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 13.167836538461538

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 13.35403846153846

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 13.540240384615384

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 13.726442307692306

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.573
AveOccup: 13.91264423076923

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.536
AveOccup: 14.098846153846152

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 14.285048076923076

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 14.47125

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 14.657451923076922

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 14.843653846153845

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 15.029855769230767

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 15.216057692307691

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 15.402259615384613

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 15.588461538461537

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 15.774663461538461

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 15.960865384615383

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 16.147067307692307

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 16.33326923076923

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 16.519471153846155

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 16.705673076923077

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 16.891875

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 17.078076923076924

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 17.264278846153847

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 17.45048076923077

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 17.636682692307694

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 17.822884615384616

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 18.00908653846154

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 18.19528846153846

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 18.381490384615386

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 18.567692307692308

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.52
AveOccup: 18.75389423076923

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.473
AveOccup: 18.940096153846156

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.473
AveOccup: 19.126298076923078

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ], - [ - "
id: 5599
prediction: 1.473
AveOccup: 19.3125

MedInc: 3.1613
HouseAge: 36.0
AveRooms: 4.208728652751423
AveBedrms: 1.064516129032258
Population: 1789.0
Latitude: 33.79
Longitude: -118.27
_original_yhat_: 1.81604
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.7316614999999995, - 3.7316614999999995, - 3.7316614999999995, - 3.7316614999999995, - 3.773741399999999, - 3.6556708999999996, - 3.4104004000000008, - 2.80584, - 2.4395001000000005, - 2.4202900999999994, - 2.199429999999998, - 2.134209999999999, - 1.9617599999999995, - 1.8830700000000007, - 1.8671300000000008, - 1.7478599999999997, - 1.7204900000000003, - 1.7097600000000002, - 1.6945000000000008, - 1.6693700000000005, - 1.5750200000000003, - 1.4919000000000002, - 1.4953199999999998, - 1.49487, - 1.4845800000000002, - 1.48042, - 1.4795999999999998, - 1.4780699999999998, - 1.48677, - 1.4853, - 1.48725, - 1.48748, - 1.51748, - 1.51748, - 1.54032, - 1.54032, - 1.54032, - 1.54032, - 1.53284, - 1.53284, - 1.5376299999999998, - 1.5376299999999998, - 1.5376299999999998, - 1.5376299999999998, - 1.5376299999999998, - 1.5376299999999998, - 1.5730100999999999, - 1.5730100999999999, - 1.5730100999999999, - 1.5730100999999999, - 1.5730100999999999, - 1.5730100999999999, - 1.5730100999999999, - 1.5730100999999999, - 1.5730100999999999, - 1.5730100999999999, - 1.5730100999999999, - 1.5730100999999999, - 1.5730100999999999, - 1.5729400999999998, - 1.5729400999999998, - 1.5729400999999998, - 1.5729400999999998, - 1.5729400999999998, - 1.5729400999999998, - 1.5729400999999998, - 1.5729400999999998, - 1.5729400999999998, - 1.5729400999999998, - 1.5729400999999998, - 1.5729400999999998, - 1.5729400999999998, - 1.5356701, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.5203600999999998, - 1.4730801, - 1.4730801, - 1.4730801 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 4172
prediction: 2.48
AveOccup: 0.6923076923076923

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.48
AveOccup: 0.8785096153846154

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.48
AveOccup: 1.0647115384615384

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.48
AveOccup: 1.2509134615384614

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.511
AveOccup: 1.4371153846153846

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.758
AveOccup: 1.6233173076923078

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.748
AveOccup: 1.8095192307692307

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.601
AveOccup: 1.995721153846154

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.228
AveOccup: 2.181923076923077

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 2.024
AveOccup: 2.368125

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.96
AveOccup: 2.554326923076923

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.945
AveOccup: 2.740528846153846

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.84
AveOccup: 2.926730769230769

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.77
AveOccup: 3.112932692307692

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.619
AveOccup: 3.2991346153846157

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.549
AveOccup: 3.4853365384615387

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.508
AveOccup: 3.6715384615384616

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.488
AveOccup: 3.8577403846153846

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.451
AveOccup: 4.043942307692308

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.436
AveOccup: 4.2301442307692305

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.429
AveOccup: 4.4163461538461535

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.426
AveOccup: 4.602548076923076

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.442
AveOccup: 4.78875

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.443
AveOccup: 4.974951923076923

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.444
AveOccup: 5.161153846153846

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.444
AveOccup: 5.347355769230769

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.444
AveOccup: 5.533557692307692

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.444
AveOccup: 5.719759615384615

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.473
AveOccup: 5.905961538461539

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.504
AveOccup: 6.092163461538462

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.504
AveOccup: 6.278365384615385

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.525
AveOccup: 6.464567307692308

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.519
AveOccup: 6.650769230769231

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.519
AveOccup: 6.836971153846154

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.519
AveOccup: 7.023173076923077

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.519
AveOccup: 7.209375

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.519
AveOccup: 7.395576923076923

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.524
AveOccup: 7.5817788461538465

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.524
AveOccup: 7.767980769230769

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.524
AveOccup: 7.954182692307692

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.524
AveOccup: 8.140384615384615

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.524
AveOccup: 8.326586538461537

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.524
AveOccup: 8.512788461538461

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 8.698990384615383

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 8.885192307692307

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 9.07139423076923

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 9.257596153846153

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 9.443798076923075

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 9.629999999999999

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 9.816201923076923

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 10.002403846153845

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 10.188605769230769

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 10.37480769230769

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 10.561009615384615

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 10.747211538461537

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 10.93341346153846

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 11.119615384615384

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 11.305817307692307

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 11.49201923076923

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 11.678221153846152

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 11.864423076923076

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 12.050624999999998

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 12.236826923076922

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.513
AveOccup: 12.423028846153844

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 12.609230769230768

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 12.795432692307692

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 12.981634615384614

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 13.167836538461538

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 13.35403846153846

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 13.540240384615384

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 13.726442307692306

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 13.91264423076923

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 14.098846153846152

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 14.285048076923076

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 14.47125

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 14.657451923076922

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 14.843653846153845

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 15.029855769230767

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 15.216057692307691

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 15.402259615384613

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 15.588461538461537

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 15.774663461538461

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 15.960865384615383

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 16.147067307692307

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 16.33326923076923

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 16.519471153846155

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 16.705673076923077

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 16.891875

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 17.078076923076924

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 17.264278846153847

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 17.45048076923077

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 17.636682692307694

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 17.822884615384616

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 18.00908653846154

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 18.19528846153846

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 18.381490384615386

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 18.567692307692308

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 18.75389423076923

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 18.940096153846156

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 19.126298076923078

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ], - [ - "
id: 4172
prediction: 1.521
AveOccup: 19.3125

MedInc: 2.712
HouseAge: 38.0
AveRooms: 4.5895196506550215
AveBedrms: 1.0873362445414847
Population: 799.0
Latitude: 34.1
Longitude: -118.23
_original_yhat_: 1.5407999999999995
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.4801704000000004, - 2.4801704000000004, - 2.4801704000000004, - 2.4801704000000004, - 2.5108704000000004, - 2.7578004999999983, - 2.748330499999999, - 2.6014301000000004, - 2.2284900000000007, - 2.0238099999999997, - 1.9603799999999996, - 1.9450199999999993, - 1.8400399999999986, - 1.7704799999999983, - 1.619019999999999, - 1.5491699999999995, - 1.5083999999999997, - 1.4884899999999999, - 1.4508499999999998, - 1.4361999999999995, - 1.4290699999999996, - 1.4264099999999993, - 1.4418199999999992, - 1.4430199999999993, - 1.4441999999999995, - 1.4439299999999995, - 1.4439299999999995, - 1.4439299999999995, - 1.4733299999999994, - 1.5040199999999992, - 1.5040199999999992, - 1.5247499999999994, - 1.5191999999999992, - 1.5191999999999992, - 1.5191999999999992, - 1.5191999999999992, - 1.5191999999999992, - 1.5243999999999993, - 1.5243999999999993, - 1.5243999999999993, - 1.5243999999999993, - 1.5243999999999993, - 1.5243999999999993, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5128499999999994, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995, - 1.5214799999999995 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 12445
prediction: 3.093
AveOccup: 0.6923076923076923

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.093
AveOccup: 0.8785096153846154

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.093
AveOccup: 1.0647115384615384

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.088
AveOccup: 1.2509134615384614

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 3.1
AveOccup: 1.4371153846153846

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.911
AveOccup: 1.6233173076923078

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.834
AveOccup: 1.8095192307692307

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 2.439
AveOccup: 1.995721153846154

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.719
AveOccup: 2.181923076923077

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 1.305
AveOccup: 2.368125

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.892
AveOccup: 2.554326923076923

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 2.740528846153846

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.823
AveOccup: 2.926730769230769

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.81
AveOccup: 3.112932692307692

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.806
AveOccup: 3.2991346153846157

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.808
AveOccup: 3.4853365384615387

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.823
AveOccup: 3.6715384615384616

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.823
AveOccup: 3.8577403846153846

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.822
AveOccup: 4.043942307692308

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.825
AveOccup: 4.2301442307692305

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.825
AveOccup: 4.4163461538461535

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.834
AveOccup: 4.602548076923076

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.834
AveOccup: 4.78875

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.834
AveOccup: 4.974951923076923

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.834
AveOccup: 5.161153846153846

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.834
AveOccup: 5.347355769230769

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.834
AveOccup: 5.533557692307692

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.834
AveOccup: 5.719759615384615

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 5.905961538461539

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 6.092163461538462

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 6.278365384615385

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 6.464567307692308

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 6.650769230769231

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 6.836971153846154

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 7.023173076923077

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 7.209375

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 7.395576923076923

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 7.5817788461538465

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 7.767980769230769

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 7.954182692307692

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 8.140384615384615

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 8.326586538461537

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.841
AveOccup: 8.512788461538461

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 8.698990384615383

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 8.885192307692307

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 9.07139423076923

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 9.257596153846153

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 9.443798076923075

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 9.629999999999999

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 9.816201923076923

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 10.002403846153845

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 10.188605769230769

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 10.37480769230769

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 10.561009615384615

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 10.747211538461537

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 10.93341346153846

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 11.119615384615384

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 11.305817307692307

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 11.49201923076923

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 11.678221153846152

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 11.864423076923076

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 12.050624999999998

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 12.236826923076922

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 12.423028846153844

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 12.609230769230768

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 12.795432692307692

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 12.981634615384614

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 13.167836538461538

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 13.35403846153846

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 13.540240384615384

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 13.726442307692306

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 13.91264423076923

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 14.098846153846152

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 14.285048076923076

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 14.47125

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 14.657451923076922

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 14.843653846153845

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 15.029855769230767

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 15.216057692307691

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 15.402259615384613

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 15.588461538461537

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 15.774663461538461

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 15.960865384615383

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 16.147067307692307

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 16.33326923076923

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 16.519471153846155

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 16.705673076923077

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 16.891875

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 17.078076923076924

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 17.264278846153847

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 17.45048076923077

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 17.636682692307694

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 17.822884615384616

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 18.00908653846154

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 18.19528846153846

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 18.381490384615386

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 18.567692307692308

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 18.75389423076923

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 18.940096153846156

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 19.126298076923078

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ], - [ - "
id: 12445
prediction: 0.851
AveOccup: 19.3125

MedInc: 3.1827
HouseAge: 21.0
AveRooms: 6.241935483870968
AveBedrms: 1.5161290322580645
Population: 724.0
Latitude: 33.88
Longitude: -115.58
_original_yhat_: 0.8225899999999993
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.0926829999999983, - 3.0926829999999983, - 3.0926829999999983, - 3.088222999999998, - 3.100022699999998, - 2.9105419999999977, - 2.8338619999999985, - 2.4389613, - 1.7188405000000002, - 1.3050703, - 0.8919499999999991, - 0.8507999999999991, - 0.8225799999999992, - 0.8099599999999992, - 0.8059799999999993, - 0.8081499999999993, - 0.8225899999999993, - 0.8225899999999993, - 0.8217199999999992, - 0.8246399999999993, - 0.8246399999999993, - 0.8342199999999993, - 0.8342199999999993, - 0.8342199999999993, - 0.8342199999999993, - 0.8342199999999993, - 0.8342199999999993, - 0.8342199999999993, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8407999999999994, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995, - 0.8507499999999995 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 18911
prediction: 1.913
AveOccup: 0.6923076923076923

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.913
AveOccup: 0.8785096153846154

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.913
AveOccup: 1.0647115384615384

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.913
AveOccup: 1.2509134615384614

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.913
AveOccup: 1.4371153846153846

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.888
AveOccup: 1.6233173076923078

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.865
AveOccup: 1.8095192307692307

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.773
AveOccup: 1.995721153846154

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.801
AveOccup: 2.181923076923077

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.795
AveOccup: 2.368125

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.53
AveOccup: 2.554326923076923

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.476
AveOccup: 2.740528846153846

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.41
AveOccup: 2.926730769230769

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.349
AveOccup: 3.112932692307692

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.314
AveOccup: 3.2991346153846157

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.345
AveOccup: 3.4853365384615387

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.34
AveOccup: 3.6715384615384616

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.34
AveOccup: 3.8577403846153846

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 4.043942307692308

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 4.2301442307692305

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 4.4163461538461535

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 4.602548076923076

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 4.78875

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 4.974951923076923

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 5.161153846153846

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 5.347355769230769

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 5.533557692307692

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 5.719759615384615

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 5.905961538461539

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 6.092163461538462

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 6.278365384615385

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 6.464567307692308

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 6.650769230769231

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 6.836971153846154

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 7.023173076923077

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 7.209375

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 7.395576923076923

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 7.5817788461538465

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.339
AveOccup: 7.767980769230769

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.348
AveOccup: 7.954182692307692

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 8.140384615384615

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 8.326586538461537

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 8.512788461538461

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 8.698990384615383

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 8.885192307692307

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 9.07139423076923

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 9.257596153846153

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 9.443798076923075

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 9.629999999999999

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 9.816201923076923

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 10.002403846153845

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 10.188605769230769

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 10.37480769230769

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 10.561009615384615

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 10.747211538461537

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 10.93341346153846

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 11.119615384615384

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 11.305817307692307

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 11.49201923076923

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 11.678221153846152

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 11.864423076923076

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 12.050624999999998

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 12.236826923076922

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 12.423028846153844

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 12.609230769230768

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 12.795432692307692

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 12.981634615384614

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 13.167836538461538

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 13.35403846153846

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 13.540240384615384

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 13.726442307692306

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 13.91264423076923

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 14.098846153846152

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 14.285048076923076

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 14.47125

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 14.657451923076922

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 14.843653846153845

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 15.029855769230767

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 15.216057692307691

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 15.402259615384613

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 15.588461538461537

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 15.774663461538461

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 15.960865384615383

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 16.147067307692307

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 16.33326923076923

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 16.519471153846155

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 16.705673076923077

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 16.891875

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 17.078076923076924

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 17.264278846153847

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 17.45048076923077

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 17.636682692307694

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 17.822884615384616

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 18.00908653846154

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 18.19528846153846

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 18.381490384615386

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 18.567692307692308

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 18.75389423076923

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 18.940096153846156

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 19.126298076923078

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ], - [ - "
id: 18911
prediction: 1.361
AveOccup: 19.3125

MedInc: 3.724
HouseAge: 15.0
AveRooms: 5.15127582017011
AveBedrms: 1.06865127582017
Population: 5008.0
Latitude: 38.14
Longitude: -122.24
_original_yhat_: 1.3794600000000015
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 1.9126401000000002, - 1.9126401000000002, - 1.9126401000000002, - 1.9126401000000002, - 1.9126401000000002, - 1.8879900000000003, - 1.86509, - 1.77266, - 1.8014899999999994, - 1.7946199999999997, - 1.5304900000000006, - 1.4763700000000008, - 1.409740000000001, - 1.349270000000001, - 1.3142200000000006, - 1.3454800000000007, - 1.3396100000000006, - 1.3402600000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3391100000000007, - 1.3481300000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005, - 1.3606100000000005 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 2996
prediction: 2.125
AveOccup: 0.6923076923076923

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.125
AveOccup: 0.8785096153846154

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.125
AveOccup: 1.0647115384615384

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.125
AveOccup: 1.2509134615384614

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.12
AveOccup: 1.4371153846153846

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.137
AveOccup: 1.6233173076923078

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.155
AveOccup: 1.8095192307692307

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.126
AveOccup: 1.995721153846154

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 2.098
AveOccup: 2.181923076923077

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.796
AveOccup: 2.368125

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.235
AveOccup: 2.554326923076923

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.236
AveOccup: 2.740528846153846

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.088
AveOccup: 2.926730769230769

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.071
AveOccup: 3.112932692307692

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.992
AveOccup: 3.2991346153846157

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 0.985
AveOccup: 3.4853365384615387

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.001
AveOccup: 3.6715384615384616

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.015
AveOccup: 3.8577403846153846

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.015
AveOccup: 4.043942307692308

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.015
AveOccup: 4.2301442307692305

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.015
AveOccup: 4.4163461538461535

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.025
AveOccup: 4.602548076923076

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.028
AveOccup: 4.78875

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.028
AveOccup: 4.974951923076923

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.028
AveOccup: 5.161153846153846

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.028
AveOccup: 5.347355769230769

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.029
AveOccup: 5.533557692307692

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.029
AveOccup: 5.719759615384615

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.029
AveOccup: 5.905961538461539

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.029
AveOccup: 6.092163461538462

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.029
AveOccup: 6.278365384615385

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.029
AveOccup: 6.464567307692308

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.029
AveOccup: 6.650769230769231

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.029
AveOccup: 6.836971153846154

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.029
AveOccup: 7.023173076923077

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.055
AveOccup: 7.209375

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.055
AveOccup: 7.395576923076923

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.055
AveOccup: 7.5817788461538465

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.055
AveOccup: 7.767980769230769

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.055
AveOccup: 7.954182692307692

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.055
AveOccup: 8.140384615384615

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.055
AveOccup: 8.326586538461537

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.055
AveOccup: 8.512788461538461

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.037
AveOccup: 8.698990384615383

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.037
AveOccup: 8.885192307692307

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.037
AveOccup: 9.07139423076923

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.037
AveOccup: 9.257596153846153

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.037
AveOccup: 9.443798076923075

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 9.629999999999999

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 9.816201923076923

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 10.002403846153845

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 10.188605769230769

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 10.37480769230769

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 10.561009615384615

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 10.747211538461537

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 10.93341346153846

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 11.119615384615384

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 11.305817307692307

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 11.49201923076923

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 11.678221153846152

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 11.864423076923076

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 12.050624999999998

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 12.236826923076922

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 12.423028846153844

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 12.609230769230768

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 12.795432692307692

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 12.981634615384614

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 13.167836538461538

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 13.35403846153846

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 13.540240384615384

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 13.726442307692306

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 13.91264423076923

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 14.098846153846152

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 14.285048076923076

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 14.47125

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 14.657451923076922

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 14.843653846153845

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 15.029855769230767

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 15.216057692307691

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 15.402259615384613

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 15.588461538461537

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 15.774663461538461

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 15.960865384615383

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 16.147067307692307

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 16.33326923076923

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 16.519471153846155

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 16.705673076923077

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 16.891875

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 17.078076923076924

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 17.264278846153847

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 17.45048076923077

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 17.636682692307694

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 17.822884615384616

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 18.00908653846154

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 18.19528846153846

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 18.381490384615386

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 18.567692307692308

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 18.75389423076923

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 18.940096153846156

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 19.126298076923078

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ], - [ - "
id: 2996
prediction: 1.044
AveOccup: 19.3125

MedInc: 4.1957
HouseAge: 11.0
AveRooms: 5.569587628865979
AveBedrms: 0.9561855670103093
Population: 1267.0
Latitude: 35.31
Longitude: -119.04
_original_yhat_: 0.9882400000000011
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.1249299999999995, - 2.1249299999999995, - 2.1249299999999995, - 2.1249299999999995, - 2.1199899999999996, - 2.137349999999999, - 2.15456, - 2.1260299999999996, - 2.09765, - 1.7957099999999997, - 1.2349499999999993, - 1.2363999999999997, - 1.087940000000001, - 1.0707000000000009, - 0.9924600000000011, - 0.984700000000001, - 1.0009000000000008, - 1.0146300000000008, - 1.0146300000000008, - 1.0146300000000008, - 1.0146300000000008, - 1.0253900000000007, - 1.0283700000000007, - 1.0283700000000007, - 1.0283700000000007, - 1.0283700000000007, - 1.0286400000000007, - 1.0286400000000007, - 1.0286400000000007, - 1.0286400000000007, - 1.0286400000000007, - 1.0286400000000007, - 1.0286400000000007, - 1.0286400000000007, - 1.0286400000000007, - 1.0546000000000009, - 1.0546000000000009, - 1.0546000000000009, - 1.0554500000000009, - 1.0554500000000009, - 1.0554500000000009, - 1.0554500000000009, - 1.0554500000000009, - 1.0374100000000006, - 1.0374100000000006, - 1.0374100000000006, - 1.0374100000000006, - 1.0374100000000006, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008, - 1.0443900000000008 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 13622
prediction: 0.997
AveOccup: 0.6923076923076923

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.997
AveOccup: 0.8785096153846154

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.997
AveOccup: 1.0647115384615384

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 1.001
AveOccup: 1.2509134615384614

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.984
AveOccup: 1.4371153846153846

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.983
AveOccup: 1.6233173076923078

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.969
AveOccup: 1.8095192307692307

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.956
AveOccup: 1.995721153846154

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.877
AveOccup: 2.181923076923077

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.773
AveOccup: 2.368125

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.785
AveOccup: 2.554326923076923

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.785
AveOccup: 2.740528846153846

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.802
AveOccup: 2.926730769230769

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.793
AveOccup: 3.112932692307692

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.771
AveOccup: 3.2991346153846157

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.771
AveOccup: 3.4853365384615387

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.771
AveOccup: 3.6715384615384616

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.77
AveOccup: 3.8577403846153846

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.772
AveOccup: 4.043942307692308

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.77
AveOccup: 4.2301442307692305

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.77
AveOccup: 4.4163461538461535

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.77
AveOccup: 4.602548076923076

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.77
AveOccup: 4.78875

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.776
AveOccup: 4.974951923076923

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.776
AveOccup: 5.161153846153846

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.78
AveOccup: 5.347355769230769

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.78
AveOccup: 5.533557692307692

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.808
AveOccup: 5.719759615384615

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.814
AveOccup: 5.905961538461539

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.82
AveOccup: 6.092163461538462

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 6.278365384615385

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 6.464567307692308

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 6.650769230769231

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 6.836971153846154

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 7.023173076923077

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 7.209375

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 7.395576923076923

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 7.5817788461538465

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 7.767980769230769

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 7.954182692307692

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 8.140384615384615

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 8.326586538461537

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 8.512788461538461

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 8.698990384615383

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 8.885192307692307

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 9.07139423076923

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 9.257596153846153

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 9.443798076923075

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 9.629999999999999

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 9.816201923076923

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 10.002403846153845

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 10.188605769230769

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 10.37480769230769

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 10.561009615384615

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 10.747211538461537

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 10.93341346153846

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 11.119615384615384

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 11.305817307692307

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 11.49201923076923

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 11.678221153846152

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 11.864423076923076

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 12.050624999999998

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 12.236826923076922

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 12.423028846153844

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 12.609230769230768

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 12.795432692307692

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 12.981634615384614

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 13.167836538461538

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 13.35403846153846

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 13.540240384615384

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 13.726442307692306

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 13.91264423076923

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 14.098846153846152

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 14.285048076923076

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 14.47125

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 14.657451923076922

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 14.843653846153845

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 15.029855769230767

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 15.216057692307691

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 15.402259615384613

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 15.588461538461537

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 15.774663461538461

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 15.960865384615383

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 16.147067307692307

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 16.33326923076923

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 16.519471153846155

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 16.705673076923077

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 16.891875

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 17.078076923076924

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 17.264278846153847

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 17.45048076923077

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 17.636682692307694

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 17.822884615384616

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 18.00908653846154

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 18.19528846153846

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 18.381490384615386

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 18.567692307692308

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 18.75389423076923

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 18.940096153846156

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 19.126298076923078

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ], - [ - "
id: 13622
prediction: 0.835
AveOccup: 19.3125

MedInc: 1.462
HouseAge: 27.0
AveRooms: 4.335329341317365
AveBedrms: 1.0239520958083832
Population: 1514.0
Latitude: 34.12
Longitude: -117.27
_original_yhat_: 0.7688599999999991
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 0.9971799999999996, - 0.9971799999999996, - 0.9971799999999996, - 1.0005399999999995, - 0.9842999999999994, - 0.9827599999999995, - 0.9691199999999996, - 0.9561899999999999, - 0.8770999999999992, - 0.7729099999999992, - 0.7848099999999993, - 0.7846199999999997, - 0.8016099999999997, - 0.7927999999999996, - 0.77056, - 0.7709699999999999, - 0.77102, - 0.76994, - 0.7719199999999999, - 0.7695199999999999, - 0.7695199999999999, - 0.7695199999999999, - 0.7700999999999998, - 0.7759599999999998, - 0.7759599999999998, - 0.7804199999999998, - 0.7804199999999998, - 0.8075899999999998, - 0.8138099999999998, - 0.8204999999999997, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998, - 0.8353599999999998 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - "
id: 17568
prediction: 3.26
AveOccup: 0.6923076923076923

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.26
AveOccup: 0.8785096153846154

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.26
AveOccup: 1.0647115384615384

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.25
AveOccup: 1.2509134615384614

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 3.271
AveOccup: 1.4371153846153846

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.638
AveOccup: 1.6233173076923078

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.577
AveOccup: 1.8095192307692307

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.43
AveOccup: 1.995721153846154

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.119
AveOccup: 2.181923076923077

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.027
AveOccup: 2.368125

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.871
AveOccup: 2.554326923076923

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.872
AveOccup: 2.740528846153846

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.874
AveOccup: 2.926730769230769

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.932
AveOccup: 3.112932692307692

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.922
AveOccup: 3.2991346153846157

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.924
AveOccup: 3.4853365384615387

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.928
AveOccup: 3.6715384615384616

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.822
AveOccup: 3.8577403846153846

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.822
AveOccup: 4.043942307692308

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.815
AveOccup: 4.2301442307692305

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.833
AveOccup: 4.4163461538461535

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.825
AveOccup: 4.602548076923076

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.85
AveOccup: 4.78875

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.891
AveOccup: 4.974951923076923

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.955
AveOccup: 5.161153846153846

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 1.964
AveOccup: 5.347355769230769

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.158
AveOccup: 5.533557692307692

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.182
AveOccup: 5.719759615384615

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.146
AveOccup: 5.905961538461539

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.155
AveOccup: 6.092163461538462

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.153
AveOccup: 6.278365384615385

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.153
AveOccup: 6.464567307692308

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.153
AveOccup: 6.650769230769231

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.171
AveOccup: 6.836971153846154

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.171
AveOccup: 7.023173076923077

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.171
AveOccup: 7.209375

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.171
AveOccup: 7.395576923076923

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.171
AveOccup: 7.5817788461538465

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.164
AveOccup: 7.767980769230769

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.174
AveOccup: 7.954182692307692

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.174
AveOccup: 8.140384615384615

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.174
AveOccup: 8.326586538461537

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.174
AveOccup: 8.512788461538461

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.161
AveOccup: 8.698990384615383

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.161
AveOccup: 8.885192307692307

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.161
AveOccup: 9.07139423076923

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 9.257596153846153

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 9.443798076923075

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 9.629999999999999

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 9.816201923076923

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 10.002403846153845

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 10.188605769230769

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 10.37480769230769

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 10.561009615384615

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 10.747211538461537

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 10.93341346153846

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 11.119615384615384

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 11.305817307692307

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 11.49201923076923

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 11.678221153846152

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 11.864423076923076

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 12.050624999999998

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 12.236826923076922

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 12.423028846153844

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 12.609230769230768

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 12.795432692307692

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 12.981634615384614

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 13.167836538461538

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 13.35403846153846

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 13.540240384615384

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 13.726442307692306

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 13.91264423076923

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 14.098846153846152

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 14.285048076923076

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 14.47125

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 14.657451923076922

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 14.843653846153845

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 15.029855769230767

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 15.216057692307691

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 15.402259615384613

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 15.588461538461537

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 15.774663461538461

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 15.960865384615383

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 16.147067307692307

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 16.33326923076923

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 16.519471153846155

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 16.705673076923077

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 16.891875

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 17.078076923076924

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 17.264278846153847

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 17.45048076923077

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 17.636682692307694

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 17.822884615384616

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 18.00908653846154

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 18.19528846153846

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 18.381490384615386

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 18.567692307692308

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 18.75389423076923

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 18.940096153846156

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 19.126298076923078

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ], - [ - "
id: 17568
prediction: 2.145
AveOccup: 19.3125

MedInc: 2.5833
HouseAge: 52.0
AveRooms: 3.208791208791209
AveBedrms: 1.0813186813186813
Population: 1165.0
Latitude: 37.32
Longitude: -121.93
_original_yhat_: 1.8608902000000012
" - ] - ], - "hovertemplate": "%{customdata[0]}", - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#ceced9", - "dash": "solid", - "width": 1 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 0.5, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 3.2595910999999997, - 3.2595910999999997, - 3.2595910999999997, - 3.2495910999999995, - 3.270661599999999, - 2.638310100000001, - 2.5769401000000003, - 2.430460100000001, - 2.1190201999999996, - 2.0265602000000005, - 1.8712302000000012, - 1.871930200000001, - 1.8736500999999999, - 1.9318600999999995, - 1.9215600999999995, - 1.9240600999999993, - 1.9276399999999996, - 1.8223599999999995, - 1.82153, - 1.8150900000000005, - 1.83262, - 1.82455, - 1.8496899999999998, - 1.8912399999999996, - 1.9548099999999997, - 1.9635499999999997, - 2.157950099999999, - 2.1823900999999992, - 2.146170099999999, - 2.1551000999999994, - 2.152690099999999, - 2.152690099999999, - 2.152690099999999, - 2.171130099999999, - 2.171460099999999, - 2.171460099999999, - 2.171460099999999, - 2.171460099999999, - 2.163980099999999, - 2.173730099999999, - 2.173730099999999, - 2.173730099999999, - 2.173730099999999, - 2.160600099999999, - 2.160600099999999, - 2.160600099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999, - 2.144850099999999 - ], - "yaxis": "y2" - }, - { - "customdata": [ - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "MedInc" - ] - ], - "hovertemplate": "%{hovertext}

prediction=%{y:.3f}
mean_prediction=%{customdata[0]:.3f}", - "hovertext": [ - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor" - ], - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#46bac2", - "dash": "solid", - "width": 4 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 1, - "showlegend": true, - "type": "scattergl", - "x": [ - 0.4999, - 0.644902, - 0.7899039999999999, - 0.934906, - 1.079908, - 1.22491, - 1.369912, - 1.5149139999999999, - 1.659916, - 1.804918, - 1.9499199999999999, - 2.094922, - 2.2399240000000002, - 2.384926, - 2.529928, - 2.67493, - 2.8199319999999997, - 2.9649339999999995, - 3.1099360000000003, - 3.254938, - 3.39994, - 3.544942, - 3.6899439999999997, - 3.8349459999999995, - 3.9799480000000003, - 4.12495, - 4.269952, - 4.414954, - 4.559956, - 4.704958, - 4.84996, - 4.994962, - 5.139964, - 5.284966, - 5.429968, - 5.5749699999999995, - 5.719972, - 5.864974, - 6.009976, - 6.154978, - 6.29998, - 6.4449819999999995, - 6.589984, - 6.734986, - 6.879988, - 7.02499, - 7.169992, - 7.3149939999999996, - 7.459996, - 7.604998, - 7.75, - 7.895002, - 8.040004, - 8.185006, - 8.330008, - 8.47501, - 8.620012, - 8.765013999999999, - 8.910016, - 9.055018, - 9.20002, - 9.345022, - 9.490024, - 9.635026, - 9.780028, - 9.92503, - 10.070032, - 10.215034, - 10.360036, - 10.505037999999999, - 10.650039999999999, - 10.795042, - 10.940044, - 11.085046, - 11.230048, - 11.37505, - 11.520052, - 11.665054, - 11.810056, - 11.955058, - 12.10006, - 12.245061999999999, - 12.390063999999999, - 12.535065999999999, - 12.680068, - 12.82507, - 12.970072, - 13.115074, - 13.260076, - 13.405078, - 13.55008, - 13.695082, - 13.840084, - 13.985085999999999, - 14.130087999999999, - 14.275089999999999, - 14.420092, - 14.565094, - 14.710096, - 14.855098, - 15.0001 - ], - "xaxis": "x", - "y": [ - 1.763706701, - 1.540453868, - 1.448235284, - 1.434293284, - 1.4268645839999998, - 1.4292325839999998, - 1.4331163839999999, - 1.4346064859999998, - 1.440087485, - 1.442776576, - 1.455919175, - 1.4755806669999998, - 1.514755782, - 1.5738276879999997, - 1.652118003, - 1.6856535279999998, - 1.7132609589999999, - 1.7362782679999997, - 1.809808248, - 1.8673769439999999, - 1.898561847, - 1.9256923769999998, - 1.9563018119999998, - 1.9936888459999997, - 2.0690059849999995, - 2.1617686409999997, - 2.1943586529999997, - 2.220099459, - 2.2614039609999996, - 2.310974778, - 2.331606383, - 2.389607587, - 2.5705968269999993, - 2.604043737999999, - 2.6544014629999992, - 2.6968898859999992, - 2.835517013999999, - 3.003412641999999, - 2.9735243309999992, - 3.078681355999999, - 3.1598558839999993, - 3.238251929999999, - 3.342764332999999, - 3.410170475999999, - 3.560440589999999, - 3.6849601749999983, - 3.6933984319999986, - 3.718171234999998, - 3.729333566999998, - 3.7327534349999985, - 3.850141537999998, - 4.0077432649999984, - 4.018734928999998, - 4.024601872999998, - 4.061968221999997, - 4.106653728999998, - 4.099229871999998, - 4.086890799999997, - 4.099918396999997, - 4.150714198999996, - 4.229687038999995, - 4.2310316889999955, - 4.233951305999995, - 4.173212698999997, - 4.286499476999995, - 4.287471038999995, - 4.298132117999995, - 4.332639343999995, - 4.339012922999995, - 4.326107180999995, - 4.302278866999995, - 4.385013412999995, - 4.384782592999994, - 4.3910000729999945, - 4.393068720999994, - 4.3967172259999945, - 4.3985619429999945, - 4.403326188999994, - 4.403368988999994, - 4.404688099999994, - 4.405152901999994, - 4.405152901999994, - 4.405178804999994, - 4.4054038059999945, - 4.405976208999994, - 4.4060436049999945, - 4.4060436049999945, - 4.406363629999994, - 4.408217340999994, - 4.408217340999994, - 4.408230341999994, - 4.409729759999994, - 4.411043263999995, - 4.411043263999995, - 4.411164667999994, - 4.411164667999994, - 4.411164667999994, - 4.411164667999994, - 4.411164667999994, - 4.411164667999994, - 4.411164667999994 - ], - "yaxis": "y" - }, - { - "customdata": [ - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ], - [ - 2.1254209119999987, - "RandomForestRegressor", - "AveOccup" - ] - ], - "hovertemplate": "%{hovertext}

prediction=%{y:.3f}
mean_prediction=%{customdata[0]:.3f}", - "hovertext": [ - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor", - "RandomForestRegressor" - ], - "legendgroup": "RandomForestRegressor", - "line": { - "color": "#46bac2", - "dash": "solid", - "width": 4 - }, - "mode": "lines", - "name": "RandomForestRegressor", - "opacity": 1, - "showlegend": false, - "type": "scattergl", - "x": [ - 0.6923076923076923, - 0.8785096153846154, - 1.0647115384615384, - 1.2509134615384614, - 1.4371153846153846, - 1.6233173076923078, - 1.8095192307692307, - 1.995721153846154, - 2.181923076923077, - 2.368125, - 2.554326923076923, - 2.740528846153846, - 2.926730769230769, - 3.112932692307692, - 3.2991346153846157, - 3.4853365384615387, - 3.6715384615384616, - 3.8577403846153846, - 4.043942307692308, - 4.2301442307692305, - 4.4163461538461535, - 4.602548076923076, - 4.78875, - 4.974951923076923, - 5.161153846153846, - 5.347355769230769, - 5.533557692307692, - 5.719759615384615, - 5.905961538461539, - 6.092163461538462, - 6.278365384615385, - 6.464567307692308, - 6.650769230769231, - 6.836971153846154, - 7.023173076923077, - 7.209375, - 7.395576923076923, - 7.5817788461538465, - 7.767980769230769, - 7.954182692307692, - 8.140384615384615, - 8.326586538461537, - 8.512788461538461, - 8.698990384615383, - 8.885192307692307, - 9.07139423076923, - 9.257596153846153, - 9.443798076923075, - 9.629999999999999, - 9.816201923076923, - 10.002403846153845, - 10.188605769230769, - 10.37480769230769, - 10.561009615384615, - 10.747211538461537, - 10.93341346153846, - 11.119615384615384, - 11.305817307692307, - 11.49201923076923, - 11.678221153846152, - 11.864423076923076, - 12.050624999999998, - 12.236826923076922, - 12.423028846153844, - 12.609230769230768, - 12.795432692307692, - 12.981634615384614, - 13.167836538461538, - 13.35403846153846, - 13.540240384615384, - 13.726442307692306, - 13.91264423076923, - 14.098846153846152, - 14.285048076923076, - 14.47125, - 14.657451923076922, - 14.843653846153845, - 15.029855769230767, - 15.216057692307691, - 15.402259615384613, - 15.588461538461537, - 15.774663461538461, - 15.960865384615383, - 16.147067307692307, - 16.33326923076923, - 16.519471153846155, - 16.705673076923077, - 16.891875, - 17.078076923076924, - 17.264278846153847, - 17.45048076923077, - 17.636682692307694, - 17.822884615384616, - 18.00908653846154, - 18.19528846153846, - 18.381490384615386, - 18.567692307692308, - 18.75389423076923, - 18.940096153846156, - 19.126298076923078, - 19.3125 - ], - "xaxis": "x2", - "y": [ - 2.853991265999998, - 2.853991265999998, - 2.8540217659999985, - 2.8498735679999982, - 2.8605332999999984, - 2.8685226299999984, - 2.8527731099999984, - 2.7007826679999987, - 2.497770305999999, - 2.3579905649999993, - 2.2167429119999995, - 2.1498987149999995, - 2.0654896859999994, - 1.9848382269999996, - 1.9320648999999994, - 1.8929062619999997, - 1.8715711509999997, - 1.8583197529999995, - 1.8479931519999997, - 1.8455752559999996, - 1.8369736559999996, - 1.8341739629999996, - 1.8370726679999996, - 1.8490109989999997, - 1.8578466079999996, - 1.8578160049999997, - 1.8611281989999995, - 1.8603914909999995, - 1.8662928909999996, - 1.8783503909999997, - 1.8799086909999994, - 1.8815323909999995, - 1.8844840939999994, - 1.8857967949999994, - 1.8844772929999996, - 1.8873146959999998, - 1.8877254959999996, - 1.8873051959999996, - 1.8864395949999997, - 1.8873127979999995, - 1.8875101979999998, - 1.8875101979999998, - 1.8875897979999996, - 1.8857010989999994, - 1.8864818009999995, - 1.8864818009999995, - 1.8888772079999996, - 1.8888772079999996, - 1.8889470079999995, - 1.8892162079999997, - 1.8912353129999997, - 1.8913645149999996, - 1.8913645149999996, - 1.8913352149999993, - 1.8913352149999993, - 1.8953005269999996, - 1.8953075269999997, - 1.8954698269999997, - 1.8954643269999998, - 1.8954599269999997, - 1.8954599269999997, - 1.8954560269999996, - 1.8954488269999996, - 1.8954488269999996, - 1.8958018269999997, - 1.8958018269999997, - 1.8958018269999997, - 1.8958018269999997, - 1.8957134269999996, - 1.8957134269999996, - 1.8957134269999996, - 1.8957134269999996, - 1.8929082269999995, - 1.8915598269999996, - 1.8915598269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8915393269999996, - 1.8856020269999996, - 1.8856020269999996, - 1.8856020269999996 - ], - "yaxis": "y2" - } - ], - "layout": { - "annotations": [ - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "MedInc", - "x": 0.2375, - "xanchor": "center", - "xref": "paper", - "y": 1, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "AveOccup", - "x": 0.7625, - "xanchor": "center", - "xref": "paper", - "y": 1, - "yanchor": "bottom", - "yref": "paper" - }, - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "prediction", - "textangle": -90, - "x": -0.07, - "xref": "paper", - "y": 0.5, - "yref": "paper" - }, - { - "font": { - "size": 13 - }, - "showarrow": false, - "text": "prediction", - "textangle": -90, - "x": -0.07, - "xref": "paper", - "y": 0.5, - "yref": "paper" - } - ], - "font": { - "color": "#371ea3" - }, - "height": 489, - "hoverlabel": { - "bgcolor": "rgba(0,0,0,0.8)" - }, - "hovermode": false, - "legend": { - "font": { - "size": 11 - }, - "itemsizing": "constant", - "orientation": "h", - "title": { - "font": { - "size": 12 - }, - "text": "label" - }, - "tracegroupgap": 0, - "x": 1, - "xanchor": "right", - "y": 1.0613496932515338, - "yanchor": "bottom" - }, - "margin": { - "b": 71, - "r": 30, - "t": 78 - }, - "template": { - "data": { - "scatter": [ - { - "type": "scatter" - } - ] - } - }, - "title": { - "font": { - "size": 16 - }, - "text": "Aggregated Profiles", - "x": 0.15 - }, - "xaxis": { - "anchor": "y", - "automargin": true, - "domain": [ - 0, - 0.475 - ], - "fixedrange": true, - "gridwidth": 2, - "showticklabels": true, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "xaxis2": { - "anchor": "y2", - "automargin": true, - "domain": [ - 0.525, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "showticklabels": true, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "yaxis": { - "anchor": "x", - "automargin": true, - "domain": [ - 0, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "range": [ - 0.08508900000000125, - 5.446820999999987 - ], - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - }, - "yaxis2": { - "anchor": "x2", - "automargin": true, - "domain": [ - 0, - 1 - ], - "fixedrange": true, - "gridwidth": 2, - "matches": "y", - "range": [ - 0.08508900000000125, - 5.446820999999987 - ], - "showticklabels": false, - "tickcolor": "white", - "ticklen": 3, - "ticks": "outside", - "title": { - "text": "" - }, - "type": "linear", - "zeroline": false - } - } - }, - "text/html": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" + "outputs": [], + "source": [ + "cp_sample.plot()" + ] + }, + { + "cell_type": "markdown", + "id": "5ee44a0b", + "metadata": {}, + "source": [ + "In the plot with the ceteris-paribus profile of MedInc, we can see that changing MedInc to a value of 7.895, would dramatically increase the prediction. After manually changing this value and having the model predict again, we can see that this is exactly what happens." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6df8d44d", + "metadata": {}, + "outputs": [], + "source": [ + "X_test_sample_high_medinc = X_test_sample.copy()\n", + "X_test_sample_high_medinc['MedInc'] = 7.895\n", + "model.predict(X_test_sample_high_medinc)" + ] + }, + { + "cell_type": "markdown", + "id": "15c25535", + "metadata": {}, + "source": [ + "Ceteris-paribus profiles are a measure of variable importance in a way, since they tell how much one predictor variable can change the outcome variable. A relatiely horizontal ceteris-paribus profile means that the input variable does not really affect the output variable a lot. In other words, it means the input variable can change all it wants, it would not really affect the outcome variable. The ceteris-paribus profile of HouseAge is an example of this. \n", + "\n", + "A variable with a ceteris-paribus profile with (steeper) slopes can have more of an effect on the outcome variable. The ceteris-paribus profile of MedInc shows a steep slope. From this profile, we can read that a change in MedInc to 8 or more, would increase the outcome variable from about 1 to about 4." + ] + }, + { + "cell_type": "markdown", + "id": "bb308125", + "metadata": {}, + "source": [ + "## Ceteris-paribus oscillations \n", + "\n", + "To quantify the importance of a variable, or its ability to affect the outcome variable, we use [ceteris-paribus oscillations](https://ema.drwhy.ai/ceterisParibusOscillations.html). These oscillations are measures of how different the outcome can be if we were to change the input variable. The oscillations are the sum of the differences between the ceteris-paribus profile and the horizontal line y=y_pred. Using the average of oscillations, the most important variables can be identified." + ] + }, + { + "attachments": { + "cp_oscillations.PNG": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjgAAAGHCAYAAAC9ASjLAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAACupSURBVHhe7d0HfJ13fe/xn7aO9h5ekvdeSUgUOy4xIc0lLnHaFNoap9xyMbekINoEaDFlNKWhNE3gihKGA02CMYWQEDsYMGQRjyiO4yXZlqckL+1p7Xmf///8j4Yl2xpHOs95zued1+H5/Z+jYCV57PPVfwb1WgQAAMBBgs0VAADAMQg4AADAcQg4AADAcQg4AADAcQg4AADAcQg4AADAcQg4AADAcQg4AADAcQg4AGyhZvsLkpO1SwpMGwDGg4ADYAh32NgqOQ/tkRpzb6C+9ycwkPT/Gv2vvEPmTQC4AQIOgGvbWSI/GRIqymXvrlZTT5zk9Q9Ifun7ZfM6q/HICqveKLkr3e8BwI0QcABcQ6pseERk25arenEOHZHHdrrfAwC7IuAAuKa1H8qWVTsrZG+ZuSHlsmNLlcgjU2WtuTNE2R55eNDQ0vDDWAV5A79mq6zLHU2vUKHkWX/Pw9vLrxrKekF29H2vAxzaNeBr3C/19wJwLgIOgGvLnCN3rmuVx54vdLfLzsgbO12y+UNL3O2rqSCRUyLZL23UQ0rqteWRKtk0KORYIemhrbKpKFt2mq9Rr515LvP+yO3LfUX+TVYP+LWs7zVncKDSAej+Ktkw4HvKz88WKa02XwHAiQg4AK4jQ+7blCryxEndM1LwfInse2S+3Jdp3h6kUPKsILEq7/2D5soszV0hG6RKXvfM5dFDXFZI+tIdkmxujZX6tZ5cn2Fa1q+1xvpepUmK+3pxCuUnua1DvifJvEOezL1GSAPgCAQcANe3crlsXtcqb+zfI68/IbJhzbV6by7JNnHJnbf2Bw63FMleJ1Jy3j0kVLC7SmRduqweNiR5Q6uUeEafrvk9AXA6Ag6AG8iQ1fe4ZF9uiWxbly0fue5KJjVENHiuS07WK/LYTpF9DAkBmEQEHAA3lLx+vmywrhs23WhYySWb8wfMdRn4YkgIwCQi4AAYgSWSa4WU6+5Ds3KqFYLUUNb1VydNyXKJ7GyWy6Y9oUb4PQFwHgIOAC9ZIh/JU0NZrwzZcVitZPLcc/cGVcmmPLMySzm0a5TLxEfqGt+TWso+8NcH4DgEHABeo3cfzs+WkvsHz8NZlxsja/t6f1Rv0ArZ8MTh/q/ZPXXIMnH3/jbu+TtivnYsRzXo7+mlVNk28HtSS9mvNVkagCME9VpMDQAA4Aj04AAAAMch4AAAAMch4AAAAMch4AAAAMch4CBg1dXV6Rfg73iWgaEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOAAAwHEIOABs52JLq7xaViklTc3mDgCMTlCvxdRAQKmrq9PXxMREfYV9/LzkovzwdLGuw4ODJTsmSmbHxsis2Oi+qyskRL8PnmVgOAQcBCw+FOzr0SMnZG9ltWkNL9MVqcPObCvsLEqIkxVJCeadwMOzDAzFEBUA2znR0KivKry8LzNNZkRH6fZAZa1tsscKQc+eLZV/fLdAfnOp3LwDAAQcADZT3dYute0dur4rM10Sw5PkPSkzZMddq+Vbt66Qv1swWz4wNUPmxcXor/H41vHTsr+61rQABDoCDgBbKWq8YiqR+fGxphJ59kyN7K5ok/LWMIkKTZClidPkgawF8u83L5WIEPcfZV87ckJODfj7AQQuAg4AWzlR7w4oQUEic6/qpRnOO9Wd8uiKxRJi/Q3tPT3yzwePyeWWVvMugEBFwAFgK0Vm/s2smGjdazMS+62Q809LF4iViaShs1PPyVFXAIGLgAPANtSaztONTboeODw1EkUNvbJp3kxdV7a1y+aDhbpHB0BgIuAAsI1zTc19oWRhfJy+jkZNe4Q8kDVV12esoPSDk+d0DSDwEHAA2IZneEpZMMoenH6xsiY9RVe/ulgmJxuYdAwEIgIOANs4YcJIRHCw/PbS2I9p+PTCOeIKde90/OTx09LDfqZAwCHgALCNIhNwFiaMfnhqoJ8V18vfzMnWtTrPavuFy7oGEDgIOABsoaWrWy40t+h67MNT/T44LVNmxkTr+tkzpVLX4d48EEBgIOAAsAXP8QyKNwLO06er5eHFc3Xd2t0t/3XirK4BBAbvBZyyPfJw1lbJySs0NwBg5DzDU4o6PNMb3ihvkz+ekq5rdW7VgRr3oZQAnM9LAadQ8nJKZJ9pAcBonTRHLKRFRug5NN7y8XkzJTo0VNd5J87I0bqGIS81ubm4qVkf4KmGslSPDwD/FtRrMfUYlcuOh16RxxZky+aiEuu6QvJzl5j3APuqq3P/NJ+YmKiv8K0Pv5Gvdx/+o/QUSY10L/P2lgxXp3ynaHRDVJmuSPnBqpslPNj+I/k8y8BQ4/6dW5BnhRvJlp25c8wdABgd1XPiOVrBG/NvrqYO6JwTe+NzrQZS39NPzp03LQD+Zlw9ODXbX5B1uTGypfQeWdrXkzPyHhzPTx0AAtve2gb59rkLuv7qgllS0Bqua2+6LaZL9tf1T2S+nj219VLe5l519Y1FcyQrKlLXACaet3oix96Dc2iXFW5ENuercAMAY3e6yb08XB2WOWuCwsTbTaHSG5Y0otenZk7X34vy3ZKLbBQI+KExBpxCybu/Sja89IDcl2luAcAYnTH736ieku01vj8g81BLmNyTlqzrkpY2+XXFyE41B2AfYxyisgJO1mHZZlrD2fDSRsldaRqADTEx0x66rD+C1r+6V1/vnZYhrpAE845vfXROsnxszztS3d6hj47YsupmSXfZc6iKZxkYygurqDxGPwcH8CU+FOxB7X/zmf2Hdf3wonlS2myfVUu3JIfKFw669/Zamhgv/3nLMl3bDc8yMJT91z8CcLSBG/xNxAqq8ThQ0yV3m40CC+oa5HeXK3QNwP4IOAB86l2zu7A6/XvX5bGfID5R/nbeLEkMd6/q+v6pc33L2QHYmxcDTobc99RGhqcAjNgvz1+S/dW1ul4c753jGbxtW3GdfHrhbF03dXbJm+XVugZgb/TgAPCJwvpG3SOixISFWiHCvpuFrkpLkbiwMF3nV7GiCvAHBBwAk66qrV2+eviYqCUOwUFB8uiKxbLjQv9cHLvZcqpKbk9L0vXhunpp7/b9UnYA10fAATCpOnt65J8PHZMrnV26nbtwjuytbNe1nd2e6t4Xp6unt29YDYB9EXAATKrHj52Skib3ZOL7pk+RC80hura7m5ISJTTYvb8xw1SA/RFwAEyaF0svyR/Kq3R9U3KihAXbc2LxcJ49WyO3WN+zkk8PDmB7BBwAo6Lmz4zFgZq6vknFU6Nc8sVlC3TtTzzDVGo1lZokDcC+CDgARuy5s6Wycfd++djeA/KbS+Xm7o1dbG6Vfzt6QteRISHy6MrFsu2ce/8bf+IJOArDVIC9efGoBsC/sL39yB2rb5RvHj8tF8yhmB4pkRHy51lT5d5pmfq8puG0dHXL3719SC63tOr2v1rh5nBtt6790fH6S3Ki4YpMj46Sp1fdbO76Fs8yMBQ9OACuSYWTb584Iw+/c6Qv3GS4IiXTHDpZ3dYu3zt5Tja+uV92XiwbdpffR48c7ws3fz07y6/DjZJjenHUvw/PPxcA+yHgABhWflWtfHzfAfmVFVw8PjJrhqxOy5ZV1mvz0gUyMyZa32+0gk2eFYQ+/Ea+7unxrJJS4ehQbb2u1fBOc5dL1/5sVVr/MNVb1r8jAPbEEBUCFt36w6vr6JCnis7KmxX9RxLMi4uRRxbPk99dHjxEpSxLDJFtxefl5IBDM5Vp0S4998ZT/9etK+XH55wRCPZWlkh5a5v1zx4vj9vghHGeZWAoenAA9PntpXL5+N53+8JNeHCw/J+5MyXPCifDhRvlaF23LEmYKk++Z7nu3QhybxXTF25cISHytZVLHBNuFM9kY3XCuBrGA2A/9OAgYPFTbz81l0QNLR21PrA9liTGy2cXz5OXR3mEwgenx8rzJRf1nBxFHcNwxApBTpKTGi6fO3BU1/+4ZL68LzNN177ijWe5tbtb3qqskYq2dh1KI0OC9VWd8q5WvgGTRfWMegMBBwGLgNPvb986KMVm3oz6QPv43JlW6AnV7bH6i5kJcry+UQrqnHlu065LZ6Spq0v+KD3V53v6jPVZVvv57Kuqkd0V1Rw/AdvYdfcaU40PAQcBi4DjpuaSfHTPO7pWO/X+w6K58uJ5NrG7kfqOWnm1rFKirED4y7WrzF3fuNGzrIbSKtva9fyqVjOkpv67v2J9/4DdEHCAcSLguL1Qekl+YHYY/m7OTdaH3vBzbTDYgniRfztapOuv37REHz3hK9d6ltt7euSJY6f6jse4loiQYLk1JUnuSEuRpIhwcxfwDYaogHEi4Lh9/t0COVJbL+muSOsDLtvcxY08OCtJ7n99n65jw0L1JOsZ0VG6PdmGe5YvtbTKvxw5LqVNQwNrfHiYJIWHS3ZMtKxJT5b3WOHmmTPszAz7+MS8VFONHQEHAYuAI3Kls0v+/I23dP1nWVMlSGJ1jZGZFtUt/+/EaV0nWoHhW7cu1xshepsaXlJ7C7V191ivbvPqkV7rr3lxsZLZ2613kvY8y3sra+TxYyf7hqPmx8fKpxbMluSICHmhtH8iOWBXBBxgHAg4oudgPF54UtdqP5f8qg5dY+SSItply6liXatw8833LPfqMI/qifmHd45IQ8fQXaIHmhXtkmXJiXrZ+u8uV5i7Ih+YmiFRoQmmBfgHbwQc9sEBAtjeSvd+N2qi7JKEOF1jdGrbI+SvZk7XtZq4+9kDR3XPmDfUtHfIP75bcMNwo5xrbpWXzl/uCzehwUHymYVzCTcIWPTgIGAFeg9OR0+PPPD6W/p6V2aaJIQnmXcwFl09jbL9wmVdqyMs1JwcFRzHSoUk1XPjOQNM9cQMt99OVVu77CurkMLGJqk3wSo5Ily+umKRvFHeptuAv2GIChiHQA846qyprxw+pusvL18ox+r5o2C8rnTWDRoeUhvlzYiJkulRLn1Vk5DVKeTTrPb1qDk2nztQIKca3ZssjnSY6QNTo+VIXYNeDfXzEvcZYIA/IuAA4xDoAefJ46dk16UKPZTx4tpV8iyraMZt09xUefTocdlXef1/l2HBwTJVhR4r7MyINlcrAKngE2T99YWDBX27Sqtem88vni9bTl9/qTfgJAQcYBwCPeCo1VNqGOS21CTrg9W3Rw04zf0z4uR8c4uUNjVLqXU939QqJc3NfauarkftJO35OhVuEhk6RAAi4ADjEMgBRx2hoOZ3KGrn4vPNnDU0Gf7MBJ/iphY9t6bEuqp2c9fQScl3ZqRKcoT7UE8g0BBwgHEI5IDz9OlifSCm8vP35sjPmK/hUw9kxeugo/a6UdfQoGAJC2ZVGwKXNwIOy8SBAPRmhXt5+KKEOMKNDajN996p7pSqtnBxhSQQbgAvIOAAAUb1EFS0upcP357KEAgAZyLgAAFm4Aqf96anmAoAnIWAAwQQdbr0bjM8pZYmb7/g3mcFAJyGgAMEALXs+KfFF+TBN/fLmStN+t6qNIanADgXAQdwsKauLnnubKls2P22PHOmRBo63WcaqQ3l7s5M1zUAOBHLxBGwnLxMvK6jQ16+UCYvlF7S2/57qDOSPjJrhpxo4Lc9APtiHxxgHJwYcKrb2uV/Si7oIxjUIZoe8+NjZcPMGXK07sY76QKArxFwgHFwUsA51dgkb5RX6h6bgRYnxMmGWTPkYM3QnXIBwK4IOMA4+HPAUauhDtbUyVtVNZJfWds3t8YjKyZKPjl/tt48DgD8DQEHGAd/DTi/u1whTxw7ZVqDpbsi5W/mZMnpxiBzBwD8D0c1AAFo58UyU7ktjI/VE4e/detyuSMtm3ADABYCDuBHylvbpKjBvTnf+ulT5Bd33i6LEqZKW3eU7K5o1/cBAAQcwK+8VlZpKpE/npouPy12D7MBAAYj4AB+RM2/UTJdkVbYadU1AGAoAg7gJ4qbmqXMnAJ+9xR2IQaA6yHgAH5i4PDU+zLTTAUAGA4BB/ATr5VX6evcuBh5mVPAAeC6CDiAHzhe36iPYVDWZox/fwgAcDoCDuAHXje9N2qHm7s4BRwAboiAA9hcT2+vvFbunn+zJDFefl5Sr2sAwLURcACbO1RbL02d7sMyGZ4CgJEh4AA294YZngoOCpL3phNwAGAkCDiAjXX19sruimpd35ycINvYuRgARoSAA9jY21U10trdreu1Gex9AwAjRcABbGzHBffJ4eHBwbIqNVnXAIAbI+AANnXuSrMcrnWvmMqxws2Pz9XqGgBwYwQcwKaeO1tqKpENs6abCgAwEgQcwIbOXmmWt6pqdL06LVl+f7lF1wCAkSHgADb0zJkSU4n8zZxsUwEARoqAA9hMUcMV2V/tnm+jVk795lKzrgEAI0fAAWzGM/dGbez30TlZugYAjA4BB7AR1Xvzbo17M7+7p6TJyxeu6BoAMDoEHMBG/tvMvQkNCpK/nkXvDQCMFQEHsImjdQ19+97cOy1TXjzfqGsAwOgRcACb8KycUrsWs+8NAIwPAQewge+dPCfH6t09NvdNnyLPlzToGgAwNgQcwMd+dbFMfnn+kq5nxkTLg7Nn6BoAMHYEHMCHDtbUyX8VndF1WmSEfP3mJfLcWc6cAoDxIuAAPlLc1Cz/cuSE9PaKxISFyjduXsrQFAB4SVCvxdSjVpC3VTY9YRrGqrz3y5PrM0wLsK+6Ovd+M4mJifo6marb2uVTbx+Wuo4OCQ0Okv+8Zbnsrmgz7wJAYPvEvFRTjd04Ak6h5GVdkrWl98hSc0fK9sjDOSUihBz4AV8GnE373pXzze4DNL+8fKEcqx/zzxkA4DjeCDjjGKJaIrkDw42SOUfuXCeyr7Ta3ABwtQM1dX3h5uNzZxJuAGACeHcOzqEj8thOl2z+0BJzA8DVPEcxBFmvD0yjpxMAJsK45uC4lcuOh16xgo1VPrJC8nNHHm48QwRAIPnssdNysbVd5kS7ZHkKxzEAwNV8PETlkSH3PbVR8kut15pLkpO1VfIOmbcADNLY1aXDjbIsLkZfAQDe590hqpX3yJZHRLZt2SM15haAfgfr+08HXxZPwAGAieKFIarBara/IOtyY2TL1ROQAZvxxSqqrxcUyRvlVRIZEiIvrr1dfniaCfkAcDWbDFENdrm0VWRdtEwxbQBu6ieJA9XuULUiKZ5wAwATaOwB59AuyXlo8FCU6r1RG/9t2HSHJJt7ANxONzZJU1eXrm9Knvy9dwAgkIxzo7/Dss203FyyOf8BuS/TNAEbm+whqp8WX5BnzpTo+oerbpFfX2rSNQBgMB/vZAz4t8kOOJ87cFSO1jVIamSE/FH6THMXAHA1W87BATBUW3e3HKtv1PXNDE8BwIQj4ACT4HBtg3SbztKbkxP0FQAwcQg4wCQYeDwDE4wBYOIRcIBJcNAEnLlxMbLtnLsGAEwcAg4wwara2uViS6uumX8DAJODgANMsHfM5n4Kw1MAMDkIOMAE88y/UcczLE6I0zUAYGIRcIAJpNZNHa6t1/WyRI5nAIDJQsABJtDJhit9xzMw/wYAJg8BB5hA2y9cNpWaf8P+NwAwWQg4wAS50Nwir5dX6npJQpz89lKzrgEAE4+AA0yQH50pEc9Jb/93/mx3AQCYFAQcYAIUNzXLvsoaXd+akiRvlLv3wQEATA4CDjABtpwqNpXIx+ZmmwoAMFkIOICXFdY19O19szYjVX5/uUXXAIDJQ8ABvOz7pvcmOChI/vccem8AwBcIOIAXqWMZTjVe0fUHpmbIjgvuGgAwuQg4gBf98LS79yY8OFgenD1D1wCAyRfUazE1EFDq6tzzZBITx7bDcGtXt1xoaZUy61Xe1iYVre2y82KZfu/D2dOkuzdG1wCA0fnEvFRTjR0BBwFrrAHnfHOL/Oh0ibxV5V4GfrWo0BD58R23yrbi/lPEAQAjR8ABxmG0AaestU2eO1sqr5W5dye+2rRol2RFR8ldmelyrL7H3AUAjBYBBxiHkQac2vYO2XrufN/wk8fSxHg9kTgrJsoKPWzkBwDeQsABxmGkAefB3fulsq3dtERWJiXIxtlZsq+y/x4AwHu8EXBYRQVcx44Ll/vCzaq0ZPnObStlVmwG4QYAbI6AA1xDW3e3nnOjZLgi5UvLFsprnCkFAH6BgANcw/MlF+VKZ5euN82bKU+frtY1AMD+CDjAMFSw+UXpJV3PjYuR4/VMVQMAf0LAAYahhqbUEJXyyfmz9RUA4D8IOMBVylvb5FdmSfjNyYmylwnFAOB3CDjAVZ45UyI9ZvcENfcGAOB/CDjAAMVNzfJ6eZWu35uRKr+/3KJrAIB/IeAAAzx9qlhfg4OC5GNzsnUNAPA/BBzAqGhtkwM17t2N752aITsuXNE1AMD/EHAAQ00u9libMf5twgEAvkPAAYyKAedNJUdGmAoA4I8IOIChhqiUIOuVRsABAL9GwAEMz6GaSRHh8kOOZQAAv0bAAQxPwKH3BgD8HwEHMPoCjitSXwEA/ouAA1jUvsWeOTj04ACA/yPgAJb6jg7pNsczEHAAwP8RcABLRWv/EvG0SIaoAMDfEXAAS2Vb/yZ/9OAAgP8j4AAWzwRjJc1FwAEAf0fAASyeIaqI4GDZds59HhUAwH8RcABLlenByYxy6SsAwL8RcABLhZmDw/wbAHAGAg5gYRdjAHAWAg4CXntPjzR1dumaCcYA4AwEHAS88paBS8TZAwcAnICAg4DnmX+jMEQFAM5AwEHA86ygUgg4AOAMBBwEPM8eOCFBQZJCwAEARyDgIOB5VlAlR4TLllNVugYA+DcCDgKe5xyqdBcTjAHAKQg4CHjsgQMAzkPAQUDr7u2VagIOADgOAQcBrbajU3pNzR44AOAcBBwEtGor4HiwizEAOAcBBwFtUMBhiAoAHIOAg4A2MOCwigoAnIOAg4BW3dGhr3FhYfLsmRpdAwD8HwEHAa263d2Dw/AUADgLAQcBrcoMUTHBGACchYCDgOaZg0MPDgA4CwEHAetKV7d09PTomj1wAMBZxhVwCvK2Sk7WwNcLsqPMvAnYnGeCsUIPDgA4yzgCTqG8/kSqbCndKPnmtTNP5LEcQg78g2eCsZLOHBwAcJRxBJwlklt6jyw1LSV5/WrZvK5VHnu+0NwB7GvgHjip9OAAgKN4eQ5OtZTsNCVgc1VmiCokKEgSwsN1DQBwhqBei6nH79Auybm/Sja8tFFyV5p711FXV2cqYPJ98+x5ebuuUTIiw2V1+ixzFwDga5+Yl2qqsfNiD06h5FnhRtZly0dGEG4AX/PsgZNK7w0AOI6XAk657HjosGyTVNny1B2SbO4CduaZZJwSHqavAADn8MIQlQo3r8hjO9WKqsGTjgG76rYe+3tf2aPrB2dnSUuXS9cAAN+zwRBVoeRlEW7gf8pa2kzFHjgA4ETjCDgq3ByWbeuyZSfhBn6msq0/4GS42MUYAJxm7ENUZsXU8OjRgX219/TIp98+JKVNLbq9dc2t8svzjboGAPieN4aovLtMHPAD/1F4Ul4tq9T1n2SkSEREiq4BAPZgs2XigP395lJ5X7iZHe2Sv5qarmsAgLMQcBAwipua5TtFZ3UdFxYmj8yeIS9Wd+s2AMBZCDhwnDNXmkzVr7mrS75y+Lh09vTo9heWzpdXG4J0DQBwHubgwDGudHbJNwqL5J1q9xEgU6JckhUdJbNio+VQbb0cr3dPJN44a4a0dkfpGgBgP0wyBowTDY3ytSMnpLrdfYDmtSxPSpA5sRmmBQCwIyYZA5afl1yUv99/pC/crM1Ik7+cOV1uSU6U2LBQfU9JDA+XLy5dYFoAACejBwd+6+ohqfDgYPn7RXPl7JXBc2s+OD1WTjc2SXpkhPyhon+DPwCAPTFEhYB1sKZOnj5dbIWZZt2eFu2SLy9bJLsuu9sAAP9FwEHAqevokKeKzsmbFf27aK9JT5HPLp4nz52tNXcAAP6MgIOA0WM9pi+dvyzPnSuV1i733jVJEeHyyfmzpKhBNwEADsEkYwSEps4u+cz+I/L9U+f6ws2fzpgqP1x1C+EGADAsAg5sTYWbz797VE41XtHteXGx8lTOTRIcFCtbzzEkBQAYHkNUsC1PuPFMJH4ga5r1vzG6BgA4F0NUcCwVbh4+cKQv3KghKcINAGCkCDiwHU+4KW1q0e0/mZaph6QAABgpAg5spbW7Wx45cLQv3Nw/Y4pEhMTrGgCAkSLgwFZ2V1RLSZN7WOqD0zMlJChO1wAAjAYBB7ayp7JaX1MjIyQ8mJ4bAMDYEHBgG2qPm3dr3OdK3Z6arK8AAIwFAQe28VZVjXT1uHctuCONgAMAGDsCDmxjtxmeig0LlaWJDE8BAMaOgANbaO/pkf3V7p2J70hLkadPu8MOAABjQcCBLbw9cHgqPUVfAQAYKwIObGF3RY2+ukJD5KakBF0DADBWBBz4nOq5UT04yqrUZIanAADjRsCBz71TU6vn4Cir0xieAgCMHwEHPqd2L1YigoPltpQkXQMAMB4EHPiUGp7aZ4anbktNkh+dYXgKADB+BBz41MHaOr2DsbKG1VMAAC8h4MCnPMNTocFBchvHMwAAvISAA5/p6e3t27341pQkefaMe6gKAIDxIuDAZw7W1vcPT7F6CgDgRQQc+MxBc3K4ksPwFADAiwg48JkjtQ36Oi8uRraec59DBQCANxBw4BOt3d1y9kqTrpdzNAMAwMsIOPCJw7X14j5a0wo4iQQcAIB3EXDgE0fr3MNTQdZrSWKcrgEA8BYCDnziSG29vs6Pj5Ufn2X+DQDAuwg4mHRq/s25K826ZngKADARCDiYdIPm3yTFmwoAAO8h4GDSeZaHhwQFybJEAg4AwPsIOJh0R+v659/8N8czAAAmAAEHk6qps2vA/Bt6bwAAE4OAg0mllof3z79hgjEAYGIQcDCpPPvfqPk3SxLY/wYAMDEIOJhUR8z8m4VWuGH+DQBgohBwMGmYfwMAmCwEHEwaz/CUsoL5NwCACUTAwaTxDE+FBQfLwvhYXQMAMBEIOJg0ng3+VLhh/g0AYCIRcDAp1Pyb4ib3/BuGpwAAE42Ag0lxZMD8GyYYAwAmGgEHk2JPZbW+RgQHy76qDl0DADBRCDiYcHutcPNaWaWu35OSpK8AAEwkAg4mVFVbuzx+7JSu48PCJHfRHF0DADCRCDgBpLq9Qxo6Ok1rcvx7QZG0dnXr+nNL5svPit1LxQEAmEgEnADy+8sV8qm3D8nF5lZzZ2L9tPiCFNY36vq+6VPkUG2XrgEAmGgEnADyihVwKtva5TP7D8txEzwmSlHDFXnmTImus2KiZNO8mboGAGAyEHACxAkrcFxscffcNHV1yT+8c6RvZZO3tXV3y9cLikxL5J+XLbTCDhv7AQAmDwEnQLxaVmGqfv965IQ8X3LRtMavpKlZnjtbKp9++7CUt7bpe59eOEd+e8m9wR8AAJMlqNdiajjYA6+/pXtuVqUly0dnZ8kXDhZKbbt7P5r106fIQwtm63q01ATiX5RelDcrquV8c4u563ZbapJMi0ozLQAARuYT81JNNXYEnACghqJUb43y5eWL5Fh9j/x5VrxstkKO5/gEj9iwUJkS5ZLkiHBJj4yUtMgISXdFWNdISYkMl5q2Dimob5CCugZ9OviVzqEThzNdkfLHU9LlvhlTZNu5OnMXAICRIeBgRL5y+JjkV9VKTGio/OzOHPnRaffcmwdnJ1nvHZcjteNfup1kBaI7M1LlfRlp8nr55KzSAgA4EwEHN6T2vfnwH/J1rZZqhwXH6XqglUmhUtHWJtVt7da1XW/Op16eeTTDiQoNkYXxcbI4IU6WJsZbAYrjFwAA3kHAwQ29dP6yfPfkWV1/+7YV8kb5tUPLcD6UHd8XeNQS8/DgYFlkhZrfXx483wYAAG8h4OCG/u7tQ3KmsUkyXJGyOi3b3AUAwL68EXC8tEy8UPKytkreIdOELVxobtHhRrl3Woa+AgAQCLwScGq2n5RtpoZ97Lrs3vsmyHrdlZmuawAAAsG4Ak7N9hckJ2urrMtl1Yzd9PT2yu9MwFmRlCAvljboGgCAQDCugJO8/gHJL90o+fnZssrcgz0crK3vOzn87in03gAAAot3JhmX7ZGHc0ok+6WNkrvS3BuBujo2gZso3z53QfbWNkhkcLBsWbFQXqrpNu8AAGBvNppkDDu52Nquw42SkxRPuAEABBwCjsO09/TIk2fPm5bIvenJpgIAIHD4dIgKY1Nf2y4RESHiig41d/p97egJ2V3hPoohd+EcudQy9GsAALAzhqgCSMHBKvniQ7v1qrX/tfJ5Wbvof+Qv73pZnv1OofkK967FnnCzJj2FcAMACFgEHD/w82dOyqY/3SWv7iw1d9xKzjTId//jsHz03l/L/rPV8oNT5/T9GdFR8rnF83UNAEAgGtcQldoHZ7g9cFblvV+eXM/Oud7w+5dL5Euf2mNa1xY5zyURn0+TiJBg+V7OTfKri+4djAEA8DecReUQb1fVyi9KL5rWYEc+dUoay0Z2QGbkXyTKo4/cJkUN/CcFAPgvAo4DHKipky8e7J9HM1BXYas0f6vStG4seV6MrP/OatMCAMA/McnYzx2ta5BHDx/XtSs0RJYlxg96xVbpt0as5hTDUgAAKD7twQkKUsdAAgAAeJdPA84PTo2yi8Ih1ma45HPvHpXWLvcOw1+/aYnclJyo64F2vVQsX/nMXtO6scxp0fLLvX9qWrgRz1EhiYlD/90D/oRnGRiKIapJdveUKPmndwv6ws1XVywaNtwot67JNNXIrL5rmqkAAAhsBJwJ8r/nJMua9AiZGtUlbd0NUtRwWV6+cEr+9q2D0tTVpb/mn5YukNtTr32UQmJypPz1Jxeb1o1t+PhCUwEAENgYovKSVanhUlDfKOeuNFuvJrnYMnR/oIH+ftFc+cDUke0VtPmTb8prv+4/X2o4jz21Rt63Lsu0MBJ068MpeJaBoQg4XpAS0SHfN7sID2d2bLRkx0TLLOs6OzZG5sbFSEzo6I5R+METR+TH3z0mnZ095o7b0ptT5ZOfXyE35aSbOxgpPhTgFDzLwFAEnHFKjeyQ7510hxtXSIgOLyrIzIqJkZnWdZ7V9pbWli45sK9cKsta9GGbcxYmyoKlSeZdjBYfCnAKnmVgKALOOAwMN7FhofLN9yyX6dFRug3740MBTsGzDAzFJOMxmhLV1RduokND5fFblhFuAACwiYDswfng9Fipams3rcHCgoMkNChYQq1rmLmGBgfr+572by6Vy1NFZ/XXR4WGyOM3L5M5XhyKwuTgp144Bc8yMFRABBy1sd6x+kZ9NEJhfYM0dHSad8Ynwgo+37hlmSyMjzV34E/4UIBT8CwDQ/k04PzFH/JF/erRYaESHRqiVxZFWa+YsBA97ONu99fqa1Tt+fr/Ka43/0+DrU6L0IGmwAo0FW1tUtrUYt7xriescLMkMd604G/4UIBT8CwDQ/k04Nz7yh7pHucvHxmiQo87+KgwVNRwxbwzlPraRQlxstR6LYiP1UNPV+vo6ZGunl7p6u2RTnVVbet77LSu6nv13FtqBRv1gv/iQwFOwbMMDOXTgPPc2VKp7+iU5q4u8+qWps4uaTF1a7f7OIOxSggPk8Uq0FhBZHFCvFeXbMP/8aEAp+BZBobyacAZiStW4FHhRx1voM5vUlcVglQAGhiM9NdY99NdkTrUqHkxrGrC9fChAKfgWQaGsn3AASYKHwpwCp5lYCj2wQEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI5DwAEAAI4T1GsxNQAAgCPQgwMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHgAMAAByHs6gQYMplx0OvyGM7TXOgddmy86k7JNk0AXsqlLyswyIvbZTclebWQGV75OGcEtlnmjzXsK/rPMtXP8cDrMp7vzy5PsO0ro0eHASmR1ZIfunGwS8+BOAHaraflG2mHsJ8KGRbHxju5/r9sllKZF1eofkCwD6u+ywbG/qe5f7XSMKNQsABAD9Qs/0FycnaKutyW82doQqet37iXZctH+n7aThD7tuUKvLESdlRZm4BPjaSZ9kbCDgA4AeS1z/g/gk2P1tWmXuDlUtxkXVZkDC4J3LlVNkgrVJSbtqAj934WfYOAg4C0xOH9U8QnlfeIXMf8FvVUrJTZFVWimkPVnKehAP/s+3+/j+nc7J2SYG5PxIEHASYDLnvqcHjuTvzXPo3ESEHAGwi8w55csCf03o+2boq2TSKkEPAQcBLXr/a+o1j/aSwZY/UmHsAADuxfjj9khrSqpL/3j6y3kgCDmD9xpm5wJSA30qRbCuo7yutNm3AYTITJNuUI0HAAa41ORPwKyaoF9UP7oksq5cSccmdt45saS1gW/pZFsmewTJxYKhDuyTnqj1Barbvlcd2umTzh5aYO4B/WvqhbFm1s0R+0jefrFx2/KtaOp4uqzPNLcAPFORdPS/S8ywP3Abh+tjJGIFl2N0xU2VL6T2y1LQAO1J7hwy3b8iQXV3ZyRg2N5JnedivURu05o78B1ECDgAAcByGqAAAgOMQcAAAgOMQcAAAgOMQcAAAgOMQcAAAgOMQcAAAgOMQcAAAgOMQcAAAgOMQcAAAgOMQcAAAgMOI/H+L1vG0uBHpWAAAAABJRU5ErkJggg==" } - ], + }, + "cell_type": "markdown", + "id": "6ca1e8de", + "metadata": {}, + "source": [ + "![cp_oscillations.PNG](attachment:cp_oscillations.PNG)" + ] + }, + { + "cell_type": "markdown", + "id": "69c083b9", + "metadata": {}, + "source": [ + "In this picture, the blue area represent the oscillations for the MedInc variable. The average of oscillations is quite high, because the observed data point has a relatively low value for MedInc, and raising it just a bit (or a lot) will increase the rediction for mean house value quickly." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fe137cfc", + "metadata": {}, + "outputs": [], + "source": [ + "## CP oscillations\n", + "prediction = model.predict(X_test_sample)\n", + "cp_sample_res = exp.predict_profile(X_test_sample).result" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "00e134e9", + "metadata": {}, + "outputs": [], + "source": [ + "cp_oscillations_unif = {}\n", + "cp_oscillations_emp = {}\n", + "for feature in data.feature_names:\n", + " feature_sublist = cp_sample_res[cp_sample_res._vname_ == feature]\n", + " feature_value_list = feature_sublist[feature].values\n", + " cp_oscillations = (feature_sublist._yhat_ - prediction).values\n", + " cp_oscillations_abs = np.abs(cp_oscillations)\n", + " step_size = feature_value_list[-1] - feature_value_list[-2]\n", + " emp_corr = [len(X_train[(feature_value - step_size * 0.5 < X_train[feature]) &\n", + " (X_train[feature] < feature_value + step_size * 0.5)]) / len(X_train)\n", + " for feature_value in feature_value_list]\n", + " cp_oscillations_unif[feature] = cp_oscillations_abs / len(feature_sublist)\n", + " cp_oscillations_emp[feature] = cp_oscillations_abs * emp_corr" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "08a41343", + "metadata": {}, + "outputs": [], + "source": [ + "data_unif = pd.DataFrame([(k, sum(v)) for k, v in cp_oscillations_unif.items()])\n", + "data_unif.columns = ['var', 'oscillations']\n", + "sns.barplot(x=\"oscillations\", y=\"var\", data=data_unif.sort_values(by=['oscillations'], ascending=False, axis=0), color='lightblue')\n", + "_ = plt.title(\"cp oscillations for uniform distribution\")\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "f1de600c", + "metadata": {}, + "source": [ + "Ceteris-paribus oscillations show the importance of single input variables. In the ceteris-paribus plot of MedInc, we can see that having a higher MedInc will result in a much higher predicted MedHouseVal. This is also reflected in the plot above, showing an average oscillation of about 2 for MedInc. \n", + "\n", + "There however is one caveat with this method; many values are very unlikely for the input variables, since the vast majority of MedInc values is between 2 and 6. We can adjust for this by sampling according to the distribution of the training set and thus counting the oscillations in realistic ranges more heavily. If we do this, we see the average oscillation of MedInc drop from about 2 to about 0.7. This happens because the largest oscillations are at MedInc values 10-15, which are very unlikely. By factoring in the rarity of the occurence of high MedInc values (with high oscillations), we diminish the effect on the final 'oscillations score'." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "35156650", + "metadata": {}, + "outputs": [], + "source": [ + "data_emp = pd.DataFrame([(k, sum(v)) for k, v in cp_oscillations_emp.items()])\n", + "data_emp.columns = ['var', 'oscillations']\n", + "sns.barplot(x=\"oscillations\", y=\"var\", data=data_emp.sort_values(by=['oscillations'], ascending=False, axis=0), color='lightblue')\n", + "_ = plt.title(\"cp oscillations for empirical distribution\")\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "36accce6", + "metadata": {}, + "source": [ + "## Model level exploration/explanation \n", + "Next to the instance level explanation methods, there also are model level explanation methods. These explanation methods aim to explain the entire model." + ] + }, + { + "cell_type": "markdown", + "id": "a82ddcf7", + "metadata": {}, + "source": [ + "## Variable importance methods \n", + "[Variable importance methods](https://ema.drwhy.ai/featureImportance.html) are methods to assess the importance of a variable in a model. Permutation-based variable importance randomly shuffles the values for one predictor variable around and then predicts the outcome variable. If the predictor variable was really important, the model will perform badly after the permutation and the loss will rise. If the predictor that has been permtated was not important for the prediction, the loss will rise relatively little. The difference in loss between predictions made with the original data, and predictions made with permutated data, can be used as a quantification for variable importance in the model." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "031f3b1d", + "metadata": {}, + "outputs": [], + "source": [ + "mp_rf = exp.model_parts()\n", + "mp_rf.plot()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3971a507", + "metadata": {}, + "outputs": [], + "source": [ + "mp_rf_grouped = exp.model_parts(variable_groups={'Location': ['Latitude', 'Longitude'],\n", + " 'House': ['AveBedrms', 'AveRooms', 'HouseAge'],\n", + " 'People': ['Population', 'MedInc', 'AveOccup']})\n", + "mp_rf_grouped.plot()" + ] + }, + { + "cell_type": "markdown", + "id": "ae03d98a", + "metadata": {}, + "source": [ + "## Partial dependence \n", + "[Partial dependence plots](https://ema.drwhy.ai/partialDependenceProfiles.html) are in a way summaries of ceteris-paribus profiles. In the plots below, the partial dependence profile (cyan line) is plotted alongside the individual ceteris-paribus profiles (grey lines). The partial dependence profile is a good summary of the ceteris-paribus profiles." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3dd5041d", + "metadata": {}, + "outputs": [], "source": [ "partial_dependence = exp.model_profile(variables = ['MedInc', 'AveOccup'], N=100)\n", "partial_dependence.plot(geom = 'profiles')" @@ -189749,70 +76609,15 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": null, "id": "f4f1b7f1", "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 49, - "metadata": {}, - "output_type": "execute_result" - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA7IAAAF2CAYAAABTZqR/AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8rg+JYAAAACXBIWXMAAAsTAAALEwEAmpwYAADAC0lEQVR4nOz9d3xU55n//7/OOdM16g0kAUIgUEf0YmwwtnHBNXH32rtO7I1jJ/yym+IUkjj5bBKvN9ls7OS7WWedZG3HjnuN4wa40DFFSEKAEIgmBOpd0875/SGQLVPUZnRmpOv5eGCjmdE57xHS6Fxz3/d1K4ZhGAghhBBCCCGEEBFCNTuAEEIIIYQQQggxGFLICiGEEEIIIYSIKFLICiGEEEIIIYSIKFLICiGEEEIIIYSIKFLICiGEEEIIIYSIKFLICiGEEEIIIYSIKFLICiGEEEIIIYSIKBazAwxHU1MHut7/NriHatv43Sul3Ll8OoVTEoN2/sRENw0N7UE7XqhJ3tCLtMyjLa+qKsTHR41gopEx0Ne6/oTzv7dkGxrJNjSRnm20vtb99/f/m9aGlj63VVTupdnXREpW1pCPa7Gq+H36cOOZSp6D+SI9P0Tec0hMiucXv/rhOe+P6EJW140BXdyNT3TR0uFl27468icnBD1DJJG8oRdpmSVv+Bvoa91AjxWuJNvQSLahkWzhp7Whhaa6pj63jYtLYW/JXrpOdOPMShnSca02DZ83EIyIppHnYL5Izw+j4zl81piYWmzRVKZPiGN3daPZUYQQQgghxCBcWHQBJ70n0fXRcwEuhBi+MVHIAuRlJnCyqYuGlm6zowghhBBCiAFSFZXx9vHUVO4zO4oQIoyMnUJ2UjwAuw/JqKwQQgghRCQpyi8g1hJDfeUBs6MIIcLEmClk05OjiHFZqahu6v/BQgghhBAirMwtnIOOTseBWrOjCCHCQEgL2d/+9resWLGCFStW8Mgjj5xx/4EDB7jzzju59tpr+fKXv0xLS8tZjhIciqKQm5lAxaEmDGNsNlEQQgghhIhkFxYtpsFXL+tlhRChK2Q3bNjAunXreOWVV3j11VcpLy/nvffe673fMAy++tWvcu+99/L666+Tm5vL448/Hqo4AOROiqelw0tNfUdIzyOEEEIIIYJPURTG2cZTu3+/2VGEECYLWSGbnJzMd7/7XWw2G1arlSlTplBTU9N7f3l5OS6Xi4suugiA++67jzvuuCNUcQDIzogFoLq2LaTnEUIIIYQQoVGUX4BNsdFeddzsKEIIE4WskM3Ozqa4uBiA6upq3nrrLZYsWdJ7/+HDh0lKSuLBBx/kmmuu4cc//jEulytUcQCIj7YD0NLhDel5hBBCCCFE6FxQtJBmv/Q9EWIss4T6BJWVlXzlK1/hwQcfJDMzs/d2v9/Pli1bePrppyksLOS//uu/ePjhh3n44YcHfOzERPeg8zjtGl7dIDk5etCfezbBOs5IkbyhF2mZJW/4G8pr3bmE89dPsg2NZBsayRZ+avaU4o+KJdrR//NXFAW76qC9qgb3lLQRSCeECDchLWS3bdvGypUr+f73v8+KFSv63JecnMykSZMoLCwE4Oqrr2blypWDOn5DQzu6PrjGTdEuG7V17dTVDX96cXJydFCOM1Ikb+hFWubRlldVlaAWfeFiKK91ZxPO/96SbWgk29BEerbR+lo3Z3IB765bQyM6k4rm9Pv4xUWLWLPzAywHLDiyUkYgoRAinIRsavHx48d54IEH+OUvf3lGEQswc+ZMGhsb2bNnDwBr1qwhPz8/VHF6xUXZaGmXqcVCCCGEEOEkxubiysIL6dA9A9phQlEULi5eQpO/mWN7K6jZt4fG/Yfw+jwjkFYIYbaQjcg+8cQTeDyePlOFb731VtasWcPKlSspLCzkd7/7HatWraKrq4tx48addYueYItx2zlysj3k5xFCCCGEEIOXqsXg212FLX9qv49VFZWLi3t6sAT0AG3dbZTs24XP8BGluYmbMiHUcYUQJglZIbtq1SpWrVp1xu233XZb799nzJjBiy++GKoIZxUXZaO8Q96pE0IIIYQIR4tyZ/Nm+Udk038h+1maqhHnimNJ8UUYhsEnZds5vLec8fZx2CYnhSitEMIsIW/2FG5i3Ta6PAE8vgB2q2Z2HCGEEEII8Rl2zUrA0Id1DEVRmFs4m4Ae4ONd61ArW4iZlIbd6kBRlCAlFUKYacwVsjFRNqBnC56UOKfJaYQQQgghxOcpKBiGMeyiU1M1ls+9hBMt9ZRX7qZB70ZTLKRmT5WCVogIF7JmT+Eqzt2zl2yrNHwSQgghhAhLUaqdLl9X0I4X74pj8YxFXDJzGTGWGI7s200g4A/a8YUQI2/MjcjGnhqRbW6XdbJCCCGEEOEoVnVB5RHInx70Y88qKKbL18XHZeuxKVYSszKxWmx0HzhJk78Jh+ogfuqkoJ9XCBFcY25ENvbUiGxLh4zICiGEEEKEo6lZWXTooRt0cFqdLJ95KQvzF1B34CCH95bTFmjnwsLFqIpGzb69A9oCSAhhnjE3IhvttKIo0CKdi4UQQgghwpLb4qDLCP2gg91qZ1nx0j63zS+cy46yEo7tqyBjel7IMwghhmbMjciqqkJMlI0WWSMrhBBCCBGWnBYH3YbPtPPPLJiBVbHi88v1ohDhaswVstCzTlamFgshhBBChCdVUTB7Zm+8NYHGA4fMDSGEOKcxWcjGue0yIiuEEEIIIc6pKL8AvxHAHzBvZFgIcW5jspCNibLJGlkhhBBCCHFeiwoWUld1wOwYQoizGJOFbGyUjdYOH7ou3eiEEEIIIcKV2Z2DnVYHumGg67qpOYQQZxqThWyc245uGLR3yVQRIYQQQohwZFU0/Lrf7BjYVBv+gCxJEyLcjMlCNjbKBkBzu0wvFkIIIYQIR9Gqkw5Ph9kxpHuxEGFqbBay7p5CtlU6FwshhBBChKWsSZNQDtSYHYOsyZPx17SaHUMI8Tljs5DtHZGVQlYIIYQQIhztOrgXx/QpZseg8kAl9owEs2MIIT5njBaydgDpXCyEEEIIESb8Rt+GSl7Dj91qNynNp7r1buw2p9kxhBCfMyYLWbtNw2HTZC9ZIcSY09HtY9veOo7WtZsdRQgh+ujwdZkd4ZwURTE7ghDicyxmBzBLrNtOi6yRFUKMAT6/ztY9J9i4u4SKg43ohoGmKty8bCqXzs6QCzQhRFhoPFBKSmKu2TH62F62E7vqMDuGEOIsxmwhGxdlk67FQohRK6Dr7D/aws799WwsP0Frh5f05CiuWjiR3EkJvLf1CM++X8new83cumwqSXEybU4IYa4TejfJhhFWb641+OrJmBZexbUQoseYLWQTYx3sOdxkdgwhhAiavYeb+N0rZfj8Ov6ATkDvGXktmJzAJXMyWDJnEg0NPVOKcybG8c6WI7z8URUl++u5qDiNL16UhcthNflZCCHGqilaDO3lW4kumGd2FAC2lW4nSotCUcbkSjwhwt6YLWSTYh00tXnwB3QsmrxACSEiX0q8iwtnjEfXDVRVYfK4GPInJ+C097zUq+qnoxyKonDF/InMy03hzY2H+GDHMayayq2XZJsVXwgxxi2alssjh17mht2ldOQVjth5fQE/28t3ML9obp/bm/3NpE3LGbEcQojBGbOFbGKsA8OAxjYPKTKlTggxCsRH27lp6dRBfU5CjIO7Lp9OXVMn5QcbQ5RMCCH6pyoK9xZcwOu7tzGDkStkP9r1MT7jzL4pBtLkSYhwNmaHIpNie4rX+ubw7ZAnhBAjJS8zgWP1HTS1Se8AIYR5YiwOOg3/iJ1va+k2HKodtxbNzrKS3ts7vZ3YVFlqIUQ4G8OFbE8HuvqWbpOTCCGE+fIyEwCoOCSjskIIs43MKKhu6DT5G0mYmklcVgbN/ube+3ZU7CR64vgRySGEGJoxW8jGR9tRFClkhRACYEKqG7fTSvlBaYInhDDXSE3m3Vy6hURLIoqiYNGsBAy9975uvRuHzTVCSYQQQzFmC1mLppIQ7aChRaYWCyGEqijkZcaz+1AjhmGYHUcIIUKuI9BJ1JRzj7rK+lghwtuYLWShZ3qxjMgKIUSPvMwEWtq91NR3mB1FCDGGjdRbaZ8vUzVFw+v3EtADUsQKEQGkkJVCVgghAMjLjAdgd7VMLxZCmGfkSsi+ZzIwUBQV3dBRx/YlshARYcxuvwM9W/A0t3nw+XWsFnnBEkKMbUmxTlLjnXy0q4aqmhaO1XVgtai4XVZyJsazfO4E2XdbCBFyI7m4Qdd1VLXndU03dKyaBcMw+qyXFUKEpzF9RZIU68QAGttkVFYIIQBmZidzrK6DqmMtJMc5iXbZaGn38uIHVTz0p63sP9pidkQhhAiKRGsCDVUHz7hdphULERnG9IhsctynW/CkxktnOiGEuHHpFK5aOAm3s+/+iSX763n63b38+zPb+dm980mR10whRIQrLpjBhyUfc7KyCptiw6E5eu8LEMAf8GPRxvSlshBhbUyPyCae2ku2QdbJCiEEAKqqnFHEAsyYmsS3b5tJQDcoqWowIZkQIpz85je/4aqrrmLFihX86U9/AmDdunVce+21XH311XznO9/B6/UO+fgj1T19yYwLidbceA0vFxQt/PT2ggs5vn/fiGQ4n89/HaSrvBCfGtOFbHy0HVVRqJcteIQQol8p8S5S4p2UH2w0O4oQwkRbtmxh06ZNvP7667z00ks89dRTHDhwgB/84Af8+te/5s0336S7u5vXXnttSMfXFAV9BNeoziwo5qIZi/vcZrfasSgaAT0Q9PMZhnHGcX1+Ly1tDbS0NdDYcoKG5lq6vV2905xb25poaq1DURQpZoU4ZUwXspqqkhBjl87FQggxQAWTE9hzuAmfXxqhCDFWzZs3jyeffBKLxUJDQwOBQACXy0UgEKC9vZ1AIIDH48Futw/p+A40ugM+Rrbt05liLLEcq9xDS9VRdD04r3m6rlNbd4jDNXuBT0dYuz2d1DUeo6W9kbqGYxytrUJVVAJ6gNr6w1Qf3UtnV2tQMggxWozpQhZObcHTLIWsEEIMRMHkRLw+nf1Hm82OIoQwkdVq5dFHH2XFihUsXLiQ1NRUHnroIe68804uvPBCmpqauOKKK4Z07EzNjW/vTkChy2feNdrsgplcWrwMFZWayj3U7qvEH/AP+Xi6oXPk+D7qGo+hKn0vwaOj4pg6qYiJ47OJiU4gI3UKNqsdv9+Lx9uFOyoWGYgVoq8xv4I9MdYh0+SEEGKAcibFoakKZQcbyc1MMDuOEMJEK1eu5N577+W+++7jd7/7HW+++SZvvvkmGRkZ/OIXv+AXv/gFP/7xjwd+QBVsVo35hQX8pWQjX5h5MS/uXM14LZ6UmUXDymqzDv2S94JZ8wFo93SwbtcGDAyitWjicyacUZCej2EoJCWOIzlpPDUnDmG1aRiG0TtdWFEUmlsbaG1vpGD6XAzDQLO6mGDLoqOzlebWhj6fE4msNs3sCMMS6fkhsp6DxXr+n68xX8gmxzppbvfKXrJCCDEADpuF7IxYyg42ctPFZqcRQpihqqoKr9dLbm4uTqeT5cuX88wzzzBt2jQmTpwIwM0338w3vvGNQR33+SMfMsvbxQTXfDp1H5qucUvRcj4o38L2rR+QqsVgmTKBGEcMmjrwi3Gb1YLXN/SR1N7jqHaWFV+MbuhsK9vBobLdaIpKjBaDMyt1QEVtlCOO1vZG9ICOzxvoU5QGAn5aWppIiE3tc5+KlUAgQOAsnxNJrDYNnzf4a45HSqTnh8h7Dn7f+af0j/lC9nTn4pNNnaQnu01OI4QQ4S9/cgIvfXiAlnYPse6hrYETQkSuo0eP8uijj/Lss88CsHr1aq699lqeffZZ6uvrSUpKYvXq1RQWFg7quF+9aDYfvPMRb55YTbIaTaB8O1r+LJbmzyOgB6j3tFJetZcqvR3dMLAoKtGqkyjFjj9rHFbNikWzYNWsgxopHSxVUZlbOBsAr9/L9t07aanc17veVVVUUmypWJSey2xjUt/rS+2EB8PjQznUzmfLUUP30dZVT7ZrGkrbp/cZhgGBbvD1fA7nKGRb/a20+j9dR6sqKioqqqKgKRZsig3rhDgsmhVV1SKyGBbis8Z8ITttQhwApQcapZAVQogBKJicyEsfHqDsYCMXFI43O44QYoQtWbKEkpISrr/+ejRNY/ny5XzlK18hJSWFu+66C03TmDRpEj/96U8HdVyLorJsQRH712zmomn5PLNnCxcbRk8hpmqkOuNJLVjQ+3hvwEeLt4P9Bw7gqzpMhxHATwCP4Tu1nvTUolJFwYqGTbFgVTRcig1jajpRtqhBjeyejc1iY0HRvD63BfQAqqKiKAp7Kyp7is/PUBQVu9PO9NxsPD4PBgYOq4NObyd7yirIy8vpM+pqGAY1rcfoqu1i+vTsAeUyDIOAESCg9/zx+L1UVlXSdqgWv+FHJ3DeNbeaop56M6Ang4KCqqhoqFjT4rDZHFg0qxTDwlRjvpBNjnMyIcXNzso6rpg/0ew4QggR9iakuomPtvPBzmMsKhgnFzJCjEErV65k5cqVfW674YYbuOGGG4Z8zA8aa5inW7l98Sz+96MNLLVO4MOSt8jR4hhfeMEZj7dpVpKdcSTnzzrvca02jY6ubroDPjy6jwMHDtBaeZCTejeB82zzY2BgUTTGW+Jw5U0b8GvdZ4vj6blnFp4tXS00H24CoKb1OAqQmZiJgkJW0mSAPudSFIWU6GSsqm1A5z/9ORbFgkXtudR32VzMK5w7oM81DAO/HsCv+wEDjJ5GVYFTt+2r2k+7fhK/8el0bU3RiM/MwG5zDjijEMM15gtZgJnZSbyxoZrWDi8xUQN/kRBCiLFIVRSuWzyZP/99D9v31TN7erLZkYQQo8CUxBh+9/EnXJc/CauikJczjWI1l2d2bSCtfAdG/swhH9umWbFpVgCS8wZ+HG/Ax8Y9OzhasonpxQuHfP7PinXGsmx6T5OByYmZvbc7bU5mTTx7UR5lj8KqjsxSDkVRsGoWrNrZy4TPj0ADdPu6WV+2gXhrAq6s1FBHFAKQ7XcAmDUtGcOAkv31ZkcRQoiIcEHhOMYnunjxwyr8AdlTVggxfFkF+Xznzut4d98xZkS7Oda5BYCr82ax3d9gSiabZmVJ/jzSLHEc27XDlAyRwGF1sKz4Yhp8DXgOyvW0GBlSyAITUtwkxjjYUSk/eEIIMRCaqnLT0qmcaOzk45Ias+MIIUYJTVXRDYPZM3MpaesAIMbS05jzROkG03JdkD8HMGgv22NahnCnKAqXzLiYWk8tPr+39/aOA7UE9MjplCsihxSy9PzgzcxOory6EU8EtaQWQggzzZiayLQJcby2vpqALqOyQojgmJYcy9H2DryfWb96V9EFeAmwYefbdPk9puS6svBCjgeaObZrOx6TMoQ7VVVZNmMpNfv30lZVw5G9u+kMdHKsck9vV2chgkUK2VNmTkvG59cpO9hodhQhhIgIiqJw6ewMWju87D/aYnYcIcQokVtUwEG9Dbuq0hnw9d5+VcEcbsmbT0n5B6Zl+2LRJczNLuJo+U5271yP7zP5RA+rZuWiwovwG34uKb6YC2dcQIo1hUPl5VLMiqCSQvaUaRNicdotlB80Zw2GEEJEovzJCVg0RZZmCCGCZmJyHIea2rkyMYENDev63Bdn7Zlm3B3wnu1TR0SSI5YbipZxdd6FlO/agNdvXpZw5bQ6WFg0v3c/3+KCIuIscdTs29Nn2rEQwyFdi0/RVJUJKW6O1nWYHUUIISKG024hZ1I8OyvruWXZVNmKRwgxbFZNI6AbZM6Yxkvvrcev61jUT8derp0+i7fLPmTWjMtMTAluq5MbC5bxYukacgsXYLeMTFfhSLVw5jya2lvYWrENv+Ej0ZqEMyvF7FgjQtcDeLxdeI424TO8+Hr3Oh68WEssUVmy9R1IIdtHenIUm8pr+2xCLYQQ4vxmZifz1Dt7qWnoJD0pyuw4QohR4PRl2IXxcexp20hB7Kf7yKba3cQpdk6WbiClcJFJCXu4LA5uKriEF0pXk1e4EJtFtnE8nyh7FEuLL8IwDN7buZq0QAKWc2zzcy6GYeD1daPrOlarDU21oChK77TlkbiGNwwDXQ/gD/jwB/zouh+9tgPd0NGNAAF0fPqn085VRcGuOpiWNRWXzYXD6ugdrR6MgB5ga9k2ju3bg6qoJFgScGT13QJPN3TaqmpwTkrGZh3db65IIfsZGUlRdHkCNLV5SIhxmB1HCCEiQvHUJJ56Zy87K+ukkBVCBNXc2Xn86r0NFMT2vf26wrk8V7qJAzvf4QJrKoH8YlPyATgtdr6YfzEvl66lYMZiNFUzLUukUBSFJQUX8lHZx2RMy+u3+PQHfDRUVeMz/KiKgk2xoyoKrboPv3G2Rq0GoJw6F1gUC1bFioKK1/D2FpmqomJVrDhUB45JSSiKQtvBGjoCHb2f/2lm+oyiaoqKRbGgKRY0RSMrMxOLZsGi9vyxW+1DKlbPR1O13n18fQEfm8u2Ur+3HgUFp+bAq/vwGz5iLbE0HTyMz/ARrcUQOzUjqDnChRSyn5Ge7AbgaF2HFLJCCDFA8dF2MsdFs3N/PSsWZpodRwgR4XyBABb1dBGiEG+10OzrIs7q7PO4WwoX0Bnw8bfd22jY+TbaqcLj8zM2Txcgyqn7UlQH6fkLcWjBGz2NsjqZ7chie8l68mdcIMXsANitduItCdTvP0hydlbv7YZh4PN76DpUT5fehd/woyoq83PnEmUf/JuluqHj8Xvp9nUT0P1E2aJwWB0oioI/4KfL183uygoaDlSjoxOjxXJx8dwzilCb1YLX5x/28w4Wq2Zl8YyeGQmGYdDS1YLNYsNlc/U+xjAMNpdu4djeCsZlT8PK6Pq+lEL2M9JOjSTU1HdQNCXR5DRCCBE5irOTeO3jg7R0eImNkql1QoihUxWFgP5pOXr1vCLe2bqJS1MuPuOxLs3KTYULzns8m1XD6+sZtTMMg6PdrbxduhZVUSjQ4rHlzcIShMIzLycHY49B6a5NRKsO0gqKpaDtx5zCWWzctYlje/vuz2tTrThVF4sKFgx7uraqqDitDpzWMwepLJqFaM3N/MK5wzqH2RRFIc4Vd9bbFxTNp7S8nKP7KhjvGIctM2nkA4aIFLKf4XZaiXPbOFbXbnYUIYSIKMVTk3j144OUH2xgUcF4s+MIISKYpqp8po4lNcpJeyDA8c7NjHfNH9axFUVhgjOWe2dcRIffy+Y9uyktfR/91JzRWNXGFC0Ga96sIU0Lzc/JJZ9cdlWUU7prA5MtybgLcoaVebRbWHT+NyLE8BXm55Ov5/J+yWrG+6KxjpK1s1LIfk56spuj9dK5WAghBiMtKQpVUaht7DQ7ihBiFPrqsvn8z9rNFOobmexeGJRjRllsLCsoZtmpjw3DoMnfzSd7K6gueQ8/OnMtSTgKBj9aV5SbT6GRx/vlGzlesomswrkyOitMpaoql8++lLc/eY+M7Fy0QTbZCkeyj+znpCdFcby+A12XDZuFEGKgLJpKYqydk01dZkcRQowC0XYLJzo+fT1RFIX7li3gmMfL2rq1ITmnoigkWJ0sL5jFP8+4iPuKllBrdPHhzrdoLds8pONdVrCI6dbxlJesp6Vsd29nXSHMYNWsLC1cwtHKPXQdOGF2nGGTQvZz0pOj8Pp16lrkYkwIIQYjJd4lhawQIihuuvJiXj528Izbb75wNml2O++HqJj9LFVRuKZgLl+bcTFVgTa6yrYO6TgFuXncMeMKAMp2fszhXZ/QUrablq4W2j3tdHo78fg86LoezPhCnJXdamf5zEtp8jfRVnXM7DjDEtJC9re//S0rVqxgxYoVPPLII+d83AcffMCyZcvOef9IyjjVufhYnUwvFkKIwUiJc1LXLIWsEGL43E4746KdlPkaz7jv4gVFZNjtvH9y7YiNcN5ZuIhP/PVo5TuH9PmKonBh/lxun3EFS3PmYVcsdO+vpnVvJU179lBbUcqB0i3s3bmRvTs3sGfnBo7s2kZX+T58AV//JxBiEBRFYVnxxXTpXTTuP2R2nCEL2eToDRs2sG7dOl555RUUReGee+7hvffe47LLLuvzuPr6ev793/89VDEGLS2xp3Pxsbp2Zk1L7ufRQgghTkuOc9LR7ae9y4fbaTU7jhAiwt284hL+4+nXyMiKIs7RtznNsgVFbNxaxlNH3+HW9MuwhXj9qaIo/HPhRfxm11qW6YVD7nKsKApuq5N5eTP7fWyrt4OSyt0cL9uBj8AZ+woZGMSoTuJzc8/akVeI/lw040I27dpCXeWBPlsgRYqQFbLJycl897vfxWbraZk9ZcoUampqznjcqlWr+NrXvsavfvWrUEUZFLtNIznOwTFp+CSEEIOSGt+zx2Ndc5cUskKIYVMUhS9ddxkvvfMhd2dNP+P+hXMLSN9VyXM173N7+nIURQlpHouqcrV9An8r+TvX2SfRmVcY0vPF2KK4ML+n0ZTVpuHzBs54TF13Cxt376DT8OJW7STl5PXZR1SI/iwomsf7O9aYHWNIQlbIZmdn9/69urqat956i7/+9a99HvPkk0+Sl5fHjBkzQhVjSNKT3DK1WAghBin5VCF7oqmTyeNjTE4jhBgNkmKi8AV0Wr1eYmxn7ic6sSibS3w+njz6DksT4kh1zMERwm6s03OnMSmQxR/L1pFb1k5SQXA6KA9VsiOWa4uWAtDsaWdNxRaiFDvji4pNzSUii1N10H2gDkdWZM1GDXnf5crKSr7yla/w4IMPkpmZ2Xv7vn37ePfdd/nzn/9MbW3tkI6dmOgOUsq+pmcmULqmkqhoBy7H+UcVkpOjQ5IhVCRv6EVaZskb/oL5WhfKr190bE8h2+nVh3SecP63lWxDI9mGJpyzmeHmK5fy2vvruDMz+6z3z5qdx3Sfj+079vBO3Qd4dR0FhelRTgpiLgh6Hodm4f4ZS/l9yYdEB3zYtfCYgRJnd/OFomV8XL6VgyVbmTxj8NsGibFpTv5sNpZtYhxSyPbatm0bK1eu5Pvf/z4rVqzoc9/bb79NXV0dX/ziF/H5fJw8eZLbb7+dZ555ZsDHb2hoD8k2OZNT3QR0g7VbDjEvN/Wcj0tOjqauri3o5w8VyRt6kZZ5tOVVVSVkb3CZKVivdSPx7x3ntnHwWPOgzxPO34uSbWgk29AMJNtofa07l5RYN60e73kfE2W1cuG8Qi489bFhGKzbWsbzNe9x68TlIcmVa4nDV7EDe8G8kBx/qC7Mn8vfS9cR2H0ALS/y1j2KkWe32AkYkdc1O2Rdi48fP84DDzzAL3/5yzOKWICVK1fyzjvv8Nprr/H444+TkpIyqCI2lKamxxLtsrKjst7sKEIIEVFS4pyyBY8QIuiSoxx99pXtj6IoXDivkOtSknii+u+0+T1Bz1SQnc0RPTyXoi3PX0ip5wgeX/CftxDhImSF7BNPPIHH4+Hhhx/muuuu47rrruPZZ5/l3nvvpbS0NFSnDQpVVZgxNYldVQ34A5H37oQQQpglJd7FSdmCRwgRZBcumsvmthOD/rysGdP41vJFPF+zhnbvtqBmSrA6adbDs1DUVI2bCi5hT9kmLBWHzY4jIsRIbWcVLCGbWrxq1SpWrVp1xu233XbbGbdlZGSwZk14dcuamZ3Eul3H2Xu4mfzJCWbHEUKIiJAc76Sl1IvHG8BuC+12GEKIsWNScjyvtXbCuMF/bozdxveWX8D/rN1MbtQGcmIWBSVTqLskD5fTYueK6YvYvL+EiUw0O44Ic5qioesBtBA2Swu2kI3IRrr8zARsVpUdlXVmRxFCiIiREvfpFjxCCBFcQy8cLarKA5cs5LjHw/HOzWGRaSR8VLmNcXlFZscQIiSkkD0Hm1UjPzOBHZX1ETfMLoQQZkk5tQWPTC8WQoSj6xYWs72tPWjHC+cy1qf7CRg6NsuZ2xYJMRpIIXseM7OTaWrzsP9Yi9lRhBAiIvQWstLwSQgRZLphDHtwwW2z0u4PBCkRGITvusJNFTuYaE00O4aIEArh+718LlLInkdxdhJRDgv/+XwJH+w4FnH/uEIIMdKiHFaiHBYZkRVCBN3UpBiq1eFvm2RRFPx6cJp5JqsOGj3huZXTlMlZdOrn37ZIiNM0xUJA95sdY1CkkD0Pt9PKQ3fPY0paDE++s5f/eHYHh0+E54uVEEKEi5R4JyebOs2OIYQYZS5aPJ+PDtQO+zgF7iiOd20JQiKYMSWb7spdQTlWsCU7YmkO0+2BRPjRFI1AQArZUSUx1sE3bynmrsunc+RkOz/501b++FYFviBOSxFCiNEkMcZBY2t4bkkhhIhcMS4H7V7fsI8zf3Ze0NbJTnTEhu1eslbVQpfhkxmFYkA0RSOgR1Z9I4XsACiKwtKZ6Tx830IumzuBdbuO8/aWI2bHEkKIsBTnttPcLoWsECL4NGX4l64uqwVvkKYWW1SVQBgXitnWcVTu2iTFrOiXR+/GbnOYHWNQpJAdhCiHlVsvyWbWtGTe2nSIptZusyMJIUTYiXXb6PYG8Hgj651dIUT4s1tUuoMwK05BCVpxF6VY6PSH5zXhvLxixmvxNJWVmx1FhDmv7sVmlUJ21Ltx6RT8fp1n3t1rdhQhhAg7cW47AM0dMiorhAiuZLeD+q7hF43j7DZOeoMzJTjfEk9TxSdBOVYoLMybxYlAq9kxhAg6KWSHYFyCi6Uz03l3UzXH6sNzXYQQQpilt5Btk0JWCBFcE2KjOK4N/9qrIC+Luu6SICSC4txcjgTC93pQVZSI3FpFjJytpZ8QpUWZHWPQpJAdomsvyMRpt/DYS7ukk7EQQnxGrNsGQEuHbPsghAiu9JxcalqH3xU9KzaGg13B2SZMVRTCvURM1qLx7z5gdgwRhgzDoMnfTOyUCWZHGTQpZIco2mXjR/cswOML8LOntrG+9LjZkYQQIiz0jsi2SyErhAiupJgo6juGP7XYYdHw6OFefgbP/JyZHPU3mB1DhKFNpZuJt8SjKIrZUQZNCtlhyJucyEN3z2NqeixP/K2CQ7UyMiuEEFEOCxZNkc7FQoigs1k0fIHgFKABwwjadFtVAZ8evntwuix2OgwP/jDOKMzREeggekqa2TGGRArZYYqNsvHADQW47BZeW3fQ7DhCCGE6RVGIjbLTIoWsECIEgjVwNC82mtLW9UE51gxLInXlm4NyrFAptk+iatdWs2OIMKNEcDkYucnDiMth5Yr5E9m5v56qmhaz4wghhOni3DaZWiyECGsXzCukpK0drz787Xzm5OZRFeadgfNyckm1xFJbGpwmVyLy+XU/agROKT5NCtkguXROBm6nlVc/llFZIYSIc9tlarEQIiSC2Xz3CynJbGj4eNjHURQFu6LhDfiCkCp0Lsqfi98I0F1eaXYUEQY6vZ3YFJvZMYZMCtkgcdgsXLVgEuUHG9m656TZcYQQwlSxbhstMiIrhAiBYA4gZRdPp9YbnNeqSaobfU/4j3ZeWbCYSl+tbMcjKNu3G+eEZLNjDJkUskF08ax0MpKj+O9Xy/if18vZf6yFzbtP8PdNh9hUXkt1bSv+gG52TCGECLk4t51Ojx+vb/hT9oQQIpTS7DZquoffsLMoO5tDgfYgJAotRVGYYEmgrXyP2VGEyboCXTjtkbd/7GkWswOMJnarxg//cS5vbTrE3zZWs3n3iTMeMzHVzb/eUkyMK3KH8YUQoj+n95Jt7vCSEuc0OY0QYjQJ9kDi5fMK+bf3P2CK04lFUbgmORFDKx70cZJtUTTow98aaCRcmDeXv+56l3yzgwiTGRG57c5pUsgGmdWict3iySzMT+XIyQ5S450kxDhoauumqqaVZ97bx7//ZTvfunUm8dF2s+MKIURInN5LtqXdI4WsECKogn3dHe+wM8nhwKPrdBgGjfp04rWh5FKIlMm6iqIQr0YR2H0ALS/L7DjCBL6AD1WJ7Mm5UsiGSEq8i5R4V+/HLoeb9GQ3qfFO/uvFXTz8l2388B/n4nZaTUwphBChcbqQlc7FQoxOv/nNb3jnnXdQFIUbb7yRrKws/vM//7P3/hMnTjBjxgz+53/+x8SUA9Pl9+NQVa4ed8mwj5WiOvGUf4I9f04QkoXWpfkLebH0ffKQQnYs2la+gxgtxuwYwxLZZXgEmj4xnm/eXExjq4en391rdhwhhAiJ3qnF0rlYiFFny5YtbNq0iddff52XXnqJp556igkTJvDaa6/x2muv8b//+7+43W6+973vmR11QBq7PSRYgzO2c0PBXDb4TuLaXRqU44WSRdWIUV2wu9rsKMIEHYF2XFnjzI4xLFLImmBqRizXLp7MloqTZ11HK4QQkc7ttKKpinQuFmIUmjdvHk8++SQWi4WGhgYCgQAu16ez0B555BFuvfVWMjMzQ3L+YK+RPbanmmRbcGbIKYrCVwov5A3v4aAcL9Quy1/IXu9xs2MIExgQ0etjQQpZ01y1YCJT0mJ4+t29NLZGRmMAIYQYKFVRiHXbZERWiFHKarXy6KOPsmLFChYuXEhqaioA1dXVbNmyhbvuuitk51YV0INYzR7t9hBlLQja8eyqhQItnoayjUE7ZqhYVQs6Brohu2qMJR2eDuxq5DeelTWyJtFUlXuuzuOhP23lh09s4ZpFmVw6JwOLJu8tCCFGh9goOy1SyAoxaq1cuZJ7772X++67j+eff55bbrmF5557jttvvx2bbfAXyVaLimHtv8uSRVWxWFUs6sCvmWy2cx/3hNfLouTYQR2vP1cWz+bX29Zw6XnOO1jWIB7rszKs8XTtriS+OPQ9jG1BmsJtlkjPDz3PYf2uEuKnpIfseypYLNbz/0xG/r9GBEtNcPHDf5zDc2v28/za/WzefYIf3DVbilkhxKgQ57ZxsrnL7BhCiCCrqqrC6/WSm5uL0+lk+fLl7N3b0/dj9erVPPHEE0M6rs+vYwxg72ndMPB4A+jqwEZlbTYNr/fcx+0K6OgBA28guPte2xWVbo8PLQidYa02Dd95nsNwLMiZycula4ny+UNy/NNsVgveEJ8jlCI9P/Q8B4/XR7u/gwTFHrLvqWDx+84/U0AqJpOlJUXxLzfP4N6r8zh0oo33PzlqdiQhhAiKOLed5jYZkRVitDl69CirVq3C6/Xi9XpZvXo1s2fPprGxke7ubiZMmBDS8/t1A2uQRk8PluwL2vrYz3NhwRvwheTYwaSp4T0qJ4JrbcmHJNuSI359LMiIbNhYWDCOzRUneGPDQRYWjCM2avBTcgK6TmuHD19AB8MgKdaJqkb+N6kQIjLFum10dPvx+XWsFnnfVIjRYsmSJZSUlHD99dejaRrLly9nxYoV7Nq1i3HjQt8FNZjX32/WNXBV6tLgHfAznIpGd8CL02IPyfGFGKzVn3yAW3Pjyko1O0pQSCEbRm5ZNpUfPbGFVz6q4p+uzB3Q5xiGQdnBRrbsPsHO/fV0dH865cFu1cgcF820CXEUZiWSkBAVquhCCHGG03vJtnR4SIp1mpxGCBFMK1euZOXKlX1uKyoq4vnnnw/5uYPV56muswurquDUQjMia1c0PBEwIivGhs27tqIpGjFT0s2OEjRSyIaR8YlRXDong3e3HOHCGWlMSYs97+N9fp2/vLeXj0qO47JbmDE1ianpMdisGgHd4MiJdg4cb+HNjdW8saEap30naUlRTEh2M21CHHmZCcQMYeRXCCEGIj66p5BtaOmWQlYIERRenx8tSLPNnlq/g+vHXRyUY51Nrd7FTEdMyI4vxEDphk5LoIUphUVhvy52MKSQDTPXLJrM1j0n+cPru/nx3XNx2j/9J/J4A7y95TAd3T4Soh1s31fH/mMtrFg4iesWTz5nk6iObh+7q5s4XNdB5eEmNlec5IOdNQBkJEcxJT2WKWmxTJsYR3KsY1TMmRdCmC89qWcWyLH6DqZPjDc5jRBiNPjo440smJg87OPohoGmgCNEo7EdAS8eI4BVjZRL7SBvzivCysZdm0iyJpkdI+gi5adrzHA5LPzzNfn8+zPb+ct7+7jn6jwA9h1p5o9/q+Bkcxd2q4bHF8BmVfnq9QXMzUk57zGjHFbm5qRw1YXR1NW1oRsGh0+0UXagkX1HmtlScZIPTxW2iTF2Zk9PYfncCSTEOEL+fIUQo1d8tB2X3cLRug6zowghRgHDMNh6pJ5/zS8c9rHKduwh2+UKQqqz+7+yDczMXxqy4wsxULqu06l3kpg92ewoQSeFbBiaNiGOaxZl8vr6arq9AU42dXK0roOkWAcP3j6TaRPi6PL4URSlz4jtQKmKQua4GDLH9Ux30Q2D4/Ud7DnczO7qRt7/5Cirtx1lQV4q8/JSyZ0UL1sCCSEGTVEUMpKjOHqy3ewoQohR4GRrB5Pi3UGZOba/s4tJrplBSHUmrx7Armi4rZGxpEI3dJmNN0p5/V4+Kv2YFNvoaO70ef1WQbqu88c//pHKykp++MMf8pe//IV77rkHTZNW3aF0zQWZ7DvSTMWhJqakxTAvN5VLZmf0Fq4uR/CmwqiKQnqym/RkN5fMzqC+uYu3txxmfWkt68tqcdo1vrwij1nThj+VRwgxtmSkuNlQVothGHKhJIQYlhPNbaTFBGcUtcXvJzpE3YQbvJ0kKpHTqbg74MMmY1sRz6/7aepoovJgFR7dQ8AIoCkaybYU7JNH37RiGEAh+8gjj9DY2EhpaSkAH3/8MXV1daxatSrk4cYyTVX59m097xSO9MVfUpyTf1g+nZsvnsruQ0289GEVf3lvHwWTE7BZ5Q0MIcTAZSS76fYGeho+xUXG6IQQIjwdr9xPuhGcHRg6AgFcIVofe7CqmkQ1kgpZD3YlNF8LEXq6obNx1ya69C6itRicGYnE2pxjYn/gfueLbty4kYcffhi73Y7b7eaPf/wj69evH4lsY56iKKaOYNisGsVTk/iHy6bR1OZh9fajpmURQkSmjBQ3gKyTFUIM2/G2TsZFBecNMcPomZEWCtWBNsguCMmxQ6HL78WuyIhspFq780McmpOM6XnETs3A6XCPiSIWBlDIWiwWVPXTh9lsNiwW+WYfS6ZPjKcgK4G3Nh6is1v2QxNCDNzpzsVH6mSdrBBieFq7fcTYw3vbwI6Al1bDR5zdbXaUATtUfQiHKiOykcw1eXSuge1Pv4XstGnT+Mtf/kIgEODAgQP86Ec/IicnZySyiTBy45IpdHT7eWvTYbOjCCEiiNNuISnWwTEpZIUQY8Dru7eRn7fY7BiD0mV48Y7RQmg0sCgW/IGxOdDUbyH7gx/8gPLychoaGrj99tvp7Ozk+9///khkE2FkYmo0C/NT+fvmQ3yw85jZcYQQESQj2c2RAXQu1g2DbXtPouuyn6EQIjK16l7ibJEzGgvgMfzYLOE90i3Ozaba8B1uMjuGKfotZN1uN1/96lfZsGED77//Pl/60peIj5eN7ceiuy7PoTArkSff3surHx/AMORiUwjRv4wUNycau/D59fM+bt/hZn73ShlbKk6MUDIhRCSJhMbnChEQ8nNcqp0uX5fZMcQQzcorpsXfbHYMU/RbyD711FPcf//9ADQ1NfH1r3+dF154IeTBRPix2zS+9oVCFheN5/X11fz25VLaOr1mxxJChLmM5Kie/aobzt/wqa6550Jqe2X9SMQSQoigU5SeLrKRJC9rGoED0tAzUtktdgJGYEwOMPVbyD733HM8++yzAEyYMIFXX32VJ598MuTBRHiyaCp3X5nDrcumUnqggR//cQtlBxvMjiWECGMZyT3T7PqbXtzQ2g1A6YGGfkdvhRAiHCUqDho9bWbHGJREezQtuozIRjK3Fk3HgVqzY4y4fgvZQCCA2/3pXP/o6GjZ1H6MUxSF5fMmsuquOTjtFv7zuRJ+/1oZze2esz6+pcPLrqoGujz+EU4qhAgHqQlOLJrK0X4aPjW29ryGeLwB9ozR9T5CiHOLhAGnZTlFHNq7xewYg6KpGnokfHHFORVOz6drDL4Z0e8+OllZWfzyl7/klltuAeDll18mMzMz1LlEBJiYGs1Dd8/l75sO8+bGQ2zfV096chQZSVFYLCpdHj8nGrs4dKLnncnUeCf331DIhJTIaoIghBgeTVXJSI7iUO35RykaWruZmOLmRFMXOyrrKcxKHKGEQojIEP7FVpzVgccI4A34sGmypY0YOWNxmLHfQvYnP/kJDz30ENdffz0Wi4VFixbx0EMPjUA0EQmsFo1rF09mQX4qa3cc4+jJdsqrGzEMcNgtxLttfOGiLFLinTy7upJ/e/ITZmYncaKxi7YuL9+4aUbvtEMhxOg1eXwMm3bXohsG6jlm9TS2djMxNZrkeCc7K+v4h+XTzvlYIYQYDlWBgKGjKf1OThy0C63jKCtfR27RxUE/thBnY2AwFkvZfgvZpKQkfvvb345EFhHBUuJd3LIs+7yPmT4xnj+9VUHl0RbSkqKob+ni/97ew/f+YbZcrAoxymWOj2btjmOcaOxkfGLUGfcbhkFDq4eZ2clMSHGzbW8d1cfbyEqLMSGtECIcjYt2cVhtY6IePexjTXI4aPJsI8kxNwjJ+srLm86akrXkGIYsxxMjoqdbdvjPWAi2fgvZ/fv388QTT9Dc3NynG9bvf//7kAYTo09slI1v3DSj9+P1pcd54m8VfFRSw9LidBOTCSFCbfL4noK0+njbWQvZlnYv/oBOQoydwimJqIrCjso6KWSFEL2uv2Ipv/rL63yzoGjYx7psQRH/vXYzN6cFIdhZ5GvxtJZvIbZgfmhOIMRnWDUrfiNgdowR1+98iu985ztERUVx2WWXcfnll/f+EWK4FhWMI2diHC+uraKlQ7bxEWI0S0uMwmZVOXi89az31zV3ApAY48DttJKVFsPeI80jmFAIEe5sFo3ZGUmUeIa/RZdd05jocPB+3VoCIdgu56L8Inb5G4N+XCHOxqpZ0ZFC9gw+n49Vq1bxhS98gRtuuKH3jxDDpSgKd14+HY8vwEsfVpkdRwgRQqqqMCk1moO15yhkm3q6LSbEOICeEdzDJ9oI6LINjxDiU5devJj11SeDcqwvLJ7FrGg3zx57LyjH+yxNUbGMwTWLwhyKokREV+9g67eQnTRpEidPBucFQ4jPG58YxcWz0tlQWsvJpk6z4wghQqinOG3HHzizOK1r7ilkE2N7CtnM8dF4fTrHG+R1QQjxKVVV0NTgFYgFs3JxqsFv+ASn1y0KIUKl3zWyuq5z9dVXk5+fj91u771d1siKYLly/iQ+2FHDmxsP8aWrcgH6rMcWQowOmeOj8W3VqanvYGJq32YtdU1d2KwqUY6eX0uZ43rurz7eJp3NhRAhpSkKfl3HEuyCVuG8ndqFEMPTbyF72WWXcdlll41EFjFGxUfbWVKcxgc7jnHNokyqa9t46p293HFFDvOnJ5sdTwgRJKcbPh083npmIdvcSWKMo7fDZ2qCC4dNo7q2lcVF4wd8jiMn23lh7X7uuy4fl0P2cBRiNAr2m92JVgs1XVtIdMzCpVqD1mnYgYZP92OX/WSFCIl+C9kbbriB2tpa9u7dy+LFizl58iTjxw/8okKIgbhqwSQ+3HmM/3h2B/Ut3disKk+8Xk7GP80hXUZjhBgVUuKcRDksHDzexpLivvfVNXX1ro8FUBWFzHHRVNe2Deoca7cfpexgI9v21nHhjBC1IxVCmCrF7aTKaGGKEhuU4127qJj3Npeyu30dHYFA7yYmWU4HM+MWD7mwTVGd1He3kB6VFJScQoi++p1D8eGHH3Lrrbfyk5/8hIaGBq666iref//9kcgmxpCeUdl06lu6uXzeBH7xzwuJclr4w5u7z7qeTggReZTTxelZOhfXNXeRGGPvc1vmuHOvqT0bXTfYtq8OgC17pLeDEKPVTSuW8WJpNQE9OCOzTouFay+YyZcunsfXL13IyksX8vVLFpBit/H0sXfoDviGdNzi7Gl0VpUHJaMQ4kz9FrKPPfYYzz//PDExMaSkpPDMM8/w6KOPjkQ2McbcsmwqP7t3PrcsyyY+2s4DN87g8Il2nl+zH59filkhRoPM8TEcrevA6/t0mwCfP0Bzm6fPiGzPY6PxB3rW1A7E3iPNtHX6SE+KoqK6ibZO2dZLiNFIU1VuKsrktdrqkJ1DURTmzcnnngvn8Jdj7+Pzbx/0MVJsUdTr3SFIJ4SAARSyuq6TkpLS+3Fubu6Ap1j89re/ZcWKFaxYsYJHHnnkjPvff/99rrvuOq699lruv/9+WlpaBhFdjDYWTWV8YlTvxwsL01hanMb7247y3f/ZyJrtR6UJlBARLnNcNLphcLTu0+K0sc0D9Owh+/nHAgOeXvzJ3pPYLCp3XTEd3fh0dFYIMfrkzJ5FbVtXyM+T6HTw4GWLePXk4PeuDdZaWyH64/F7xmRTsX4LWafTSU1NTe8P4yeffNKne/G5bNiwgXXr1vHKK6/w6quvUl5eznvvfbpPV3t7Ow899BCPP/44r7/+OtOnT+exxx4bxlMRo9Gdl0/nm7cWkxTr4Ol397G54oTZkYQQwzDpVHF66DP7yTa29IxYfH5ENjnOictuOetU5M/TdYNte+sompLI1PRYUuOdbK2Q6cVCjGbB3IbnfGyahjrKt9JRFNANmf0WqTaWbSZx8iSzY4y4fgvZb37zm3zpS1/i8OHD3HLLLTzwwAN861vf6vfAycnJfPe738Vms2G1WpkyZQo1NTW99/t8Ph566CFSU1MBmD59OsePHx/GUxGjkaIo5Gcm8OAds0iJd7J2+zGzIwkhhiExxoHbae0zytrQenpEtu+bpIqikDk+moMDGJGtPNpMa4eXOTkpKIrC3NwU9hxuoqVDphcLIcwTKeWvDQu+Ia4FFuYK6AH8hg+b1dH/g0eZfrsWz5o1i+eff54dO3ag6zozZswgISGh3wNnZ2f3/r26upq33nqLv/71r723xcfHc+mllwLQ3d3N448/zp133jmU5yDGAFVRWFqczvNr93O0rl32lRQiQimKwqRUN4c+U5w2tvaMyMZHn/lLOHNcDO9sOUyXx4/Tfu5fWVsqTmK1qBRNSQRgXk4qb244xCd7TnLJ7IwgPwshhBiYSFkQZVes+AI+7Jb+Z12K8LK+dAOJ1kSzY5jinFcFW7du7fOxy+UCoKqqiqqqKubOnTugE1RWVvKVr3yFBx98kMzMzDPub2tr4/777ycnJ4cbbrhhENEhMdH8YiY5Obr/B4WRSM577dKpvPLxATbvqWNmXvhuARXJX+NIEGl5gyGYr3Xh8PXLzUrilQ/2ExfvwmrRaPP4iY+2kzb+zK00Ll0wibc3H+LldQf5xq2zznq8v60/yNodx1g2ZwIT0uMBSEpyk5Uey5odx7jpsuloWr8TkM4rHL5u5yLZhkayiZEQKSOyFkXFH/CbHUMMktfvxW/4cWalmh3FFOcsZH/6058C0NXVRU1NDdnZ2Wiaxr59+5gyZQqvvfZavwfftm0bK1eu5Pvf/z4rVqw44/6TJ0/y5S9/mQULFvD9739/0OEbGtrRg9R6fSiSk6OpqxvcHodmGg1550xPZvXWw6yYPwGHrd8JBSNuNHyNw1l/eVVVCYs3uIItWK914fLvnRJjJ6Ab7Nhdy6TUaD7ZfYLcyQlnzRbnsLBiYSZvbKgmOy2Gebl9f1m/tekQL35QRfHUJG5ZmtXnGFfOm8jvXinlzY/2s6hg6G9+hcvX7Wwk29BEerbR+lonzGNRNAJ6oP8HirCytfwTEiz9z5Qdrc5ZCbzxxhsAfOMb3+CRRx5h1qyed8LLy8v5/e9/3++Bjx8/zgMPPMCvf/1rFi5ceMb9gUCA++67jyuvvJL7779/qPnFGHPxzAw2lp/gzQ2HuKBwHLFRdo43dHDkZDtVNS1UHWulo9vHhBQ3k8fHsHzuBKJdNrNjCyE+49OGT210e/y0dHi5aOa5p/9ec0Em5dWNPPn2XiaPjyE5zolhGLzy8UHe3FDNgrxUvrQiF8vnRl1nTktiQoqbNzYcYn5eKpo6vFFZIYQYrSxodOoyIhtpuvRuErMnmx3DNP0OaR08eLC3iAXIz8/n0KFD/R74iSeewOPx8PDDD/feduutt7JmzRpWrlxJbW0tu3fvJhAI8M477wBQUFDAz372s6E8DzFGTEmPYVpGLG9tOsRbm/p+H7qdVqamx+J2WTlyop2/bzrMtr11fPOWYhJjx94CeCHCVVKsgyiHheraNqprW7HbNObmpdLWcvatNCyayj9fk8dDf9rKj/+4hesXT6a5w8vbmw9zYdF4/vGKHNSzdC9VFYVrL5jM714pZcvukywsGBfqpyaEEBFp/ITx1B4+DgVjc4pqpFIiZvJ6aPRbyDocDl5++WWuu+46DMPghRdeICYmpt8Dr1q1ilWrVp1x+2233QZAYWEhe/bsGUJkMZYpisK3bpvJsboOjta109LhZXyiiwnJbhJjHX32bNt3pJnfvLiLnz+9jbuvymFiSjTRLqvs6yaEyRRFYWJqNAdqWmhq8zAzOwmHzcL5JlOmxLt46O65/OW9Sv66Zj8AF89K547Lpp1377yZ05LISHbz+oZq5uWlyKisEEKchaqo6BHTmkqIHv0Wsj//+c/51re+xapVq3q2QsnP51e/+tVIZBPirCyayqRx0b3TE89l2oQ4vnfHLH71/E7+87kSABJi7PzrzcWkJUWNRFQhxDlkjovm75sPAzA/d2AjACnxLr5xUxE7K+tpbPOwbFZ6v29MqYrCdYt7RmU3lZ/ggsLwbRQnhFm6u7s5dOgQ06ZNw+Px4HDILKaxRpNCNuIYhvx79VvITpkyhVdeeYXm5mYURSE29syukkKEq4wUN/92z3yqjrVS29jJWxureezlUn541xxcjvBrFiXEWHH6jagoh4X8yQNvVKEoCjOnJQ/qXLOmJTEpNZrX1h1kfl7qGWtphRjLdu7cyde+9jUsFgt//etfue666/jv//7vPsvKxNBFSqmhqRoBQzc7hhiENk8bdnVsb5fU72/z/fv3873vfY/vfe97PPjgg9x3333cd999I5FNiKCIclgpmpLI8rkT+Or1BdQ3d/GHN8rR5Z0sIUxzupCdk5MS8sJSURRuuCiL+pZu1u06HtJzCRFpHnnkEf785z8TFxfHuHHjeOSRR6RfSRBFymImi6IRQArZSFKydxfRk8b2LKN+rx6+853vEBUVxWWXXcbll1/e+0eISDR9Yjy3XpJNSVUDv3+1jMbWbrMjCTEmpcQ5ueOyaVyzKHNEzleYlcDUjFje2FCN1ydbTAhxWnd3N1OnTu39eMmSJQQC8jMy1lhlRDbieHQvdtvYXgbQ79xKn8931qZNQkSqZbPS6fT4eXNDNSVVDVy3eDJXLZhkdiwhxhRFUbhk9rm33AnF+b5wYRaPPLuDH/9pK1fOn8jC/HFYLTLNWIxtFouFlpaW3vXmBw4cMDnR6BIpc78sqoYfeQMjkkTKaH8o9fsbfNKkSZw8eXIksggxIhRF4ZpFmfzs3vkUTE7gxQ+qKK9uNDuWECLEcibF87UvFOKwavz573v42ZOf0Nkt+yaKse2rX/0q//AP/0BtbS3/+q//ym233cZXv/pVs2OJEWZXrfgMKWQjhdfvRVM0s2OYrt8RWV3Xufrqq8nPz8du/3RB8e9///uQBhMi1JJindx3XT4/+MNmnn2/kofunitNYIQY5WZNS2ZmdhLb9tbxP6+X89uXd/EvNxfLyKwYsy6++GKysrJYv349uq5z//3395lqLMYGi2qREdkI0uZpw6GO7WnFMIBC9rLLLuOyyy4biSxCjDirReO2S7J57OVS1u44xmVzJpgdSQgRYoqiMCcnBV9A5w9v7OYPb+7mvmvzUVWZqCXGjpqamt6/W61Wli5d2ue+tLQ0E1INTiT0bFQU0A3jvPtdhwNVUSLi6yl67K2qxJGRaHYM0/VbyN5www3U1tayd+9eFi9ezMmTJxk/fmx3yBKjS3F2EvmZ8bz68UFmZSeTGCvvcAkxFizMH0drh5fn1uznz1aNf7oqZ9gXm5FwwSoEwIoVK1AUBcMw6O7uJioqCk3TaG1tJTExkXXr1pkdsV+R8KNmR8On+7FrVrOjiFHEwEBVZCZRv4Xshx9+yI9//GNUVeWvf/0rV111Ff/xH//BpZdeOhL5hAg5RVG47dJp/PTPW/nB/27iyvmTuGLeROw2WXsgxGh3+byJdHn8vL6+GotF5c7l03qb3nzWgZpW1m4/yqET7TS0dpEzMZ75eamMS3DR5fFT29jJtn117DnURGFWIv90ZQ7RLpsJz0iIgdmxYwcAP/rRj5g/fz4rVqwAYPXq1bz//vv9fv5vfvMb3nnnHRRF4cYbb+Tuu+9mx44d/OIXv6Cjo4Pp06fz8MMPY7ON7Z8Dh6LhCXilkBVBpaBgSJfp/ps9PfbYYzz//PPExMSQkpLCM888w6OPPjoS2YQYMWlJUfz0nvkUTUnitXUH+dffreMPb+ym7EADhsy1EWJUu27xZK5cMJEPdhzjib9V4PH2XSfW3Obhv14oYef+euKibcyZnsLB4638/rVyHvrTVv79mR3839t7qW3oZF5uKqUHGnjoT1vZc6jJpGckxMCVlZX1FrEAl1xyCXv27Dnv52zZsoVNmzbx+uuv89JLL/HUU0+xZ88evv71r/PTn/6Uv/3tbwC8+OKLIc0eCRxoeAI+s2OIUaankJXr0wE1e0pJSen9ODc396zvVgsR6VLinNx/fQFVx1r4sKSG7Xvr2Fhey22XZsvaWSFGMUVRuHHJFGwWjdfXHeRATStfuTafSeOiAfj9y7vo9vr58T/NJT3ZDYCuG1Qebaa9y4fLbiHWbWd8ogtFUbhszgR+/1oZ//HsDpbNyuCLS7Nw2Pr9dSuEKXRdZ/PmzcyfPx+Ajz76qN/rvHnz5vHkk09isVg4ceIEgUCAiooKiouLycnJAWDVqlWyHy3gVDS8unRHF8GlEDlbO4VSv79ZnU4nNTU1vS9qn3zySZ/uxUKMNlPSY5mSHstdl0/nv18t47nV+0lLiiI/M8HsaEKIEFEUhesWT2bahDj+8EY5/+//PmFhQSoTkt2s31XDF5dk9RaxAKqqMH1i/FmPNWlcND++ey4vf3iA1duOsnN/PctmpzN3egpJcc6RekpCDMiqVav4xje+gdVqRdd7pir+9re/7ffzrFYrjz76KH/84x+54oorqKurw+Vy8cADD3D48GHmzJnDd7/73VDHD3sORaNRlxFZEQpSyvZbyH7rW9/iS1/6EnV1ddxyyy1UV1fz2GOPjUQ2IUxl0VTuuTqPnz+1jd+/Wsb/78YZZKXFjEhnU59f52RTJ4mxDhnJEWIE5U6K5ydfmsebGw7xwc5jrC+tZdrEOK6YP3FQx3HYLNx+2TTm5qbw3Jr9vLC2ihfWVnHRjDT+8YrpMrNJhI05c+awdu1a9u3bh6IoTJs2DYtlYL93Vq5cyb333st9991HRkYG69at47nnniMtLY0f/OAHPP7443z9618fcBarRcWwDrw/hQLYBtjPYqCPO+e5FLANIttpaVMm4K86hHVWxrDOD2ANce+OnucY2muOUB8/1MIlv6IoWKzakL4nQv19FEwW6/lXwfb7rzFz5kyef/55duzYga7rzJgxg4QEGZkSY4PTbuHrNxbxb//3CT9/ehtOu4XJ46NJiHEQ57Zjt6poqorVouKwaaQktdHc0oXfr+MP6Ph1A58vQHu3j/YuPzaLSrTLSiBgcORkO8cbO3HYNGJcNhQFOrr9tHZ4OdnUhW4YOO0aFxSO59I5E0iRkRwhRkS0y8Ztl2Zz5YKJrNt1nKsunII6xCmS2RlxrLprDiebu3h70yE+2FnD9IlxLMwfF+TUQgzNn/70pz4fb968GYC77777nJ9TVVWF1+slNzcXp9PJ8uXL+fd//3cuuOACJkzoWYpz5ZVX8vTTTw8qi8+vY/gG/rNmAF5v/4+32bQBPe685zLAO4hsp6m6gsfw4xvm+a02bdjHGIhurzdk3XBtVgteX+ROsw6r/IaCz+PHZxnc98RIfR8Fi993/oZWA3pbYceOHXz88cdomobL5epdRyHEWJAS5+Tf7plPeXUj+440c6i2jWP1DbS2ewc8qUNVFFwOC15/AK9PRwFSElykJbrw+gLUt3QDBi6HlfSkKObkpJAa76T8YCNrtx/j413HWXXn7D5TG4UQoRXntnP1okySE1zU1bUN61gpcU7uWD6No3UdPP3uPqZlxMlWXyIs7Nu3r/fvXq+Xbdu29Xudd/ToUR599FGeffZZoKfT8U9/+lP+8z//k+PHjzN+/HjWrl1Lfn5+SLNHgkiaexGl2OnydhFljzI7iuhHVtZkDhw4CFNjzY5iqn4L2ccee4y33nqLK664Al3X+dGPfsQdd9zBXXfdNRL5hAgLMVE2FuaP6zOKousGAV0noBt4fTpdXj9Ol53W1i6smopFU7FoSs9ord3Su7fk6Y6oA9ne54LC8Xzhoiz+7alt/PblUn74j3NwOaSFvxCRSFNV7rkmjx//cQtP/G03/3LzDKyWyJniJUanX/ziF30+bmxs5Dvf+c55P2fJkiWUlJRw/fXXo2kay5cv5/rrrycuLo777rsPj8dDbm4uDz74YCijRwRFUYiUTVLcqoNOb+egC9nG0jKicrOxW6SHzkixW2z4jTAZHTZRv4Xs66+/zssvv0x0dE/3xi996UvceuutUsiKMU9VFVRVwwo4bD3FbnJyNHV1578wHez+tEmnuin/x7M7+MMbu/n6jUW9RbEQIrKkxDm549Jp/PGtCn7650+45+q83u7IQoSDhIQEjh071u/jVq5cycqVK/vctnTpUpYuXRqiZJHJqqj4ImS/z9wp0/ikshSKkgf1eRu6K1nkSZNCdgTZLXZ8hjQR67eQjYuLIyrq03dmYmJicLlcIQ0lhOhr2oQ4br0km7+8t49P9pxkXm6q2ZGEEEO0uGg8MVE2/vT3Cv7tyU+4cEYaS4vTmJgqBa0YeZ9dI2sYBmVlZSQmJpqYaHRJsbmpM7rIMjvIACQ5YmkItJGqB9DUgb3pbhgGUaod7WAtFEgPnZFit9gJyIhs/4VsQUEB999/P7fccguapvH666+TlpbGu+++C8Dy5ctDHlIIARfPTOfljw5QcahJClkhIlzRlET+35fn8+IH+1m36zgf7DhG7qR4vnp9AW6nLB8QI+eza2QBxo8fL1OCg8iiquhG5GyTMtMxmR0l68kvXnxG0ydrxRF2eg6RW7QIVe25z6ioZqIlkXa9m7G9WlOYod9Cdv/+/QD88Y9/7HP7U089haIoUsgKMUJUVWFqeiyVR1vMjiKECAK308o/XZnLjUunsm7XcV7+qIpfPruDf721mBiXzex4Yoy45JJLuPTSS/vc9uqrr3L99debE2gUMugZuYyEbbfycnIIVAQoLVnfU7AqKoZh0FheTl2glWnWcRws3cqUGT0Nwap8J7g8dxF/373e5ORjkRIx31eh0m8h+9RTT41EDiHEAEybEMtLHzbQ3uWTURshRgm308oV8yeSkRzFYy+X8h/P7GDljUUky5ZbIoTWrFmD3+/nkUcewTAMjFOjhn6/n1//+tdSyAZRjiWOhvJNJBUsNDvKgBTm5qNWqOzetQXo2Xkhw5LAsoKewavu8k+o2LmeWNVFjOrEbXXiJzDmi6qRpipSyPZbyNbV1fGDH/yAQ4cO8cwzz/Cd73yHhx9+mOTkwS0EF0IMX3ZGHAD7j7ZQnJ1kbhghRFAVZCXyjRuLePTlUn74v5u5elEmV8yfiEULzZ6OYmyrqKhg06ZNNDQ08OSTT/bebrFY+PKXv2xistHnorwi/r9dH3KR2UEGIT83l3xyz3rfBflz2L2ngsZAB4vz5wCQZomna/c+XPnTRzLmmKYqGroe6J3mPRb1W8j+5Cc/4dJLL+Xpp58mJiaGnJwcfvCDH/D444+PRD4hxGdMHh+NRVOoPNoshawQo1BuZgI/u2c+z66u5OWPDrBzfz3furUYh21A274LMWAPPPAADzzwAH/5y1+44447zI4zqimKQoJip9nTTpx9dOwHn5fTt8hdnDeHF3a9Tx5SyI4UDY2AHsDC2J2h128Jf+zYMW6++WZUVcVqtfLtb3+b48ePj0Q2IcTnWC0ameNiZJ2sEKNYQoyDB24o5L7r8jl4vJX/79Uy/IHI2L5DRI7XXnsNAI/Hw5/+9Kcz/kSCke6hZAzjhFfmFnNkz+YgpgkvmqKiMXanuJpBUzQCgbG9BU+/b/EqioKuf/oLtL29vc/HQoiRlZ0Ry7tbj+D1BbBZB7cnrRAicszLTaXbG+DPf9/D//19D3evyJU9pEXQHDp0CIDKykqTkwzdSP44uC0anQEfUZahNWKLszppHeX7floUDX/Aj0WTGSQjwaJoBGraYMrY3bqt3++05cuX861vfYu2tjb++te/8sILL3DllVeORDYhxFlkZ8Tx982Hqa5tY9qEOLPjCCFC6KIZaTS1eXht3UGa2j3cc3UecW672bHEKLBy5Urg3F2LRV8JVgvN/u4hF7IAGgqBQezRGmncqoMObwexTtmIZyRMycpib1XkvhEVDP0Wsvfddx+vvvoquq6zYcMGbrnlFm666aaRyCaEOIupGT2/ICqPNkshK8QYcO0FmcRH23nmvX386IktLJ2ZTnKcg4QYB+ndfjxdXmJcNhw2rU/3St0waO/04fUFAPAFdNo6fbR2eFEUsFpUJqREEx8thfFYNBq6Fo/k1OJ4ixUjUAHMH/IxCizxnCjfRFrhBcELFkbiVBcd+49AoRSyI8FuseM3/GbHMNWAxv6vv/76iHhBE2IscDutpCVFyTpZIcYIRVG4aEYaU9Nj+eNbFfxtQzVnu363WVVcdkvPkqBTRWxAP/+Vvttp5eGvLMDlCE6zkBNNnfzhjd0AXLloMrkZsbgcMs0wHI2GrsUjObV4/LSJVFYcJGMYx1iYX8hjJWvJ2r2L7ryioGULF7Nzi3hh12oSzA4yRjisDvyjfLp6f87522XZsmXn3Zdo9erVIQkkhOjfxBS3FLJCjDFpSVGsumsO/oBOY5uHptZubA4bNSdaae300tLupcvjxwAUICbKRmyUrbfjsaYpxLhsRLt6ita65i5+90oZ7249wvUXZg073/6jLTz60i4AYqNs/O7FEmxWlQV5qSydmU7muJhhn0MEz2joWnzPvGnQNDLnSnE52eD1Dvs4/1x4Ic+UbcKxaw25hUvRlNGzdYqqqNLuaQRpqoY+0h3Pwsw5C9lHH30UgGeeeQar1cott9yCpmm8/PLL+Hxju/oXwmwp8U427z6Bz69jtYyeX4JCiP5ZNJWUOCcpcU6Sk6OpS4ka0nEmpkYzZ3oy7249wiWzM4h2DX3t38HjrTzy7A4SY+x84+YZpMQ5ae4O8OraSjaVn+CjkuNMSYvhkjkZzJmeInvjhpGbbrqJ9957j46ODgACgQCHDx/mX/7lX0xO1j+n1YL3rPMTgi/GZqXVHxj2ceyqhbuLFrNr9x7WlbyD5TMbiGiKQpLiwDE1n1RnfEQWuVGqnU5vJy6by+woYgw4ZyFbUFAA9HSze+GFF3pv/973vseNN94Y+mRCiHNKjXdh0DOikpY0tItYIYS4bvFktu2t4+3Nh7np4qlDPs4rHx/AYdP4/p2zewviaRPjufuqXG5ZNpX1pbWs3n6Ux1/fzd+SD/GtW2cSGzX0wlkEz7/8y79w5MgR6urqyMvLo6SkhHnz5pkdK+ycb5biUBTl5VBETp/bAoZOraedXfsr2BrowEOARdZUrPmzg3ruUHIpdrp9HilkxYjod+FKa2srjY2NJCT0zHg/ceIE7e3tIQ8mhDi3lAQn0LMeTQpZIcRQpSe7mZ+fyuptRwnoBlaLytycFCamDnw7h4PHWyk70MgXl2SddVTX5bBy2dwJXDIngx376vjDm7t55JntfOe2mcRKB2bTVVRU8O677/LQQw9x9913YxgGP/nJT8yONSZpikq6I4b0gp7CNWDovFK2lfqdbzM5dw5qQMWiatg1Kw7NhlUNv/XnVkWjW5eZmyNFUcAwdJQIHL0Phn5/Av7xH/+Ra665hsWLF2MYBuvXr+fb3/72SGQTQpxDanzPO50nm7pMTiKEiHTXL57Modo2PtxZg9cXYF3pcf79KwsHvE/1G+uriXJYWDbr/G1wVEVh9vQU3E4rv36hhEee3cGNS6ZQOCVRphqbKCUlBYvFQmZmJvv27ePKK6+kq0t+t4QDTVG5sXA+bX4Pm/fuxmfodBk6dQToNPy0GT4mqW4mFi4Om2nI6RMzOHboKBSkmB1lTLArdjzebhz2sTkC3m8he/vttzNr1iw2btyIoijcc889TJs2bSSyCSHOwe20EuWwcEIKWSHEMKXEu/jZvQsA2Hu4iX9/Zgcf7Kxh+dwJ/X7u4RNt7Nxfz/WLJ+O0D2x0aPrEeP7lphn8/rVyHnu5FLfTypLiNK6YP5GoIHVPFgPncrl44403yMnJ4fnnnycrK4vm5mazY4nPiLbYuap4Tu9WWp/1ye5y1pe8gxUFBYVo1UpW3gU4LebMdnBqNjxjfEuYkZSXnUfF/gocUzPNjmKKAf3WycnJIScnp/8HCiFGTEq8ixONnWbHEEKMItMnxpM7KZ63NlazZEYadtu5R2UbW7t58p29OO0al84Z3KYk0yfG8x/3L6L8YCPrdh3nrY2HWLP9GFctmMgV8yeiqeExujQW/OhHP+L555/n29/+Ni+++CJ33nknX//6182O1a+ArvPZ706frlPR0ExRcug2f3FbNNr9XtyW8FnfPScvnzmn/q4bBg3eTl4oW0Om5iajYHHQ1/b2x2114h3jW8KMpDhnLJ2BzjG75ZH8phAiQqUmOGVqsRAi6K5bPJnWTh9rdxw752O27jnJj/+4hWN1HfzjFTlD2ofWoqnMmJrEA18o5KEvzWP6hDhe+vAA//lcCa2dw9/mRAxMZmYm3/nOd1AUhf/6r/9iy5Yt/PrXvzY7Vr+++/RbvFxW/ekNBrxbfYwfrd9GR4h210i326n1tIXk2MGgKgrJ9ijun7GUWMXGmpK3aPeN7HWC2+qkwN7/bA4RHIqiYFWseA7Wmx3FFFLIChGhUuNdNLZ24wvCdgBCCHHatAlx5GfG87eN1by5oZqqmpbe15nG1m4ee2kX//1qGSnxLh66ey7zclOHfc4JKW5W3ljEl67KpfJoC//vz1tZs/0oh0+0oetje59EMxgRsDdlbXM7/71hD78vqaDL78eqqTwwM5dWj5fDrR0hOWdewVRqukpDcuxguyC/iH8uuJDy3R+xfufbuHZHRm4xeBcULeKEtzYifm6DLfzanQkhBiQl3okBnGzuJl06FwshguiWS7L5wxu7efmjA/BRT2fMpFgHrR0+DMPgpqVTuGzuhKA3aVpcNJ6MlCj+5/XdPP3uPgDGJ7r41q0ziY+WDscjZaSnow7FlNQE7p+VyYaKk/x8007+uSiHCTFuomxWato7yE2MC/o5M6KjONrtCfpxQ8WlWbmn6CK6Aj6eLNvAIgrNjiRCwKJaSLQmUbe/ipTsoW+jFonOWcjOnDnzrC9khmGgKArbt28PaTAhxPl92rm4UwpZIURQZSS7+cmX5tHa4WXvkWaO1bVT29iJRVO5fvFkkuKcITt35rgYfn7vfOpbutlzqIlnV1f2bNdz+ywpZkWvaKeD2rYuvj4rn/8rr+TX28s42NxGXlI8xSmJITtvnjuK3a3ryYu5IGTnCDanZsWhaLR6O4mR/V1HpdkFM/mo5GMa9leTMGVSRLwZFQznLGTffPPNkcwhhBik1NN7yTbKOlkhRGjERNmYm5PC3JyR3UpDURSS45wkxzkZnxjFr57fySPPbOf7d84+6161YvDON2DR3d1tQqLByUpNoLWmZx33XXlTKW9IpM3rIzchjjhH6N7wuGpRMU99uJX4zs2Md80P2XmC7Ya8Obyyez2zZlxmdhQRIhfNuJBtpds5tLeM9KnTsYZRU7JQOWchm56e3vv33bt309nZiWEYBAIBDh8+zM033zwiAYUQZxfl6NmC52STdC4WQoxeUzNi+ZebZvDwX7bz8a7jXLVgktmRRoVIH7CYO3UCBz2tQM8bHwVJI9e39dbFs3n8g83cEEGDmzEWBx5DH/HzenweunxdxLniRvzcY9Hswlm0dreya28ZSdmTzY4Tcv2ukV21ahWrV6+mu7ub1NRUDh8+zOzZs6WQFSIMpCa4ZC9ZIcSoN21CHFPSY9hYXiuFbJB8dsAiEkXZe3ZOhZ5R5A5fT8Mnu3buLaOCxaqp+CKwsY4Zk007vB3sOLKDgrRC0hPGmZBg7IlxxNCth/+simDot0vDhg0bWL16NcuXL+fxxx/nz3/+Mw6HYySyCSH6kRrvlBFZIcSYsCBvHMfqOjhyst3sKCIMxLtdLJ6cysuV1Ty8pYSvvr+en23ayb3vfsyB5taQnz9a02jxRVaxMJKlt9fvpb69ntbuVrp8XWw4sIHjLbUjmGBsUxWFgD76d7Xot5BNTk7G5XKRlZXFvn37mDdvHk1NTSORTQjRj5R4F42tHtmCRwgx6s3NTUFVFDaVy8Ww6PFSaTVvHzxKrN1GcUoiAcPgywXTeXjLrpDtJXvaFxcW89bJD0N6jmBTgECIpxdXt9XyVsdOPqz8iG2Ht3O85TiFaYVcnrec9Li0MblFjBkW5i/gWGUFuj7y08lHUr+FrNVqZevWrUyZMoWPPvqItrY2KWSFCBOpp7fgkenFQohRLsZloyArgU27T6DLxbAAnt19jP/8wjzuL87jm3MK6fYHmDMuiWiblZOdoR0tjXPYsasq/ggqFDK0KE50hfYa3qHZmGBJZH7mPC7PW87CrIVMSpyE61S35LHSTddsTquTcbbxHKusGNVvHvRbyH7rW9/ir3/9K0uWLKGiooIFCxZw7bXXjkQ2IUQ/xif2bLtzvEGmFwshRr8F+ak0tXnYd7jZ7CgiDGQmx/PO3qOU1zfxwt4DWFSFNYdrAOjy+0N+/mkuF42eT0J+nmCZmT2d9v2lIT3HOFcCU62pxDhjANBPjQCP5mIqXBXlF5BsTeZE5X6zo4RMv82eiouLKS4uBuCFF16gtbWVmJiYUOcSQgzA+EQXCnCsvoM5ZocRQogQm5mdjN2msWn3CXImxZsdR5js5kUz+NtHm6nRu1AVhdtzp5LosJOXGE9GdOj3V184O4/H1m7mzgwdTel3bMh0qbYoDgXamaz7sar9lgBDts93nMzdfvS8SaiK2lPMGlLMmqG4YAbrStZzdO9u3JqbxJzR1SzvnN/FP/vZz/jBD37Afffdd9b7f//734cslBBiYGxWjeQ4J8fqO8yOIoQQIWe3akzLiKP6eOib+YjwZhgG87InMM/h44UN1RxsaWN6fCwOizZiU8+jbVa+mJrEq8dX88W08N+fVVEUrrVP5PWSt7nSnoE/rzgk51k8bTat1XU0A13eLnbXVtDS1YJuBMhJzSEjPiMk5xVnt3jGBRiGwbayHRzZXYFuGLg1N7FTMiJ+qvc5C9mFCxcCcPnll49YGCHE4KUlRVEjhawQYoxIS3Kx53ATum6gqpF9ESaGTlEU/AEdCzB+vJPn9x7ArmlMjY/hskkjt7XQ9OIc6reU8mbtaq5KXYYa5oXB1NxsVupT+HPZOiaXbiClcFHQzxFtdfKJ7zhNJ5rxB3x4/B4K0vJx2Oys3fOhFLImUBSFOYWzsFkteLw+tpZ9wtF9u0mbOh1NC93ofKidcx7EsmXLADh06BA33HBDnz/l5eUjFlAIcX7pyVGcaOzEH4ichhNCCDFUaYlR+Pw69S3S5G6ss2gqTMhicoKbNLeLewqn09Tt4T8/KcU3gk2YLphXyIK4GN4+uWbEzjkcFlXlnqKLOKp3UN/dEvTjK4pClaWRmU1ujjYfY1HWQlKiU0hyJxLrjKXdI1tomUlRFOYVzuXCgsUcrawwO86wnLMEf/TRR2ltbeWtt96ivf3Tbzifz8eaNWtYtWrViAQUQpxfWlIUAd3gRFMX6UmhXxMkhBBmSjv1OldT30lKvMvkNCKYBruGMqDr7DhYQ+WBWvY3tfI/uyrY3dDMnsZm1tec4KVrLw1R0jMVzcrlg/c3jtj5gmHO5GnU76+AggVBPa6qqPj1AF7VT0p0CruOleKw2GnqasJtj8Km2YJ6PjE0DqsDm2pD1wOoqmZ2nCE5ZyE7Y8YMSktLUVWVuLi43ts1TeOxxx4biWxCiAFI772o65BCVggx6p3u1l7T0EFxdpLJaUQwdft8OAbxeFVR+L8PPiHe8HOys5skp4Obp2eR4LATa5diqT8JVieVuoeEEBz7svTZbDxYQrMGbrubTm8n42NTyYibgBahRdNo5FSddHk6iHJGZiPfcxayS5YsYcmSJQB87WtfG7FAQojBGZfgQlHgWF07c3NSzI4jhBAh5XJYiI+2S2+AUaij24tjEMv1FEXhP+5cgePEEQrHx3Nl8gRsmnlFUoxFo83vIdpiNy3DYMRbnbQY3pAce1psBoqji8bJ8RyoO4DL5iI7dSpenx/DMCK+ydBokTctl9K9ZURlR2Yh22+v8Lfffnskcgghhuh052K5qBNCjBVpiS55zRuFYl2DGY/t4bBZAbhuXKapRSxAt65jD+G2NsGmKQoBQtfh2aFacVqd7K+roqGjgY1Vm2jqbJYiNow4rU58Ruj3XA6Vfn/aJk+ezKpVq5gzZw4u16drUZYvX97vwX/729/y97//HegZ4f3Od77T5/6KigpWrVpFe3s7c+bM4Sc/+QkWS+S8AAgRLtKTomQLHiHEmDE+KYqPS46jG0bYd4kVA2e1WAjRAOGI8OkGtgiaNhswDDRC9/MzfuoE2HuEiQkTSIxKJCs5k00HttDh6SA7JZu0uLSQnVsMjEW1EDACZscYsn6rxubmZpqbmzl06FDvbYqi9FvIbtiwgXXr1vHKK6+gKAr33HMP7733Hpdd9uk+W9/+9rf5t3/7N4qLi/n+97/P888/z+233z6MpyPE2JSWFMWuqoaerQi0Myda7DvSTF1zF4sKxsk7oUKIiJeWFIXHF6CxtZukWKfZcYSISAH0kBWyhmFgOVXU2zQbe07s5XDTYU621WFRLNR31EshGwYi/Zqw30L2qaeeGtKBk5OT+e53v4vN1rPYfsqUKdTU1PTef+zYMbq7uykuLgbgC1/4Ao8++qgUskIMQW/n4sZO0pPdfe7zeAP8f6+W0drhpby6kX+6IgebNXLeMRZCiM9LS/y0c7EUsiIc6IYRwkm6oeFQLTSFaAhcURSaPG083rIGZ6uNVrpZOu0iZk+cjdMqP7PhxEDH5/ditUReg7R+C9nq6mqefvppOjs7MQwDXdc5dOgQf/3rX8/7ednZ2X2O8dZbb/X5nJMnT5KcnNz7cXJyMidOnBjKcxBizDvdrfhYfccZhey7nxyhtcPL4qLxrNt1nNqGTr51azEuh9WMqEIIMWxpn+nWXjQl0eQ0wmxv7TnCpQkZpmY43NrOBEdkNHk6TVNUMjU33eWf4MifE/Tjx9uj+deim2g/1MBOzyEykyb1NnsyMFCVflv1iBGwpOgi1u76gAnT8iNuhLbfQvab3/wmBQUF7NixgxUrVrB27Vry8/MHfILKykq+8pWv8OCDD5KZmdl7+9n2ChvsFy8x0d3/g0IsOTna7AiDInlDz4zMsXEuVAWaOn19zt/a4eWdLYeZnz+OB/9xHkvKjvPzP29hzc7j3H1Nvml5hyPS8gZDMF/rwvnrJ9mGZixmSwbiou00dXiHfI6x+HUbraoa2rg0FHvIDMLO0krSnDPMDTEEV+XP5ne7PuTiEB0/3h5NbLYbKuF0Jw9FUVBCuDZXDI5Vs5JoTaJufxUp2VPNjjMo/RayHR0d/OQnP+FnP/sZF110EXfddRd33333gA6+bds2Vq5cyfe//31WrFjR577U1FTq6+t7P66rqyMlZXBbhzQ0tKPr5k3kSE6Opq6uzbTzD5bkDT0zM2eOj2H1lsMsm5GG1dLzLudfV1fS5fFz9YKJ1NW1MSXVzcL8cbyx7gCL8lKYPiU5or7G/X19VVUJize4gi1Yr3Xh/DMl2YZmLGcbF+/kwNHmIZ0j0r9uo/W1bqjOMjYy4o50e5gTH3lbmGiKSoJio93XhTtEU35PN2Rzl9fSOE32fg5HswtmsnbnBxE3xbjfMf24uDgAJk2aRGVlJTExMei63u+Bjx8/zgMPPMAvf/nLM4pYgPT0dOx2O9u2bQPg1Vdf5aKLLhpkfCHEaddfOJn6lm7W7jgGwKHaNtZsP8aignF9phtff+FkDMPgtXUHzYoqhBDDlpYURU1Dx1lneAlhhkjtoN1lBHCFeO/bCdMyQ3p8MXwxllg6qiNrmWe/I7KTJk3iZz/7GTfccAM/+MEP6OzsxOvtf2H4E088gcfj4eGHH+697dZbb2XNmjWsXLmSwsJCfvnLX7Jq1So6OjrIy8vjrrvuGt6zEWIMK5icSF5mPG+sP0hhVgKPvrSL2CgrNy3tO00kKdbJxTMzeH/bEW6tbcWpReYvXiHE2JaeFEWXJ0Bdcxcp8a7+P0EE1W9+8xveeecdFEXhxhtv5O677+Z73/se27Ztw+nsGdn72te+1me3ChGeZL2qACjOK+LDXR8TZ3aQQei3kH3ooYf46KOPyMvL46abbmL9+vX89Kc/7ffAq1atYtWqVWfcftttt/X+PScnhxdffHGQkYUQ53LT0qn85M9b+cmftwLw/X+YTUzUmVNErl40iY931fD7l0v5/32xEFWVYlYIEVkKs3qaPG3dc5IVCzPNDTPGbNmyhU2bNvH666/j9/u56qqrWLJkCWVlZTz99NODXio2GvgjdGaATw/gpf+ZlsHQFOgAZGpxuNJUDcMYme+FYDnv2y/79u3j448/7t0i5/bbb+d3v/sds2fPHolsQohBmjQumgX5qXh9Ovdenc/E1LM3DIl22bj90mmUVtXzyscHRjilEEIMX1Kck+yMWDaU1cr04hE2b948nnzySSwWCw0NDQQCAex2OzU1Nfzwhz/kmmuu4dFHHx3QUrRgMHtGb3O3B7cl8ra1MwyDP5R+zKW29BE53x5vTf8PEiaLrIGNcxayL730Ev/wD//AH/7wB6699lrWrVs3krmEEEP0T1fk8NDdc5k9Pfm8j1tcNJ7LF0zibxsPsaOyboTSCSFE8CzIH8fxhk4On2g3O8qYY7VaefTRR1mxYgULFy4kEAiwYMECfv7zn/P888/zySefjJlZdxu2VzA/NvIaPT1TupHZliR8eZHXbVmEhqKAHkGjsuecWvzUU0/xxhtvkJqayo4dO/j1r3/N4sWLRzKbEGIIbFbtnCOxn/fP1xeyp7qR/32zgp//cyyxZ5mGLIQQ4WpuTgrPvLePjeW1TBonW9aMtJUrV3Lvvfdy3333sXHjRn73u9/13nfnnXfy6quvcvPNNw/4eFaLimEd/MimAths5/+8/u4fjv1dXcxJuijkzZ5sQ/janMuft69jnOYidtaCoB1zIGzWflc1hrVIzw/nfw521Y5ueLHbo0Yw0blZrOdfu33ef43U1FQAZs6cSVNTU/BSCSHCgs2q8c/X5PHD/93C6+sPcufy6WZHEkKIAXM7rRRNSWRzxQluvniqrPcfIVVVVXi9XnJzc3E6nSxfvpy33nqLuLg4Lr/8cqBn2qrFMriLfp9fx/AFBp3HALzec3+ezaad9/7hUgzw+0M7imWzaniH8LU5l3bdS2HRMnwh/Lp8nopCl8eDpkbeNGzoKQC9Pr/ZMYalv+eQOyWHvVWVWKZOHMFU5+b3nf/n6pxlrvK5d5U0LTK/6YQQ5zc+MYolxWl8uKOG2sZOs+MIIcSgLMgfR0u7l4rD8ob7SDl69CirVq3C6/Xi9XpZvXo1c+fO5ec//zktLS34fD6ee+456Vgc1kb+TZ9Y1UWHp2PEzysGLtYZS5feZXaMARvwW2WfL2yFEKPHtYsns6Gslpc+rOKBGwrNjiOEEAM2Y0oiDpvG1ooT5GcmmB1nTFiyZAklJSVcf/31aJrG8uXL+drXvkZ8fDy33XYbfr+f5cuXc/XVV5sdVZyDpigE9MCIjo7Gai66q45CQd6InVMMTqR1Lj5nIbt3715mzZrV+3F3dzezZs3CMAwURWH79u0jElAIEXqxUTaunD+RV9cdZP+xFqamx5odSQghBsRm1SjMSmTn/gZ0wwj5OkXRY+XKlaxcubLPbXfccQd33HHHiGcJh6bVp6+PI8VkNZqO3Z8QUzB/xM45K7+Al3esRa4wwpuqqPj8XqyW8O+bcs5C9r333hvJHEIIky2fN4EPdh7jybf38qN/moNFk83RhRCRYWZ2Elv3nORATau8ETcGmV0/xlkttPi7ibM6zQ0yCEvzZ/Dfuz7kohE8p8NiI0mLpqpkM5OL5qIqcp0RjhYVLGRd6QbSp+eYHaVf5/wOSk9PP+8fIcTo4rBZuPPy6Ryta+fvmw+bHUcIIQasaEoimqrIVmJjlAIEdPOGZVNtNuq8kdVjQlUUYhQrbb7h57buLsGnD6wJ0sUF88m0JlO2cx0ev2fY5xbBZ7fYsaoWug+cNDtKv+StECFEr5nZyczLTeGN9QepqZeGDEKIyOByWJk2IY6dlfVmRxEmcFo1PIGR6777eenZE/H695h2/qG6IqeYIxWbh32c57oP0Fi+ZcCPn5lbyBcKlrG/bOuwzy1CY3HhBZzwnkDXw3u9rBSyQog+br90GnarxtPv7jU7ihBCDNjM7CSON3RK9/UxyKppeE0sZF1WC11hfsF/NglWJ62Gd1jH0A2deNXGcX1wP3cui53xWhwtZbuHdX4RGqqqMt6extHKCoxwWIR+DlLICiH6iImycfGsdPYeacYTxD3rhBAilIqzkwBkevEYZNNUvCYWkg5NozsCC1lNUYfdKKuuu4UsLYYuY/DXC0sL5nPE34Av4BteCBESRfkFJFuTObYvfItZKWSFEGfIHBeDYcDRunazowghxIAkxTqZmOJmxz6ZXjzW2Cwq3oCJhawlMgvZYOioLGXGlGxgaIXOitwLqSzdQmt3Gx2eDjq9nbR2t9LQ0cCJ1hO0llXQXFZOS9lu2soqqG2t5WTbSera62nqbKLd047H7wnbQivSzSyYQaI1iaP7KtDDcFueAe8jK4QYOyamugE4XNvGlDTpACqEiAxzc1N46cMDHK1rJyPZbXYcMUJUzG1b7LRY6DaxkB4OfYgF6GnH9A6udcSgKAo+3Y9VHVxpEWuLYrptPHWVVQSMnjRWRcOmWIhCY/zEDCyKioFBwNAJGDonDh9Hx8BvBGgzAngMHx5jYM2mPktRQEPFomhY0bAqFqyKhopC54R4LJoFm2bDqllRVRUUg4Cuoypq71ZLuqH3FngKCoZhoJ/Kea79WAN6AN3Q8et+AnoA16FG2ifGoaCiKD3HUVWVaHs0tjDYAmdmwQxKyks5snc3aVOysVrtZkfqJYWsEOIMiTEOohwWDp2QEVkhRORYUpzOmxsO8fdNh7n3mjyz44gxwq6peCJ0RNaiKPj1ABZVG/Tntvu6iFasKIpCgRZPS/lWkgoXDvo4M3MLB/X4qfnB2T1FNwwCRgCf7scT8OEJ+PDqfgKnitNj1cfoMny0GH50DPRTxbSO3jslW1WUM95I0VBRFbX3doVPx6sVeqZ0a/T8cSgaqRPSSDEMTh6pRcfAOHWuY4EDeA0fOgaTrSk48rOD8ryHYkZ+IXmBXD7Y9QHxlgTcU8abluWzpJAVQpxBURQmpkZz6ESb2VGEEGLA3E4rS4rTeP+To9xw0WSSYiNnX08RuRSzN7IdhslqNP7d27EUzB3051ZXbOSKnGIA5uXl87+7PiYpyPlCSVUUVMWCVbXgsjjOuH9Kflqfj602DZ83dL1DzlWgBwydD8u3sH/nx0y0JBFTkBuyDOdj1SxcWnwJH+9aT/u+SqI0F1p6LA6bE3UIb4QEg6yRFUKc1aRx0Ryra8cfodOlhBBj0/K5E1AUeHfLEbOjiBFi0VR8Jo+IRuoKzYW5BezwNwz48SdLN1C160NqS9fToHeTbIsCekYZFaA7MLwuyOJMmqKyrGABtxVdjtfws79ks2lrghVF4aIZi5mTOwtQ8Bxt4Mi+3QR0c5qDSiErhDirialu/AFD9pMVQkSUhBgHC/JT+WhXDW2dclE9FrhtFtq85na+jdQxWZdmxalYaPb2v5QoUL6dWr2LBdNymTx5EnfkLehz/1LbeCrLPg5V1DFPURSWFSwg05pEeck604pHALfdzdzC2SwsWsCFBYs5VrnHlOJaClkhxFlNSo0G4LCskxVCRJjL503E69PZuuek2VHECIieMIlu1+Cb/Yge1+fNoapi43kfoxsGa7w13Fq4gHH2aKZGJRJv7Tt1f1ruNJoNL7p0EA6pWblFFNkmsnfXprDo1uyyuUixJlOzb++I55FCVghxVqkJLuxWTdbJCiEiTnpSFIkxDioONZkdRYwAp81Kt9/cQnac3UZ991ZTMwxVtMWOhsK+XR/0GeUL6AFqOhvYv+tDPih5iyW28WjK+UuHWZZEdu1aHRYF1mhWkJvHFGsKFSXrw2If3uKCGcRaYjhZuX9EzyvNnoQQZ6UqChNS3RyWQlYIEWEURSF3Ujw7KuvQDQM1gpvxiP51+3w4LOZe0n5x8Swefnc9N4734g6DLVMG686iCyjZXcHGXe+hne62q0C6GsX87Byut0cPqKnVgvxClPIyPir5O4uKlg96Ox4xcHPzisnxdfL30vVoiso063iMvEmm5ZlTOJv1JRtpqTpK7JSMETmnfHcJIc5pUko068qOy4WgECLi5E6KZ13pcY6ebGfiqaUSYnTqOHoYR4cFoszLoCoKDyydx//3wRruSF+ORY28SY8z8nKZwfA74s7PLyCxopK1pavBoGcPWAxmWZNx5s2O6C7P4Sba6uLmGZfRHfCyZvdmOnbWnPEYl2ojMScXl80V8jwXzFjI6h1rcRysxz459D2spZAVQpzTxHFuPNsDnGzqYlxC6F8AhRAiWHImxQNQcahJCtlRrssXIM5iNzsGsXYbX0hN4vUTq/EbBllOJ3PiLzQ7limm5mYzlU/3PQ0YOmt3l7Cj5B0AMjU34wsWofYzVXkkjIY36x2ajasKz/xeMwyDFm8H6/Zsp13vJk5zMa5gRki/7hfPWML7JauZOAKbMUkhK4Q4p8njYwDYd6RZClkhRESJj7YzLsFFxaEmLp830ew4IoRiHFY6CY9mT9OLc5h+6u9/37CTXS3rKIpdbGqmcKApKlcVz8HrC2AYBlt2l/NxydtcNOPKkI/Qbq3by67GKjr9HuYl5zAneXqftb6qolDdVotF1ciISqbT301DdxuKAi6LA4WekU8r5uyVOhyKohBnd3N14UUA7KgopXTnOgrtE1DzJofknKqqYlcc+PxerCGeZm/+2yBCiLCVnhRFUqyDbXvrzI4ihBCDljspnr1HmmU/7FEuNXsaJ9u7zI5xhisXFXO4y0Oz5xOzo4QVRVGYn1/ALEsSlaUfhvRcJ7uaqG6vZen4Yu7NWUFp00Gq22p77/fpfnY27Ofpqvepau2Zltvm62JHQyVrj+/kpeqP+EXJM5Q0VoU050iZN6OY22dczl7vcdhdHbLzRGlRdB4Kfdd4KWSFEOekKApzpqewu7qRzm7zu+IJIcRg5E6Kx+MNcKhWmtaNZqmxbmrbwq+QBfjy0nm8erKemu7w+x706gHa/B7a/J6z3h8wdCra6zja3QpAd8DHe/VV/O+RbbxfP/zCblF+IV5Dp7Ps027PhmHg1wN0+rtp8XbQ7G2nydNGk6eNxlN/WrwdtPu66A54+91LNcEew1UZ88h0p+LQbHT6u/F/5nPqulvo9HtwaDZibT2LrFOd8Vw7aRF3Tr2MaTEZXD1xIfnxmcN+vuFCU1RuLLqEEs+hkHU8npFXRGegMyTH/iyZWiyEOK/Z05N5e8thdu6vZ1HBeLPjCCHEgE2fGAf0rJOdkh5rbhgRMi67Daum8tiecqYmRrMkLg2XNTwucTVVYeXF83lz0zY+bvCiKQopNiupNhtWSw5WRUNVFDRFxaqoWE790RQVTVGwKGpIpt4e6mrm94e34tUDuDUb16XmMCs2DcMwes9X2naCPxz5hMuTsslwxFDSdoJNzUeYFZPGwa4m3q+v4tKkKX0+Z7BuLVzAK2VbaNj5Tu9tFkXBgQWLoqCioMCp//YIYOBHx2foeNEJGAZOReNq+9mXEJzO92R3JRPjUsiI+nTtptviZFFqPkc76tAUrc/jj7Sf5EDbca6euBCHZhtVWwppisp1eUt5p3QDqqIwzToOIy8zaMe3ahb8hn9Y3xsDER4/5UKIsDU5LYb4aDvb9tZJISuEiCjRLhsZyW72HmnmarPDiJD6pxsuB6Byx07+t3wP+anxLItPC4sOuW6blVsvmgNAQDeo6+riREcXNft34zcMAoaB/9Qf76n/Bz7zf8MAFGAIdVS6w87VyYm9H9cH8gkYOpuajzA/NoPrx+VS3naS31Rv5PHC69Ax0FA44Wnn/foDTHTEYVU1vHqAsrYTLIqbyCVJWZS1neCPR7dza2p3n2ZJ9YH8QeVTFIUvFM4f/BMbBMMw+H/7PyAhLorbO2NJqDpyRoFldDYwvtNOxklf733PdZaywjqemdUngBMoinJGMbvT30Ct3oXKp8X26cJbQ8GqqFhRT93WI4CBTs+/r46BATgVDadioS1zMnbVikOzEW11oqmhW5cbY3Nx04xL6fJ7+KBiC007j5Bvy0AJ0trZaM1Nx4Fa3FNCd+0ohawQ4rxURWH2tGQ+LKmh2+vHYZOXDSFE5EiOc3CyKTynnYrgy55ZzLdmFrN5/WZ+VV7KldMzmGlLNjtWL01VGBflYlyUixkpif1/wik2m4bXe/5ptP3x7j1EklYOwJfGG1gUP1a1HPRmUuw902o1RaU74GNryzFmx45HU1Ta/T0jyS3+bvKj6knSupho68IT6JkubZs+CVVReo9f7/WBVjysrMESMHS+u/c9Lk+ayqVJU864/3QRbqmsJHnceOKjU4GeadSd+8qYNTWHeKsTAJtVw+vr+28wPzAOnx7AoGebIf1UoWsAfkPHpwfwGT33n77Poqg95zw18g7QFfDRGfAROHiAbgK0Gn72GV4Cho4fgyJLAjH580LyxozTYufKwgvRDZ1nS95hijc1KFv1zCucy5qda3EjhawQwkSzpyfz/raj7KpqYF5uqtlxhBBiwKJdVg7UtJodQ4yw+RfMZ85CnffWrONXVbuIsVuZk5HENC0OawTu8RoMtumTPv37qf/vqmvkL+V7+WbmhN4id21LE2vqa/lW5gReOFGHRVGo724mSm1Bm5CPLSWR6PYOAtWHsU2f1FugnT7+uo+3cbjrHdIcdmyKgkVRiLVYcDnycSs2XJoVm6KNyGj5c8fLONDZyLv1+9nQdAQdncuSpmIYBgvjJ/QWkg3erlPjpj02Nh9helQSTtV63uO7NCto53/MYOQXpJxxm24YrC3fyYZTWxdN0twk5s7FGeQtp1RF5abCS3mxbA1plngSCgY3un6247m0KJr3HyFu6oQgpexLClkhRL+yM+KIibKxfV+dFLJCiIgS5bTS3uUL+VotEX40VeWKSy/iGqtGY2sn2zZ/wh9r9+LXdW6akEWKy2l2RFOV1DXyyJYSHrxwDoXJCb23t+3TKVAM3vB2U29RsaoqRkYK4zSF8oZmZqQk4g3oveuQP/9TdfOFs9ENg7rObvyGjl83aPZ4qa0qY7/HS0dAx2voBGvJqaYouC0acRYL0ZqGV5mCXdWI1ux8MTWPL6Tm4dH9dOl+unU/0ZoNj+7vswXPNSnTSbW7P3NMlWlRSdhDOLV3oFRF4ZKCmVxCzzTpnRUVlJR/RKfhJ1G1k5Q9izhbFLZTBbVhGHh1f8+I7yDz2zQrt8+4nA/Lt7CvZCNTi+YPa8/ZRUULeH/HGqJCtBWPFLJCiH6pqkJhVgI7K+tHxcbhQoixw+20EtANur0BnHa57Bmrop12li69gKVAe5eHv7y5moBukJMSS6LPSYrLgdtmxaaGprlSuDnQ3Mp3P9rCwxfNIzPGTU17J26rBZ+uc+O0T9dIvlpZTW1nF7NSk3BYNP57ZwXNHg+HWzu4p7Bnx9yzfb1URSE16tM3CiYBc9OThz09+vOMU2uJ270+WjxeWrw+2g8eoCugU93tZ6vPh08/d8WsKpBotRKrqVR3HOdoZ88IcopFQVVgf/vx3rWvmqqgGNDFFOxqTzMqBQVFUXrXwCooqKeaVAG9a2Dh04L/9ORjw+i5H8ChWnBqVhyq5bzXWIqiMDMvj5mnPq7zdrBx7y6OGh48RoDTK3XtioYPHd0wehMoikKK6iRZcaBPyyfG6jrn9/qS/HnsqiinZOc6phfMw2F19PMvcW4XFS7mw9KPmDB9eCO8ZyOv6EKIAcnLTGB9aS1HTrQzaVy02XGEEGJA3M6eUYr2Lp8UsgIAt9POV266irYuD4fqmjheWUlZQyPtXh8ev87pa/uAblBa28js9CTumZrDc0ereHjNLqanxFKcloDbZuVoSwf/NncOlgibrvyXiioUFH5fUoGuGzgsGtdOmYhPN7hicgYBvacAGud2EW3r+RnKS4zn5ulZHGvvICs2hksnpZv8LHqKM6uiEO+wE+84NdX2M6PL/fHrOvVd3XgDOn69Z/T49CiyYRin1r72FMxWq0a314+nupI2f0+3ZJ2etbGGQe9j9VO3A6eaQH3ap+t03y7lVPbT3zVduk5XQKdLD/D5utupqVyVeslZ8yfbori2cO6AnmvA0GnSu9m9p5LaPVso1z140JlfcAmu/3979x2fVXn/f/x1zrlH7js7kIQRIOwkJAzZG8uSBAiiAg4ctSjVFkelYqXWWrXV2lZQf37rrogKFosTFyPKFoWwwgpDwkogrMx7nd8fgZhAdu4ZPs/Hw4dw7jPe98nNyfW5z3Wuq4puyt0Tu9HZ0Yn/7VhFgqklhqTLnzGuC5PBRKgWxrnsI4R1dO9nRq7oQog6SWoXCcDOg/lSyAohAkbFQjY64sruSioqC7WYSW7bgm5tYsk+foqdmds5dKag/HVNVZjRrys9zGXTtUyN68i1N8eTrZ9j89FTnCoq5beDkzA4AquIBfjjwF41vq6pZeXWgJaVn9kcGtfCg6m8z6CqtAiu28BG5QNutfDe4GE2p5P/W7nRLfvSFJVWQaE079ajfFm+vZiPdmTQp8eYKrexGMxc220EX+5cSwcaVsgC9Em+iu+2riaswXuomhSyQog6CQ8x0zo6mJ0H8xk3oF3tGwghhB+4WMgWFtt9nET4mz0/bubrvUcpdTjp3DyMBFMEYzrF1di106RpJBJJYtuyL3dxeCmsuCJ9vi6TEVERHtt/lNGCioJ551ZKk7pXuY7FYMamN+6DblAN5YOCuZMUskKIOktsF0nGlqPYHU6MBt8PgCCEELW5WMiel0JWVPDhshUU2hxMj+9MkPw+E37I6dLZVVhEv6hhHj3O1G4DeGP7aoZSdSHrzwKvL4QQwmeS4qOwO1zsyznr6yhCCFEnFbsWCwGwZcP3OF06U+M6ShEr/JLd5eIf36xlcqznuzEHaQYMl409XZmmqLh0V43r+IIUskKIOuvaJgJVUdh56LSvowghRJ0EBxlRkK7FokxRqY3Pd+UwMVYekRH+qdjh4O9fr+X62GhCTL09fryyLr81F7IWxUSJvcTjWepLClkhRJ1ZzAY6tA5j50EpZIUQgUFVFaxBBulaLNi3eQvPvfsJM/p1vSKm2BGB52ypjee+WceE2GEEGa/yyjGPlxYQo9Y8vY7VTYWs7ubnZKWQFULUS1K7SA4eP8f5IpuvowghRJ2EWIxyR1aweOsBHkruTnjR5VONCOEPdm7dQ0KwlWamuo2k7A7FLjtBSs1d7OPbtUM7cLxRx1EVBd3N3ZOlkBVC1EufrjHoOqzd3rgLmhBCeEuIxSjPyAq6t4zisFpQ+4pC+MjAvsnk2+2cLd3ktWO2C4ogx1VY4zrhpmAKXaWNOo5BMeB0uneYbylkhRD1EhcTQqe4cFZuPuKRodSFEMLdQixGCoqkkL3SjRg6gFX7j/k6hhA1+tWI/iw5kUeJ0zvXLIOq4qylPRdmtFKoN66Q1RQDDje/JylkhRD1dnWv1uSeLiZLnpUVQgSAEIuRghIpZK90IRYzJQ4nOdp5X0cRolqaqnD3sD68c+QbTtqKvHNMRcFWQ5GpqRrORnYLNioGHEfcO+uFFLJCiHrr0zWGEIuRlZuP+DqKEELUKli6FosLfjM1jYWb93PeJp8H4b+irRYeGjmQ1afW8uPp7zx+vAGGGA7tWOPRYyQndKPYVezWfUohK4SoN6NBZWiPlmzem0f+Of8bjl0IISoKtRqx2V3Y7E5fRxE+pqkqv7nhGl7ZkyWPxwi/ZjUauGfkAA6XlnLGw1PfJCclcMRVVOOowmbFSKmj4d2LLUYLdpd7n5E1uHVvQogrxoierfli/U+8sGQbqQPbcVWX5miqfDcmhPA/wRYjAAXFdqKMNY/OKZq+yBArE7u15e/btpIYE06I2UiIyYhWoGLWVII0A0EGjSCDhkFRyn+32ZxOSp0uShwOih1ObC4XzYPMtAi2YtTk95/wjBsH9eL17zKY1mqMR6eNitdCyC05Q6wlssrXm2shOHcfhG5dG3EU9355JIWsEKJBoiMs/Gp8Eh+tPsDLS7fTrkUoj07vjUF+mQsh/ExIUIVCNqzm+RKF73y47QC/aBlMuNXzP6NufXrTPiWFM4UlnC8ppbCklNKjOZx12Mh1FFNc7KTE7sCh6zhdOrquYzZomDQVi9GAxaRh0jS2Febzdd4RbM6fnx+8WGvoeuU/A1iNGkFGDVVRUKBSYaIqCooCSvl+Kr+mXygClAtrKBeOpVC2XVU30xSlbNvmwUG0J5SIIM9MPaTrevm5cuouHC69/I73xVgmp0ap7ec7cpqiEGwyYqzlS3Bd16/oeX8jgswMiQjnw2PfcG3LUageOhcRiolT9uJqC9mEjl3YtHcbjZkYyKSaKD1wEnP75o3Yy8+kkBVCNNjA5Bb0T4pl1ZYjvPPVHjbsPMHglJa+jiWEEJWEWssKWZlL1r8NGz6M9z/4gOKSUjrGtWBAbCjRYSEeO57VbMJqNv28oEOcx451UWGpjVKbA52yQu9i8akD6BWKP53ywhXAYFCx210X1yx7XS9b4+K6Fwvaiy4ud7l08vbtZVneYc6W2KBC4Vvx/xe3ufTPdXldVcpGv1VVBcOF/yoWXMolx1QAu8tFoc2B3alTVW1W8Vg/L7t4ThTCgowYVAWTptE2Mpj2hBHpoULd1/r3TcbyYxYr8lYxKuZqjxwjpl1rbAcPQkqrKl8PNwVToDeui/OA5P58t20NrZBCVgjhB1RV4epercnYcpRP1x1iYLcWqOqV+82pEML/XOxafF4KWb8W3SySmXfehq7r7D98lGUZGZw8e56bxg6hhd07o7d6WrDZRHDF4rmOjEYNeyOe8e7YohkDGry1ezT2PVTkdLkoLLHhcLoodTg4tHMnX+Yd5kxxWaEOOgZVpUerKHqYm2HSAv+Rgu5XJfLt8nWcsRcTYbS4ff8WzUAx1f98DKqGq7EjF2tGdN2Fy+VEVRv/M5FCVgjRaIqiMGFQPP9v6XY27c6lX2KsryMJIUS5EIvckQ0kiqLQsW1rOk6/ieKSUt5f/F/OFhTRq2t7eoabCfNC12Ph3zRVrfQ5aDl4wGWFeqndweaNm3hr/x5cl3S7VhRoEx7MVcHNaRHcmM6y3jVlYE++/H49I6Pdf1fWohkp0asvZN01OFq0KYbDe3YSa2pBUIfoRu1LClkhhFtc1TWals2sfLL2IH0SYjz2DIcQQtRXSIXBnkRgsQSZuePWm7HZHWT9uJH/7tjPqTPnGdorkf7NrFf0s5OiZmajgQFVFLhQ1kX5YN5p1m74kRNHisvbLDV1p1YAVx27W1/880V17a7dMtTC1VGtCTUZq3xPMVYLp+yeuY6ZVQ17DXdcc4tPE6k1vqt/927JdHMlsnbbOvJ25xFljCK4Q4sG7UsKWSGEW6iKwvhB8bz6yU427DjBwOSGXZSEEMLdDJpKkEmTrsUBzGQ00KP/IHr0H4Su66xeuYLnlv9I6+hIRsbHEBvuuWdpRdOjKArtY6JoP2FUnbdxZ9fo6hzIzOSDPfspLLVzS+9ORBZV3fvAEwNgmVUDthq6Fm/K3kbzhCS3HEtTNYb2GILL5WL99g2c2r2DUC2EiI5t6/W+ZHhRIYTb9EuMoWOrMN75eg+nzsr8skII/xFiMUrXYjeaN28eqamppKWl8eabb1Z6beHChUyfPt1jx1YUhaG/GMnvZ81k5KhRLNi0m8xz8rMVga99jx7MvCGVe6ak8vrGPZe9Xup0ctruoNTl/oJaQcFVw/Q4ha5SrCb3dsNWVZVB3QcyuudIjIqR43svf881bu/WNEKIK5qmqsyYkIRL13nt0524Ln0oRQghfCTEYqSg2FH7iqJWGzduZP369Xz88ccsWbKEBQsWsH//fgD27dvHv//9b69laRHdjA6tYmnWRAaDEgLAYjISYqrccfZcqY1nv17Lr1q3JEhzf6faM/ZiwpXqByILV62cLznv9uNC2ZdTfVJ649J1nM66X6elkBVCuFVMpJVbRndh9+EzfLruoK/jCCEEcLGQtfk6RpPQr18/3n77bQwGA6dOncLpdGK1WrHZbDz22GPcd999Xs1z9GQ+rSLDvHpMITzpbFEJYUGVi8pXv/2eKa1+gWbo5ZFj5tdSyPbq1I2ivfs9cuyLmpuak7//UJ3X9+gzsgUFBUybNo3/+7//Iy6u8txcO3bs4LHHHsNut9OyZUv+/ve/ExYmFyEhmoJByS3YcTCfpd8dwGTQuKZ/W19HEkJc4UIsRk6clrt27mI0Gpk/fz5vvPEG11xzDbGxsfztb3/juuuuu6zNV+d9GjSgflNyFBWXcL6oBLO55iat0Rj406/Ie/A9b+Xfv3UbnZqFYTKVHW/d+m0khATTzNL4rr2mat5DzqEc9K5dMZqqfr2VsRnfuopoY/Rc+di3Zy8+3/hleQaDseZ7rh5LkpmZydy5czl48GCVrz/11FPMmjWL4cOH87e//Y3XX3+dBx54wFNxhBBepCgKv0xNxOHUWbxyH3aniwmD4n0dSwhxBZOuxe43a9YsZsyYwcyZM1m0aBHHjh3jkUceYcOGDQ3an93hRK/HYDpHdm/njU9WMnNISo2D8HhjkB5Pk/fge97M/0POSSa2bIfNVna83QVFdA/vj62RxzcZtWr3ccRZSKIagt1WwzF0HZvds9dRk2qmsLAQkzEIh73meWs91rV48eLF/OlPfyImJqbK110uF4WFhQAUFxcTFCRzggnRlBg0lbsnJjGwWwv+9+1+Nmad8HUkIcQVLMRipLjUgcNZc8NI1C47O5usrCwALBYLY8aMITMzk71795Kens7cuXPZvn07999/v8cy5J85x1ufreL3Y/rSPCzYY8cRwtv2/LgZh0snIshcvuyM3UG4wVzDVo1XrDuxePgYddGjSwrnDx6v07oeK2Sfeuop+vTpU+3rc+bM4dFHH2XIkCGsXbuWadOmeSqKEMJHNFXll2kJtG8Zyjtf7eFcoTyfJoTwjeALc8kWlshd2cbKyclh7ty52Gw2bDYby5cvZ8iQISxbtoyPPvqIJ598kuTkZJ5//nmPHN/pdPHiq29x39W9MBkCu6uqEBUVlNhYvPUAt7XvUmm5U9fRFM8NbVTitGOow7Q3iqLg9MCIyRWFBYVR4Cyo06BPPplHtqSkhEcffZT//Oc/dO/enTfffJOHH36YV155pV77adbM93OGRUeH+jpCvUhezwu0zN7I+9Atfbjvnxkszshmzq19GzX3WaCdX3dw57XOn8+fZGsYyVY3rWPLxuEwBpUVtP6U7VL+nA1g+PDhZGZmMmnSJDRNY8yYMaSlpXk1gyXIRLC5+oFphAhEBlXB5dKxuZxY1J/LtOYmI0W2H7CaenvkuEZVo0R3kl96jihz9WMWdTK24KdtPxLfo69HckBZsRxriiE3OxuKax4l2SeF7J49ezCbzXTv3h2AqVOnMm/evHrv59SpAp9O7xEdHUpenmeGofYEyet5gZbZW3ktmkL6kHiWZOxn2er99E2o+pGD2tSWV1UVv/iCy93cda3z58+nZGsYyVZ3ql7WpfjAT6dp1yLMr7JVVJfz5g/XulmzZjFr1qwqX+vfvz/9+/f32LE1TSW+RTQHXAbaq3KHXTQdQSYjM68by/9b+jUPdksp/+I/fWBPXsv4nutbeea4mqIyNbEfK3b/QFT3q6tdr2diMoe2rkLfeQAlqb1nwgA9k3sAEBkdWeN6Ppl+p127dhw/frx8zrHly5eTkpLiiyhCCC+5pn9b2saEsCQjG6dLnlETQnhXZGjZs1/550t8nES4w8T0CXyU8b2vYwjhdjHhISS3iOSg+vMXWlajAZOqcM7huetXtCmY067SWtcbnzyUzNKfKLb7/lrq1UJ2xowZbNu2jfDwcP76179y//33M2HCBJYsWcLTTz/tzShCCC/TVJUJg9uTe7qYjVm5vo4jhLjCRISUFbKnz9feUBP+z2wyER4SzImzBb6OIoTbXT1sIBn7Kw94dP3Anqw5tcajx1UAp17zzQZN1ZiSMoq92zei7zzg0Ty18XjX4hUrVpT/+dVXXy3/8/Dhwxk+fLinDy+E8CO9ujQnLjqYT9cepH9SLGojnpUVQoj6MBpUwqxGKWSbkOsmp/Puov8yc1A3X0cRwq1CLGYKbfZKy5pbgjhtd6DreqPGGqlJJy2Mkh2bCE7uV+N6QZqJG3uMZcnW5bTbYcfSrUuN63uKT7oWCyGuTKqiMH5QPMdOFfHD7jxfxxFCXGEiQ4OkkG1CwkNDcOk654p838VRCHdrZjVzqrjyZ7t7aAhHizd67JiDE1PY4TxTp3U1ReWG7qPIceRj27HPY5lqIoWsEMKr+nSNoWUzKx+vOSDzOQohvCoy1Ez+OSlkm5LrJk3kjQ1Z6LrvBv8UwhOGD+5HxuljlZZd3T+FjPwzHjtmkGagVHfW+d+ToihMTvkF++25FO/Y47Fc1ZFCVgjhVaqqcP3wjhzJK+Q/y3ZJ40MI4TWRYWZOy2BPTUqL6Gb8om8KT3+xgaW7j7D7SK4MKCiahHbRkeScLaTE8fO8rUZVJd4SRK4H78p20cI5v6Pu+1cUhRu6j+Kk8zyHt/7g1XadFLJCCK/r1SWaSUPas2b7cT5dd8jXcYQQV4ioUDOFJQ5KbDJlS1PSo99AHn3wN/TuP4CDdoV/rtjM0t1HsDudtW8shB+b0r09S49VHlDp2sFX8WneqVoHZWqoq7v1YLPjVL22URSFtJRhRGth7Mhcjc1h80i2S0khK4TwiQmD4xnYLZb/fbufrdknfR1HCHEFuDhycf5ZuSvb1CiKQttWLbgmNZXfz5pJYnxrnl+5hQ+zcuQOrQhYbbt352RhKbYKX8poqsKUFjEsOfaNR+5+aopKVy2c/Vu/rfe2/ZJ6kp40gr3bN3J82xaPF7QeH7VYCCGqoigKt49LZP/RcyzJ2E9Kh2YeG4VPCCGg7I4swMmzxbQMD/JxGuFJCb36ktCrL1k/buTJz9YztGcC/ZsFYzL6pun7j48z2HroOOeLS7hr9ADG9OiCqpb9ztt1JJf/98U6ThcWM2VQdyb0SeL7fYdZ9uMuSh1OokKs7Dt+kkevG0lcs3Cf5Be+M6pzK1afO84vIluXL+vSsytFP+zkw2PfMLnlKLe3n0YnX8Xy7ZtZteVzencbQajRWudtg41B3NhjLFuytnFgx2ZKdDvdTHGQFO/WjCCFrBDCh4wGlfGD4nn9syy27D1Jry7Rvo4khGjCIsPKiteTZ0qkkL1CJF7Vj8f7DWD1ypW8tiELm91Bl3atGNW2OSaD5pUMa3Yd5GxRCc/dlkaYJYjrn1tArw6tiQ0PAWDue18yY1Q/urSK5g8Ll9EzvhWdWjZnbK+uaKrKh+u3cb641Gt5hX9J6dubL9/5uFIhC9CzdxLKDzv5T86XhGrVfzZc6DQ3GulstdIs+CqCdEOdCt+Ryb0Y6LTzf9tWkG5uR1FSSr1y90xMoSfgcDn5YscairYcpaMxBkNSR7cV3lLICiF8akC3WD5Ze5CP1hygZ+fmcldWCOExkRe6Fp86WwxE+DSL8B5FUeg/dDj9hw4HYOcPG3npuy2EWILondCBRKuKxWT02PH7dIyje7uWhASZUBSFolI7aoVfdUFGA73atyYmPIS8c4UU2ey0aR5B/85tAXhzxff8bXoqMRcKX3FlURSFmJAgcouKibFaKr3Wo3cSPWrZXtd1ThaXsGPbXnblreaMvWyMAAVQFYg1mWhpNmExJhNrCqnUDrNqRu7tPpyXtmYw0N6JEKOlmqNUz6BqjE8Zhs1pZ03WD+RmrkVBIVILJrhLR4JNwQ1u+0khK4TwKU1VGT8wnjc+zyJz3yl6dm7u60hCiCbKbNIIDjJw8kyxr6MIH0rq3Y+k3v04V1DItk0bWZD1E8WlNoLMJvokdqCt6sBiNGIxG9HUn4eTOV9cysG802w5VUD+2QJcuo6u6wzrlUTvCHO1jXGz0YD5Qpfm37z2P24e1ovI4J+7ag5JiOeWee9hNhro3q4lHWOblb/24rI1JMXF0j42CrtdBq+6UqWOHMxny9dwU9tO9d5WURSirRZG9O+OyaRhs/38OXK4XBwvLObwrgPsPLeJfarKkGbDK21vVg38OmUYr21fyYieqQ1+DybNyNXJAwBw6Tp5JWf4cfcODruKUYCWhgjCuiXWq6iVQlYI4XNld2UP8MWGQ1LICiE8KjLUzCkZ7EkAYSHBDB5xNYNHlP29qLiEzRvWsvzEKUpKbRSV2nC5XCgouHSdUGsQ7VpEM27cUKKjIgBwOl2sXrWCeauy6NSmBenD+uI8mgOA1iqu/FjnC4u566+vMKJ3Ejdf1RmDVlYgH80/x8od2cy9fiRRIVbe/W4zG/f9xMAu7VAUhS+37OGNe2+o9j3YHE6O5J8tzwg/D/6jKApmg4Ego4GIYEv5M7ki8ESHhXCq0P3XLYOqEhcaTFzfZAYCLy1fx0lbEc1NlZ+JtWhGErRwcratJi5lSKOPqyoKsZZIxl3Yl1N3sXbnD+zOXEfXHgPrXMxKISuE8DmDptKrczQrNx/B5dLll60QwmMiQ4M4eVbuyIrLWS1BDB7xCwbXYxtNUxk+chTDR5Z14eTs8fIC1hXREoCComKmz3meWbdPYWRCq0rbG2LMnHV8zNWjhgGwbHcOu86VMqRVHLsPHaVz+zbEdOkCBg3NdfkItc7iEnYczAN0FEUp+4+y36FOlwubvZASm50DR/OYOLQ3KSHS9A9U7ZuFkqOdJ84Z6rFj3DGsL/NXfMv0uLGXFZOjk69i0bb1nNm+nogLd1bdRVNUhnbry49ZW8nKXENCj0GoSu2T68inWQjhF+KiQ7A7XJw4XUTLZsG+jiOEaKIiQ80c3l/g6xiiCVIUpbx4rejf7/6PY3kneeODT3lbU3HpOlNSR1JcUsrksSOYPGYEt//1dcwmEwZN5eZp16NHRvPtV5uI79ABV0RLVLMRRxVdi60RMGFi+1qzuVwuPv74E1YcyyOpfWvCrBZCiguIDLYQGWLBZNBwunQcTidni0o4XVDM+ZJS1AvFca5i5MCRXFy6jnpJgaNfuAusoKCjlxfSFf9cdn6g4mwxF7tmGwwaFpOpfH1rkIlgixmTwYBLLyvQ403QuUXzK/qL7jEjBrPgk2+4s2OCx45hNRoYEBHG7vPrSAgbdNnrU1MG8O/MDLrZCgk3ub+tdlVid7Qslb1bN9Clx8Ba15dCVgjhF9rElA1ikZNXKIWsEMJjokLNnDlfisPpKu/eKYQn/e5XN3H/HdNwOp04nE6cThcmkwGH04Wqqtw6OZVRg/vicLqwBplpHVs2gv/YYQNQVQVVbfznVFVVJk1K58y5Ak6czOf88UOcUIzsPnGW/L1HsDmcaKqKQdOICLESGRZMSFQoOuDUdbq268TYcS0x1DA6bm1MRg1bFcW43eHAdmEAIt3lorjURmFRMTa7HVVV0XWdfTu28vWabdjsDqaMGkSc68p7PCDEYqbY7sTp0tE8WNAP75fC375aQ9dQvcouvtOTB/Hv7SsZljIWk+b+QdJ6JCZTsKOEbVu+Y3j73jWuK4WsEMIvtGxmRVEgJ7eAvgkxvo4jhGiiIi/MJXvmfCnNI+o/AqcQDaFpKpqmYuLnhr/5wv8tQWY6tou7bJs2Ld3/uzAiLISIsBDo0Nbt+24oo8GA0fBzSRISbC1/BvmizvFtALDZ7Ly76APsDgejO7TAoKmYDBrNQxs+8m0gGdQuhk3FufQPjvXYMRRFYVhkOJln19Az4vLnYa2akVRTG5Zv+4ZoNYhOycMwqO6dGmpwtz70czn4/vSeGteTryKFEH7BZNRoEWUlJ0+6/AkhPCcyrKx8yD9f6uMkQoj6MpmM3D79JsYP6U3m6WI25p7nmwN5zFu1hVfW7WTP0Tx+yjvNT3mncThdvo7rdv0G9ef7wyc9fpzB/VLYXlCIzVX1SNldE7twT48RdNUiWJm5DOeOH92ewagaGJ1Qc/diuSMrhPAbraNDOHT8nK9jCCGasMjQIABOSyErRMBq2bkb6Z27VVp29nwBqzNW4Swswe5wcOZgLr/s29VHCT1DVRU0VUHXq+72605pzaP44fRqBl4yHU9F3ZMSSNa78p9tq2mzbS2xKZc/V+tJckdWCOE32kQHk3emhOJSh6+jCCGaqKgLXYulkBWiaQkPDSFt/Hgmpk/kuusmY7M7OHmu0Nex3K5lqJXjhZ4feb3bVYlkF5eUjcZdA1VRuKP7UIp0B1szl9e6vjtJISuE8Btx0WUDPh092fR+8Qgh/IPFbCA4yMCPe/IoKLb7Oo4QwkNunnYDb2/a7dXCyht6XNWdHbZ8rxxrQHgY2QXr67TuxJS+dDGEsypzGaVO71xbpWuxEMJvxF0YufhwXgEdW4f7OI0Qoqn6VXoyL36QyZ/f/J57rk2mfcswX0cSQrhZWEgwo/qm8M8Vm7GYywbZcuk64SFWWkdH0S3ESGyE5+Zk9ZTOLZqz+MtTDA9vhdHDI68P7ZfMv75ZR6c6nqa+Sd3oaO/AB9uWowPxWgjRSf09MroxSCErhPAjzcKDCDJpHMmVO7JCCM8Z1a8doWYDLy/dxtMLfuCGER0Z1bfNZfNjCiECW4/+g+jR/+fnNnVd5+z5Qo6eyGP5po3kbt5HsCWImKhwwoMtWIsKMBs1TAYN7cK0R4qi4NJ1NE3B4XBhMmgYtbLXNbVsnl2ny4XD6cJ14e6vrkNRqY0CaygFxSWoioKmqSiUret0udB1HV0Hg6bSzFFCTEQo0aHBtc6Vq6oKt/fpxH927uFXnTw3p+zF9x6sqRQ4bIQYTHXaJspo4e4ew3HpOpuzsvhh23IG9rzGI/mkkBVC+A1VUWgdHcxhGblYCOFhHVqF8ac7+vHm51m8v2IfOw6eZsKgeNq3Ci1vwAohmhZFUcqnIErq3B6AwuIS8k+f5WxBIYUnDnPe7qDUbsdp10HX0SkbWMngUnG5FOylTmyOUpzOsjldXS4XBk3DYNAqze9qDTITpqq0bN8FHR2n04XL5UK7UARfLFgdThcnf8pm508n2ZeznRvHDKaDVvVowRe1SelO++NnWF9wggEhlafi0XWdnPOF2F0uzAaNCLOJYGPD74iOjIrkhzNrGdp8RL22UxWF3klJZG79jkJ7CcHGoAZnqI4UskIIv9ImOoTvd+V6ZUQ+IcSVLcRi5DeTU1i5+QiLVuxj2/5TWMwag1NaMm1kZ7lDK8QVINgSRLAliDYAXTpUu57JqGGz11xgNtiF4zqcTv787Hz+PHFwrW2gcaOH8fcFHzEgqXIh+86hvURYzFiMGsWFTjbtPslvEpOItjZs3uxOPbvy+TfrGrQtwDVderI+az2du49o8D6qI4WsEMKvtI4OYdWWo5w+X0pUmPu/vRNCiIoUReEXV8XRLzGWXYdO88OePL7ZlIOqKEwb2bl8vRKbgy83Hib76FluG5tAs3C5Pgkh3MugaXRq04JzxaWEW2u/xpgN2mXLCm0O7rxuXPnfW69eT45SSDQNK2QBauntXKNYczCn9FI6175qvUkhK4TwKx1blw268v2uXMb2a+vjNEKIK0WIxUifhBh6d40mxGLkq+8PE2wx0i42lIPHz7HixyOcK7RhNKg8/c4PPDClR/lI60II4S5RYSHkFxTVqZCtS6eRdt2S+G7N9/Rq2dwN6epPU1SPjRwthawQwq/EtwgjKT6Sz9cfYnjPVgSZ5DIlhPAeRVG4cWRnzhba+N+3+8uXd2kTwW8np2A2avxz8Rb+9s6PzL6xF+1aBN6op0II/xUVFszpgnO0j6l93brUh7HhoZwoaNy8s/46g5G0EIUQfufaYR146u0f+GZTDuMHxfs6jhDiCqOqCjPGJ9E/MYYQi5G4mBCCg34eLOUP03vz5H82seTbbB6c0tN3QYUQTY65WUtsdRxwrqo7spc+W1vbKMje4ZkMMiyfEMLvdGwVTs9Ozfliw08UlXhnUm0hhKjIaFDp3TWGrm0jKxWxAM3DLYzsHcf2/fkckVHWhRBuZDIasdkdDdr24pQ+VwopZIUQfmnS0PYUlTpYufmIr6MIIcRlRvRqjcmg8vWmw76OIoRoQkwmI6X2un2Jf2nR6tKrHpjJ18WtUVGxuxpWnNdEClkhhF9qGxvKTaM6075lmK+jCCHEZUKtJgaltGTt9hOcLbT5Oo4Qoomozx3ZS7sW21zOKkcy9vVMYp46vBSyQgi/NapPG5Lio3wdQwghqjS6TxwOp4uVP+b4OooQookwGgzYHQ2br7bUUXUh62s23YVBcX8uKWSFEEIIIRqgZbNgenZqzufrf+LbzKMem2JCCHHlMBkbXsiWOJ1YjP5XyCpcPgiVO0ghK4QQQgjRQLenJtC1TThvLdvFG59nNbgBKoQQAJHhYew8kMPpwtqnzIkLD+bH4jy+O3uM/9uTxQeHD9C3zeXzxcZHhvBC1nYWH8rmRB32W5UiZ8MH3wxVjRh2bmnw9tWRQlYIIYQQooHCrCYemNKTiYPjWbPtOG8t2yV3ZoUQDWYyGrh/5p28uSGr1nXTx47g0JkCokOCuGdKKr+7eSLx3Xtctt6EsSP43S3pDBvaj29PH+PFXTt459BejhQU1inTDQN7kHHy23q/l4smd+vH17ajDd6+OjKPrBBCCCFEI6iqwqShHVBVhaXfHaBV82DSBsb7OpYQIkBFhIXQrUMb1p8sZEDz4GrXU1WFqeNH1Xm/bZpHcHP6aADyzxfx5co1HDlcRFx4MKOatSbMbKpyuxbBVoqcLlzOzahar/q9GcCkaiRq4eRuW0tMyqB6b18duSMrhBBCCOEGEwbF0y8xhg8z9rNl70lfxxFCBLCx48bx3eba78o2VFSolRsnjuahW9IZNKA3r+7dxX7OVrv+jBH9eC3nWIN7nIxOvoodzjMNTFs1KWSFEEIIIdxAURR+mZpIq+hglmRk+zqOECKAKYqCNcjslUcV2kZHMnn0EA6eLqh2nSCDRlJIMCdsdeuOXJUIxUSJ033TlUkhK4QQQgjhJiajxvAerThyspAjJxve4BNCiMiwYPILirxyrJiwYHILSmpc56rkzhwp2tzgY7RULZwsqf6ub31JISuEEEII4UZ9EmJQgO+zTvg6ihAigLWKjuJo/jmvHCsi2MKZ4prvlnaICOVgcc3Fbk0SOnbEnu2+7tJSyAJ33jmdO++cXu9trr/+eg8lqvp49c3YFF2J56Eu77mmdepzzrx9fq/En2dT1tDP6qXX0+r2I58X7/KX813fHN7MXd2xIkLMdGkTwfe7cmUEYzeZ/uDjTH/w8QZtO+2+xxq8bWM0JvOVQM5PZVWdD2vzVhSWVp72Zvr895k+//3q91PL69WtX5d5XlVFwUnDr2lxQWEccf3cU+XlrI95OevjBu9PClkhhBBCCDfrlxjDsVNFHMmT7sVCiIYxGDRcEVG+jlFJhMHAGXvD7soqioJJ0bA1Yk7aiqSQFUIIIYRws6u6xqAosHFXrq+jCCEClNFgwOF0+jpGJX3CQjlQ+H2Dt+9paEbezg1uySKFrBBCCCGEm4UHm0hoG9lkuxfPmzeP1NRU0tLSePPNNwF49913SUtLIzU1lWeeeaZJvm8hvElVVVwul69jVJLUK6FRz8lelZjIT0739FSRQlYIIYQQwgMGdIvlRH4RX2487OsobrVx40bWr1/Pxx9/zJIlS1iwYAH79+/nrbfe4oMPPuCTTz5h8+bNrFmzxtdRhQhoigLe/D6oDo/JoioKrkZkqsuzuHUlhawQQgghhAcMTmlJn4QYFq/cx/dNqItxv379ePvttzEYDJw6dQqn04nVauWzzz7DarVy7tw5CgoKCAsL83VUIQKagoLeiMGV/Jd73pMUskIIIYQQHqAqCjPGJ9IpLpxXP9nJvhz3zZ/oa0ajkfnz55OWlsbAgQOJjY3FaDSyePFiRo0aRXR0NAkJCb6OKURAUxRFuujXwODrAEIIIYQQTZXRoDHruu48+Z9NvPzRdh6/oy+hVpOvY7nFrFmzmDFjBjNnzmTx4sVMnTqVKVOmMHnyZB555BFefPFFHnzwwTrvz2jQAK3K1xS1rDuiyVj167VRVKXB2zZUYzNfytv5PaHie3D3+fEGT2at6nwYNAVNUzFWWHZhtUrLKqrt9UuXV1xfAUym2t+jojTuXCiKgtGklXczNlZzTEMtWaSQFUIIIYTwoBCLkV9PSuapBZt4/bMs7ru+u1ufE/O27OxsbDYbiYmJWCwWxowZQ2ZmJp06daJ3794YDAbS0tJ477336rVfu8OJbq96hFb9wkN5tmper43u0hu8bUM1NnNFJqPm9fzudul7cOf58QZP/wyqOh+ldifoYK+w7OLzqfZqstT0utGoXba84vo6YLPV/B5LnU6MitK4c6GD3eYsv9tsr+aYjlqySNdiIYQQQggPa9cilKm/6MzW7FMBP/hTTk4Oc+fOxWazYbPZWL58OXFxccyePZtz586h6zpffvklvXv39nVUIQKarut1G4HJi06XlBJpNDZqH+7qLC13ZIUQQgghvOAXV7Um69BplmRkkxQfSdvYUF9HapDhw4eTmZnJpEmT0DSNMWPGcM899xAVFcW0adPQNI0+ffpwxx13+DqqEAFN13VULxaydTmSw6VjaGQmd70jKWSFEEIIIbxAURRuH5fA3Nc28NqnWTx2ex8MWmB2jps1axazZs2qtGzatGlMmzbNR4mEEI1VlzulLl13WyHaWIF59RRCCCGECEAhFiO3X5NATl4BH60+4Os4Qgg/puu6V3sW12WAZJ3G31F1V9diKWSFEEIIIbyoZ+fmDElpyefrD7HjQL6v4wgh/JSu6yhevP9Zl6LZ6XL5TddiKWSFEEIIIbzsxlGdad08mHn/3UrmvpO+jiOE8EM6+N0I53aXC6PqH5kC+hlZ1U0nMSYmpt77i4mJwWjU3JahLseDxr9nb+V1l0vzuus8eJK7s9XlPde0Tm3bV1zu7fPbkOPVtK4/fy4aw53vy5PnqKGf1Uuvp9Xtx5f//v35s+WpbO443+7IVt8cdV3fF9kqCrYY+cP0Prz26U4Wr9yH2WwgqV1knfbnz5/HxlAM1c+vGx0TW7aO0Vzv/UbHxKK79AZt2xiNyXwZg4ZCYExTU61L3oNbz483ePhnUNX5MFtDcIWFo1hDypfFtGhZtp41rMr91PS6YlBRjK5q1w+PjkWNiKoxp6qrhLewYQyNqOUdVS+qdQuCo8Npca7s2MHR4VWuZ2lW84B4iq7XpTe0EEIIIYQQQgjhH6RrsRBCCCGEEEKIgCKFrBBCCCGEEEKIgCKFrBBCCCGEEEKIgCKFrBBCCCGEEEKIgCKFrBBCCCGEEEKIgCKFrBBCCCGEEEKIgCKFrBBCCCGEEEKIgCKFrBBCCCGEEEKIgCKFrBBCCCGEEEKIgCKFbD3MmzePF154ofzv2dnZ3HTTTaSnpzN16lSysrIAyM3N5c477yQ9PZ1rr72WdevW+XXei9asWcNtt93m7ZiV1DWzzWZj9uzZjBs3jmuvvZbs7Gy/yAuXn8eioiJmz55NamoqkydPZsWKFd6OWUldMgM8/fTTpKWlMX78eD799FNvRqykLnkfe+wx0tPTy/9LTEzkiy++8HZUvzNv3jxSU1NJS0vjzTffBODdd98lLS2N1NRUnnnmGXRd95tsFy1cuJDp06f7JBdUne2RRx5hzJgx5Z+xr7/+2i9ybd68mSlTppCWlsaDDz6IzWbzeq6qsmVkZFT6NzlgwADuvvtuv8gGsHr1aiZOnMj48eP5/e9/7zfnDeDDDz8kNTWVCRMm8OSTT+JwOHySLZAFWnutKoHYhrtUoLXpqhKI7bxLBVq7r150Uatz587pjzzyiN69e3d9/vz55cunTZumr1ixQtd1XV+7dq0+YcIEXdd1/Xe/+52+YMECXdd1PTs7Wx80aJDucDj8Nq/T6dRff/11vV+/fvott9zitZyNyfzaa6/pf/zjH3Vd1/WNGzfq119/vc/zVnce//nPf+pz5szRnU6nnp+fr48ZM0Y/fvy4V/PWN/PatWv1qVOn6g6HQ8/Ly9P79OmjFxUV+W3eij744AP9l7/8pe5yubwZ1+9s2LBBnzZtmm632/Xi4mL96quv1rOzs/XRo0frhYWFusPh0KdOnap/9913fpNN13V97969+tChQ312Laou2/jx4/UTJ074JFN1ubKysvTBgwfrWVlZuq7r+gMPPKAvXLjQL7Jd/Hnquq7n5ubqI0eO1A8cOOA32YYNG6bv27dP13Vd/+1vf6svXrzYb7INHTq0/LP2pz/9SX/jjTe8ni1QBVp7rSqB2Ia7VKC16aoSiO28SwVau68h5I5sHSxfvpz4+HjuuOOOSstvuOEGhg0bBkDXrl05duwYAGPGjGHChAkAtGvXjtLSUoqKivw2b3Z2NtnZ2fzlL3/xWsZL1TfzqlWrmDhxIgB9+/bl9OnTHD161Kd5qzuPWVlZjB07FlVViYyMJCEhge+++85rWS+qT2an00lpaSkOh4Pi4mJMJpO349Yr70WnT59m/vz5PPHEEyiK4q2ofqlfv368/fbbGAwGTp06hdPpxGq18tlnn2G1Wjl37hwFBQWEhYX5TTabzcZjjz3Gfffd5/VMNWUzm80cPXqUP/7xj0yYMIH58+fjcrl8nisrK4uePXuSkJAAwNy5cxk9erRXc1WXzWq1lr/+7LPPMm3aNOLj4/0mm9PppKCgoPxaZzab/SLb1q1b6dmzJzExMQBcffXVfPPNN17PFqgCrb1WlUBsw10q0Np0VQnEdt6lAq3d1xBSyNbBpEmTuOuuu9A0rdLyyZMnly+bP38+o0aNAsoujOHh4QC8/vrrJCYmEhoa6rd5O3fuzFNPPVWe2Rfqmzk3N5fo6Ojy9aKjozl+/LhP81Z3HpOSkvjiiy9wOBycOHGCH3/8kZMnT3ot60X1yTxkyBDatGnDsGHDSE1N5a677sJisfht3oveeust0tLSaN26tbdi+jWj0cj8+fNJS0tj4MCBxMbGYjQaWbx4MaNGjSI6Orq8CPKHbP/4xz+47rrriIuL80mm6rI5nU4GDBjA008/zeLFi9m0aRP//e9/fZ4rLy8Pq9XKvffey4QJE3jhhRd88sVEVdliY2MBOHjwIBs3buTWW2/1Sa7qsj3++ONMnz6doUOHcvr0aa655hq/yNa9e3cyMzM5duwYTqeTL774wie/LwJVoLXXqhKIbbhLBVqbriqB2M67VKC1+xpCCtkKli1bxrBhwyr9d/vtt9e4ja7rPPPMM2RmZvKHP/yh0mtvvfUWixYt4tlnnw2IvN7gycyq6v6Pc0PyXuruu+/GZDJx7bXX8tRTTzFkyBCMRqPbs17kjsyLFi1C0zRWr17NihUreP/999myZYvf5gVwuVwsWbKkQds2ZbNmzWLdunUcO3aMxYsXAzBlyhQ2bNhA8+bNefHFF/0i26JFizh27BjXXXedz/JUVDHbunXreOmll2jWrBkWi4Xp06eTkZHh81w2m43Vq1czZ84cli5dSnFxMa+88opPcl2a7eJnbdGiRdx0000+/3a/YraXXnqJ5557jk8//ZTVq1fTo0cP/vrXv/pFtu+//57f/e53/PrXv+bmm2+ma9euHv19EagCrb1WlUBsw10q0Np0VQnEdt6lAq3d504GXwfwJ+PGjWPcuHF1Xt/hcPDwww9z4sQJ3n777Urf4j377LNkZGSwcOFCWrRo4Ym4bs3rLe7KHBMTQ15eHu3atQMgLy+vvCuWL/NW5fz58zzwwANERkYCMHPmTNq2beuOeFVyR+bly5dz4403YjQaiY6OZsSIEWzatImePXu6J2QF7sgLZYPexMfHl98JutJlZ2djs9lITEzEYrEwZswYMjMz6dSpE71798ZgMJCWlsZ7773nN9n27t1Leno6RUVFnDx5kvvvv5/nn3/e59k+//xzIiIiGDt2LFDWEDMYvPvrs6pczzzzDIMHD6ZNmzZA2b+ld955x6u5qsu2e/duoOxa8vrrr3s9U03Z3n33Xbp06VJ+HZ4yZQr333+/X2TbunUrM2bMYOnSpQB89dVX5T9f8bNAa69VJRDbcJcKtDZdVQKxnXepQGv3uZPckW2EZ555hoKCAt54441KF5S33nqLDRs28N5773n1olib6vL6s+oyDx8+nI8++giATZs2YTabadWqla9i1ujLL79k/vz5AOzatYsdO3YwcOBAH6eqWUJCQvlzWUVFRaxfv57k5GQfp6rZli1b6N27t69j+I2cnBzmzp2LzWbDZrOxfPly4uLimD17NufOnUPXdb788kufnLOqsg0ZMoRly5bx0Ucf8eSTT5KcnOz1Ira6bH379uXpp5/m7Nmz2O12Fi1a5PVnUavK9cQTT7Bjx47y58xWrlxJt27dvJqrumy9e/cmPz+fkpISnxZiVWWbOHEiW7duLe/6t3z5clJSUvwiW//+/bntttsoKCjAZrOxYMECUlNTvZ6tqQm09lpVArENd6mm0KarSiC28y4ViO0+kDuyDZafn8/ChQuJi4vjhhtuKF++dOlSXnrpJUJCQipNH/HKK6/49E5RdXkvXjj8UU2Zp0+fzmOPPUZaWhomk8mr3YHqa8qUKcyePZvx48djMBj417/+RUhIiK9j1WjmzJn8+c9/Zty4cWiaxvXXX8+AAQN8HatGhw8fpmvXrr6O4TeGDx9OZmYmkyZNQtM0xowZwz333ENUVBTTpk1D0zT69Olz2WAcvsqWlpbm9RxVqSrbb37zGyIjI7nxxhtxOByMGTOG8ePH+zzXpEmTiIiIYObMmZSWlpKYmMjDDz/s1VzVZUtLS2Pr1q0+Lw6qynb33XcTExPDrbfeiqZptGvXjieeeMIvsk2cOJHS0lKmTp2Kw+Fg/Pjx5YMRiYYJtPZaVQKxDXepptKmq0ogtvMuFYjtPgBF1300iaAQQgghhBBCCNEA0rVYCCGEEEIIIURAkUJWCCGEEEIIIURAkUJWCCGEEEIIIURAkUJWCCGEEEIIIURAkUJWCCGEEEIIIURAkUJWeFROTg69evXy+HEeffRR1q5dC8DcuXPZvn17vbbPz8+XqVuEEG7VkOvfiy++WD6X37x581i6dOlly+ujV69e5OTk1Hs7IYSoirTrhD+RQlY0CU899RSDBg0CYO3atcisUkKIQLRhwwYcDgcA9913H5MmTbpsuRBCNHXSrhN1YfB1AHFlOn/+PH/+85/ZtWsXiqIwdOhQHnzwQQwGAykpKdx1112sWbOG3Nxcbr31Vm6//XacTifPPvssK1asIDQ0lO7du5Odnc2CBQuYPn06N998M1lZWeTm5vLQQw/x7LPP8txzz3HzzTdzzTXXAJSvd8011/DVV1/xr3/9C4vFQnJycqV8H3zwAe+99x4ul4uIiAj++Mc/0rFjR1+cKiFEE3PgwAGeeOIJioqKyM3NJSEhgeeff57//ve/bN++nWeffRZN01i+fDmdO3cmKCioyuV33nknAHPmzCn/+6ZNm/jLX/6CoiikpKTgcrnKj7tixQpefvll7HY7QUFBPPzww165syKEaPqkXSd8Qe7ICp948skniYiI4JNPPmHJkiXs3r2bN954AwCbzUZkZCTvv/8+8+fP5x//+AelpaV88MEH7Nixg08//ZT333+fw4cPX7bfBx54gJiYGJ577jl69OhR7fFPnjzJH/7wB1544QU+/PBDWrduXf7axo0bWbp0KQsXLmTp0qX86le/4re//a37T4IQ4oq0ePFiJk2axKJFi/jqq6/Iyclh1apV3HzzzSQnJ/P73/+e0aNHl69f3fJL2Ww27rvvPubMmcPSpUvp378/JSUlABw8eJB//etfvPLKKyxdupS//OUv/Pa3v6WoqMjj71cI0fRJu074ghSywie+/fZbbrnlFhRFwWQyMW3aNL799tvy10eOHAlAt27dsNlsFBUVkZGRQXp6OmazGZPJxNSpUxt8/B9++IEuXbrQqVMngEr7WrVqFYcOHWLatGmkp6fz97//nbNnz3LmzJkGH08IIS6aPXs2UVFRvPrqqzz++OPk5ua6paDcs2cPBoOBgQMHAjB+/HiCg4MByu+E3H777aSnp/PQQw+hKAo//fRTo48rhBDSrhO+IF2LhU9U7O528e8Vn/8ym80AKIoCgK7rGAyVP66qWrfvYSo+V2G328v3W3F5xX27XC7S09OZPXt2+d9zc3MJDw+v0/GEEKImDz74IE6nk3HjxjFixAiOHTtWr+e/Lr1+VXddg5+vbS6Xi4EDB/L888+Xv3bs2DFiYmIa8U6EEKKMtOuEL8gdWeETQ4YMYeHChei6js1mY/HixeUP9Vdn+PDhfPzxx9hsNhwOB//73/+qXE/TtPKLZ1RUVPlIdz/99BO7d+8GoE+fPuzbt49du3YB8OGHH5ZvP3jwYD777DNyc3MBeO+997jtttsa94aFEOKC1atXc++995KamoqiKGRmZuJ0OoHK16+KKi6PjIwsv67l5+ezadMmALp06YKu62RkZACwfPlyzp49C8CAAQNYs2YN2dnZAGRkZDBx4kRKS0s9+2aFEFcEadcJX5A7ssLjioqKLhtQ5N///jeLFi1iwoQJ2O12hg4dysyZM2vcz+TJkzlw4ACTJk3CarUSFxeHxWK5bL1Ro0bxwAMP8OSTT/LrX/+aOXPmkJGRQYcOHejTpw9QdiF87rnneOihhzAajfTt27d8+6FDhzJjxgx++ctfoigKISEhvPjii+XfIgohRF1Vdf27//77uffeewkPD8disdC3b9/yLr5XX301zzzzTPldhosqLp8+fToPPfQQY8eOJS4ujn79+gFgNBp56aWXePzxx/nnP/9JYmIizZo1A6Bz58488cQTPPjgg+V3Ql5++WWsVqsXzoIQoimRdp3wF4ou41mLALF69WpOnTpFeno6UDawgNlsLu8qIoQQQgghAoO060RjSSErAsaJEyeYM2cOp06dwul0kpCQwOOPP05oaKivowkhhBBCiHqQdp1oLClkhRBCCCGEEEIEFBnsSQghhBBCCCFEQJFCVgghhBBCCCFEQJFCVgghhBBCCCFEQJFCVgghhBBCCCFEQJFCVgghhBBCCCFEQJFCVgghhBBCCCFEQPn/mCiQVN+2D+QAAAAASUVORK5CYII=\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "sns.set(rc={'figure.figsize':(16, 6)})\n", "plot_partial_dependence(model, X_train, ['Longitude','Latitude', ['Longitude','Latitude']])" ] }, - { - "cell_type": "code", - "execution_count": 50, - "id": "77f83daa", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "5247 5.00001\n", - "19550 0.73700\n", - "18764 0.75800\n", - "15779 3.50000\n", - "8870 5.00001\n", - " ... \n", - "10967 1.92700\n", - "17310 5.00001\n", - "5199 0.94100\n", - "12187 1.57400\n", - "235 1.26000\n", - "Name: MedHouseVal, Length: 16494, dtype: float64" - ] - }, - "execution_count": 50, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "y_train.median()\n", - "\n", - "y_train" - ] - }, { "cell_type": "markdown", "id": "4faad025", @@ -189825,8 +76630,8 @@ }, { "cell_type": "code", - "execution_count": 10, - "id": "f05f2580", + "execution_count": null, + "id": "93822216", "metadata": {}, "outputs": [], "source": [ @@ -189838,20 +76643,20 @@ "from alibi.explainers.counterfactual import CounterFactual\n", "from sklearn.datasets import fetch_california_housing\n", "from sklearn.ensemble import RandomForestClassifier\n", - "from sklearn.model_selection import train_test_split" + "from sklearn.model_selection import train_test_split\n", + "\n", + "np.random.seed(1)\n", + "sns.set(rc={'figure.figsize': (8, 8)})\n", + "tf.compat.v1.disable_eager_execution()" ] }, { "cell_type": "code", - "execution_count": 11, + "execution_count": null, "id": "6a36e201", "metadata": {}, "outputs": [], "source": [ - "np.random.seed(1)\n", - "sns.set(rc={'figure.figsize': (8, 8)})\n", - "tf.compat.v1.disable_eager_execution()\n", - "\n", "# Load the dataset and organise data\n", "data = fetch_california_housing(as_frame=True)\n", "X_train, X_test, y_train, y_test = train_test_split(data.frame[data.feature_names],\n", @@ -189867,21 +76672,10 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": null, "id": "c1674e3a", "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.8907461240310077" - ] - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "# Train (and evaluate) a classifier\n", "model = RandomForestClassifier(random_state=0).fit(X_train, y_train_bool)\n", @@ -189898,21 +76692,10 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "id": "a2c929f7", "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "array([ True])" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "# Customise the sample and make a prediction for it\n", "X_test_sample_high = X_test_sample.copy()\n", @@ -189930,37 +76713,20 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "id": "f39b6496", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "above median house prices: True\n" - ] - } - ], + "outputs": [], "source": [ "print(f'above median house prices: {model.predict(X_test_sample_high)[0]}')" ] }, { "cell_type": "code", - "execution_count": 15, - "id": "8cc45412", + "execution_count": null, + "id": "9c1ed05d", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "WARNING:tensorflow:From c:\\users\\user\\pycharmprojects\\xai\\venv\\lib\\site-packages\\alibi\\explainers\\counterfactual.py:157: The name tf.keras.backend.get_session is deprecated. Please use tf.compat.v1.keras.backend.get_session instead.\n", - "\n" - ] - } - ], + "outputs": [], "source": [ "# Create a CounterFactual object, and generate an explanation for it\n", "counterfactual = CounterFactual(predict_fn=model.predict_proba, shape=X_test_sample_high.shape)\n", @@ -189969,7 +76735,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": null, "id": "b8633d2c", "metadata": {}, "outputs": [], @@ -189983,70 +76749,10 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": null, "id": "cc2307ef", "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
MedIncHouseAgeAveRoomsAveBedrmsPopulationAveOccupLatitudeLongitude
21514.237.04.9885841.0388131143.02.60958936.78-119.78
\n", - "
" - ], - "text/plain": [ - " MedInc HouseAge AveRooms AveBedrms Population AveOccup Latitude \\\n", - "2151 4.2 37.0 4.988584 1.038813 1143.0 2.609589 36.78 \n", - "\n", - " Longitude \n", - "2151 -119.78 " - ] - }, - "execution_count": 17, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "X_test_sample_high" ] @@ -190061,78 +76767,18 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": null, "id": "a527c29d", "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
MedIncHouseAgeAveRoomsAveBedrmsPopulationAveOccupLatitudeLongitude
03.01488637.05.1154250.9485451143.02.56220936.779999-119.822258
\n", - "
" - ], - "text/plain": [ - " MedInc HouseAge AveRooms AveBedrms Population AveOccup Latitude \\\n", - "0 3.014886 37.0 5.115425 0.948545 1143.0 2.562209 36.779999 \n", - "\n", - " Longitude \n", - "0 -119.822258 " - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ "cf_df_original" ] }, { "cell_type": "code", - "execution_count": 19, - "id": "86ae4d49", + "execution_count": null, + "id": "0b50a033", "metadata": {}, "outputs": [], "source": [ @@ -190144,21 +76790,10 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": null, "id": "25c8b465", "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAfQAAAHwCAYAAABQR52cAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8rg+JYAAAACXBIWXMAAAsTAAALEwEAmpwYAAA+jklEQVR4nO3dd3xOd//H8feVZTSIkaR30RYlZqyWoPaMJnZRivZ261Q3vauUWLWDUnGX0tatrREj9t5qlGqNqF3EKAlihci6zu8Pj1w/MRN1Gd++no+Hx8N15ud7zsl5X2dc59gsy7IEAACeai6PuwAAAPDXEegAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQ8kJSUFE2ePFnNmjVT48aN1bBhQ40YMUKJiYmSpJ49e+rbb799zFU+WmXLltXJkyczNM7nn3+usLCw27qfOHFCH3300cMq7Z7WrVunL7/88pHM668aN26cVq1aleHxNm7cqJo1a6p58+a6fv16hsefNWuWpk6dmuHxUp08eVJly5Z94PEflaelTtwZgY4H0r9/f+3YsUNTpkzR/PnzNXv2bB09elS9e/d+3KUZ4c8//9TRo0cfybwiIyN16dKlRzKvv2rr1q1KTk7O8HiLFy/W66+/rjlz5ihz5swZHv/XX399oC8CwKPk9rgLwNPnxIkTWrhwoTZu3ChPT09JUtasWTVgwADt2LHDMdyOHTvUunVrnTt3ToULF9aoUaOUNWtWzZ49W+Hh4UpKStKlS5fUqVMntWnTRhEREVq5cqVcXFwUFRUld3d3DR8+XEWKFFFUVJR69eqlS5cuydvbW5ZlqVGjRmrWrJl+++03jRw5UvHx8bLZbProo49Us2bN2+ouVaqU3nnnHW3atEkxMTFq37693nrrLUk3jsCmT58uu90uLy8v9enTR4UKFVJiYqJGjhypX375RSkpKSpevLhCQkLk6emp7du3a+DAgbLZbCpVqpTsdrtjXmvWrNH48eOVlJSkzJkzq0ePHipbtqzi4uLUu3dv7d+/Xz4+PnJ1dVX58uXT1JmSkqKQkBBFR0erY8eO+vbbb7Vq1SqNGzdOKSkp8vT01GeffSZ/f//b2hgREaGJEycqc+bMCggI0Pfff6+9e/dKksaPH68VK1bIbrcrb9686tevn86cOaMZM2YoJSVF2bJlU7du3dJM727r6la7du3SoEGDFB8fL3d3d3366aeqVKmStm/frtDQUEf3rl27qlq1aoqIiNDy5cv19ddfO+pO/dyzZ095enrqwIEDOnPmjAoWLKgvvvhC8+bN0549exQaGipXV1dVr179ruumVq1a8vf314EDB9S8eXOtXr1amTJl0pUrV9SxY0f17dtX58+f19mzZ5U3b16NGTNGuXPn1tGjR9W3b1/FxsbKxcVF77//vtzd3bVmzRpt2rRJmTNnVmxsrC5cuKC+fftKksLCwhyfd+7c6ThTdfbsWVWuXFlDhgy559/T3bbfcePG6aefftK0adMUGxurpk2bauTIkfL391f//v117NgxXbp0Sc8884xGjhypggULql27dipRooR+/vlnnT9/Xu3bt9f58+e1bds2xcfHa8yYMfLz81O7du1UqFAh7dmzRxcuXFDjxo3VpUuX22q70zbj6+t7z/bgMbKADFq2bJnVvHnzew7To0cPq0WLFta1a9es5ORkq2nTptbcuXOtuLg4q2XLllZsbKxlWZa1Y8cOq0yZMpZlWdacOXOs8uXLW6dPn7Ysy7I+//xz69NPP7Usy7JatmxpTZ061bIsyzp8+LBVunRpa86cOdbFixetevXqWSdOnLAsy7LOnDljVatWzTp16tRtNRUpUsT64YcfLMuyrMjISKtkyZLW9evXra1bt1pt2rSxrl27ZlmWZf30009WYGCgZVmWFRYWZg0bNsyy2+2WZVnWqFGjrH79+lkJCQlW5cqVrc2bN1uWZVkLFy60ihQpYp04ccI6evSoFRQU5GjjwYMHrSpVqlhXr161Bg8ebH366aeW3W63zp8/b1WrVs0aO3bsbbX+/PPP1muvveZob+XKla3jx49blmVZmzdvtqpUqWJduXIlzTiHDh2yKlWq5Fh+YWFhVpEiRSzLsqy5c+daXbt2tZKSkizLsqwZM2ZY//rXvyzLsqyxY8daAwYMuK2Ge62rmyUmJlpVqlSx1q5d61i2qe2vVKmStXPnTsdyqFChgnX8+HFrzpw51jvvvOOYxs2fe/ToYbVq1cpKSEiwEhMTrSZNmlizZ8+2LMuy3nzzTWvp0qX3XDeWZVk1a9a0xo0b55h+jx49rG+++cayLMv63//+Z3399deWZVmW3W63/vWvf1nffvutZVmW1aRJE+vHH3+0LMuy/vzzT6t27drWlStX0ox/6/K6+XO3bt2sn3/+2bH8KlasaEVGRlonTpy447K71/abnJxstW3b1vr666+tDh06WOPHj7csy7KWLl1qDRw40DGNPn36WJ9//rlj+XTu3NmyLMvauXOnVaRIEWv16tWWZVnW4MGDrZCQEMdwnTp1shITE61Lly5Z9evXt9asWZOmznttM3gycYSODHNxcUlzNHo3derUUZYsWSRJhQsXVmxsrJ555hlNmDBB69ev17Fjx7R//35du3bNMU6JEiX07LPPSpKKFy+ulStX6tKlS9q9e7d+/PFHSVKhQoUUEBAgSdq5c6fOnj2rDz/80DENm82mAwcO6Lnnnrutptq1azvmk5iYqGvXrmndunWKiopS69atHcNdunRJFy9e1Lp163TlyhVt3rxZkpSUlKTcuXPr4MGDcnNzU6VKlSRJQUFBjiO21DMAqUf/qTUdP35cW7ZsUa9evWSz2ZQrVy7VrVv3vsvx559/VkBAgPLnzy9JqlSpknLlyqU9e/Y4loN04zpxlSpVHMvvzTffdFyfX7t2rSIjI9W8eXNJkt1uV3x8/D3ne791lergwYNycXFRjRo1JEklS5bUwoULtX79ej3//PMqXbq0pBvbQLly5bRt2zbZbLZ7zrtq1ary8PCQJBUpUuSOlwTutm5Svfzyy3ecdocOHbR9+3ZNnjxZx44d06FDh1S6dGldvHhR+/fv1+uvvy5J+sc//pHh6/XDhg3Thg0bNGHCBB05ckTXr1/XtWvX5OXldcfh77f9jhgxQo0aNVLJkiX17rvvSpIaNGig/Pnz64cfflBUVJS2bduW5rp36jaVur1UrVpVkvT8889r27ZtjuFatWold3d3ubu7q0GDBtq4caMKFy7s6P8g2wweLwIdGebv768jR44oLi7OccpdkqKjo9WnTx+NHTtWkuTm9v+bl81mk2VZOnPmjFq1aqWWLVuqfPnyatCggdauXesY7ubrm6njuLq6SpKsm147kNotJSVFhQoV0qxZs9LUkStXrjvWnilTJse0U6dpt9vVuHFjde/eXdKNHVdMTIxy5Mghu92uXr16qXr16pKkq1evKiEhQadPn05Tz83ttdvtqlSpksaMGePod/r0afn4+Ny1Hfdy63xSu916LdnV1fWu07bb7frXv/7lOF2emJh43+vm91tXN8/n1oA+ePDgHb/0pdbt4eGRptakpKQ0w91pO7jV3dZNqqxZs96xXSNGjNDu3bvVvHlzVaxYUcnJybIsy7H+bm7LkSNHbvtieGs9N9fetm1bFS1aVFWrVlVgYKB27dp1x9pT3W/7/fPPP5UpUyZFRUXp8uXLypEjh6ZNm6aZM2eqbdu2Cg4OlpeXV5qbMVO/CKVyd3e/47xv/vu0LEsuLmlvqXqQbQaPFzfFIcN8fX0VHBysXr16KS4uTpIUFxen/v37y8vL6543He3Zs0e5cuXSBx98oKpVqzoCIiUl5a7jeHp6qly5coqIiJB04xr+li1bZLPZVKZMGUVFRemXX36RJO3bt0/169dXTExMuttTpUoVLV682DHO9OnT1aFDB0nSq6++qqlTpyoxMVF2u119+vTRF198oSJFisiyLK1fv16StHr1asfOLiAgQJs2bdIff/whSVq/fr0aNWqkhIQEVa1aVbNnz5bdbtelS5e0evXqO9bk6urqCIrU6Z04cUKStGXLFp0+fdpx5Jvq1Vdf1ZYtWxQdHS1JaULi1Vdf1ezZsx3r68svv9Snn37qmNedbjRL77oqWLCgbDabNm3aJEn6/fff1aFDB/n7++vo0aPavXu3JOnQoUP65ZdfVKFCBeXKlUuHDh1SQkKCkpOT7/hF4W7LJbXWu62b+9m4caM6dOigJk2aKHfu3Nq8ebPj3oQSJUpo3rx5km58CXvjjTd05cqVNPPNmTOnfv/9d1mWpWvXrmnjxo2SbpzV2bNnjz755BPVq1dP0dHROn78+D3PZt1r+718+bK6d++u4cOHKygoyHHD6caNG9W0aVO9/vrrKlCggNasWXPPv5+7WbBggWM7XLp0qWrVqpWm/722GTyZOELHA+nXr5+++uortW7dWq6urkpMTFSdOnXu+1OrKlWqaPbs2WrQoIGyZMkif39/5cqVS1FRUfccb/jw4erdu7emTZsmX19f5cuXT5kzZ1auXLk0duxYhYaGKiEhQZZlKTQ0VHnz5k13W6pWrapOnTrpn//8p2w2mzw9PTVu3DjZbDZ98MEHGj58uJo2baqUlBQVK1ZMPXv2lLu7u/773/+qf//++uKLL1SsWDHH6d7ChQvr888/18cff+w48hs/fryyZs2qjz76SP369VNgYKBy5cqlIkWK3LGmwoULy9XVVS1atNCsWbPUr18/de7cWSkpKcqcObMmTJigbNmypRmnQIEC+uyzz9SxY0d5eHioWLFijkser7/+uqKjo9WyZUvZbDb94x//0LBhwyTdOIX/0Ucfyd3dXX369EnXuipYsKBjOA8PD4WFhWnIkCEKDQ2Vu7u7wsLClDt3bn355ZcaOHCgrl+/LpvNpqFDh6pAgQLKnz+/XnnlFQUGBsrb21sVK1bUgQMH7ruuatasqeHDhyspKemu6+Z+PvzwQ4WGhuqrr76Sq6urypUrp+PHj0uSRo0apQEDBuiHH36QzWbT4MGD5e3trWrVqmngwIGSpDZt2uinn35SvXr15Ovrq7Jly8qyLOXIkUPvvPOOmjZtKi8vL+XMmVPlypVTVFSU4/T3re61/Xbp0kU1atRQlSpV9Morr6hFixaaOnWq/vnPf6pv376KiIiQq6urSpQooYMHD9633be6fv26WrRooatXr6pNmzaqVKlSmiP9e20zeDLZrHudDwKeEOPHj1e9evVUqFAhXblyRY0aNdKkSZP00ksvPe7SnhgnTpzQ/Pnz9cEHH8jFxUUrVqzQpEmT0hypA5LUrl07tW3bVg0aNHjcpeAh4ggdT4UXX3xR3bp1k4uLi1JSUtSpUyfC/BbPPvusYmJiFBwcLFdXV2XLlu2+P5kCYA6O0AEAMAA3xQEAYAACHQAAAxDoAAAY4Km+Ke7Chauy27kFAABgPhcXm3LmfOau/Z/qQLfbLQIdAABxyh0AACMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxAoAMAYAACHQAAAxDoAAAYwO1xFwAATwOvnFnl7ub6uMtIt6TkFF28cO1xl4FHiEAHgHRwd3PV4t+PPe4y0u21Ei8+7hLwiHHKHQAAAxDoAAAYgEAHAMAABDoAAAYg0AEAMIDTAz0uLk5BQUE6efLkbf327dun5s2bq379+urdu7eSk5OdXQ4AAEZyaqDv2rVLb7zxho4dO3bH/t27d1efPn20fPlyWZalmTNnOrMcAACM5dRAnzlzpvr16ycfH5/b+p06dUrXr19XmTJlJEnNmjXTsmXLnFkOAADGcuqDZQYPHnzXfjExMfL29nZ89vb2VnR0dIamnzu3523dUux2ubo8PbcGPG31OtPTuCwyUjPte/I8jTVnhLd3tsddAh6hx/akOMuybutms9kyNI3z5+Nkt6edjrd3tqfuaU5nz1553GU8EZ62dSdlbP3RvidPRtv3tGHfYhYXF9sdD2Qd/R9hLWn4+vrq3Llzjs9nz56946l5AABwf48t0PPmzatMmTLp119/lSTNmzdP1apVe1zlAADwVHvkgd6pUydFRkZKkkaOHKmhQ4cqMDBQ8fHxat++/aMuBwAAIzySa+hr1qxx/H/SpEmO/xctWlSzZ89+FCUAAGA0c2/vBADgb4RABwDAAI/tZ2sAgCeHV86scndzfdxlpFtScoouXrj2uMt4ohDoAAC5u7k+Vc8ReK3Ei4+7hCcOp9wBADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxAoAMAYAACHQAAAxDoAAAYgEAHAMAABDoAAAYg0AEAMACBDgCAAQh0AAAMQKADAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADCA2+MuAAAAZ/LKmVXubq6Pu4wMSUpO0cUL1zI0DoEOADCau5urFv9+7HGXkSGvlXgxw+Nwyh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxAoAMAYAACHQAAAxDoAAAYgEAHAMAABDoAAAYg0AEAMACBDgCAAQh0AAAMQKADAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxAoAMAYAACHQAAAzg10BcuXKiGDRuqbt26mjp16m39f//9dzVv3lyNGjXSu+++q8uXLzuzHAAAjOW0QI+Ojtbo0aM1bdo0zZ8/X+Hh4Tp8+HCaYQYPHqwuXbpowYIFKlCggL799ltnlQMAgNGcFuibN29WQECAvLy8lDVrVtWvX1/Lli1LM4zdbtfVq1clSfHx8cqcObOzygEAwGhuzppwTEyMvL29HZ99fHy0e/fuNMP07NlTb7/9toYMGaIsWbJo5syZGZpH7tyeD6XWx83bO9vjLgF/genrj/Y9vUxum0T7buW0QLcs67ZuNpvN8f/r16+rd+/emjJlivz9/TV58mT16NFDEydOTPc8zp+Pk92edj5P4wo+e/bK4y7hifA0rjsp/euP9j2ZTG5fRvYtJrfvaWybdHv7XFxs9zyQddopd19fX507d87xOSYmRj4+Po7PBw8eVKZMmeTv7y9JatWqlbZt2+ascgAAMJrTAr1y5crasmWLYmNjFR8frxUrVqhatWqO/i+88ILOnDmjI0eOSJJWr16tUqVKOascAACM5rRT7r6+vurWrZvat2+vpKQktWjRQv7+/urUqZO6dOmiUqVKaejQoeratassy1Lu3Lk1ZMgQZ5UDAIDRnBbokhQcHKzg4OA03SZNmuT4f/Xq1VW9enVnlgAAwN8CT4oDAMAABDoAAAYg0AEAMACBDgCAAQh0AAAMQKADAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxAoAMAYAACHQAAAxDoAAAYgEAHAMAABDoAAAYg0AEAMIDb4y4AGeOVM6vc3VwfdxnplpScoosXrj3uMgDAeAT6U8bdzVWLfz/2uMtIt9dKvPi4SwCAvwVOuQMAYAACHQAAAxDoAAAYgEAHAMAABDoAAAYg0AEAMACBDgCAAQh0AAAMQKADAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxAoAMAYAACHQAAAxDoAAAYgEAHAMAABDoAAAYg0AEAMACBDgCAAQh0AAAMQKADAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABjAqYG+cOFCNWzYUHXr1tXUqVNv63/kyBG1a9dOjRo1UseOHXXp0iVnlgMAgLGcFujR0dEaPXq0pk2bpvnz5ys8PFyHDx929LcsS++//746deqkBQsWqFixYpo4caKzygEAwGhOC/TNmzcrICBAXl5eypo1q+rXr69ly5Y5+v/+++/KmjWrqlWrJkl677331LZtW2eVAwCA0dycNeGYmBh5e3s7Pvv4+Gj37t2Oz8ePH1eePHnUo0cP7d27V0WKFFGfPn0yNI/cuT0fWr2Pk7d3tsddglPRvqcb7Xt6mdw2ifbdymmBblnWbd1sNpvj/8nJydq2bZt+/PFHlSpVSmPGjNGwYcM0bNiwdM/j/Pk42e1p5/M0ruCzZ6+ke1iT2/c0tk2ifalo35OHfcsNT2PbpNvb5+Jiu+eBrNNOufv6+urcuXOOzzExMfLx8XF89vb21gsvvKBSpUpJkoKCgtIcwQMAgPRzWqBXrlxZW7ZsUWxsrOLj47VixQrH9XJJKlu2rGJjY7V//35J0po1a1SiRAlnlQMAgNGcdsrd19dX3bp1U/v27ZWUlKQWLVrI399fnTp1UpcuXVSqVCn997//VUhIiOLj4/Xss88qNDTUWeUAAGA0pwW6JAUHBys4ODhNt0mTJjn+X7p0ac2ePduZJQAA8LfAk+IAADBAugP9zJkzWr9+vVJSUnT69Gln1gQAADIoXYG+bt06tW7dWgMGDND58+fVsGFDrVq1ytm1AQCAdEpXoI8bN04zZ85U9uzZ5ePjo2nTpmns2LHOrg0AAKRTugLdbren+Q15sWLF0jwkBgAAPF7pCvQsWbLozz//dIT49u3blSlTJqcWBgAA0i9dP1v7z3/+o3/+8586e/asWrVqpWPHjiksLMzZtQEAgHRKV6CXK1dOM2fO1I4dO2S321W6dGnlypXL2bUBAIB0Slegz5s3L83nDRs2KEuWLHrppZdUqFAhZ9QFAAAyIF2BPn/+fO3cuVMBAQFydXXVli1blD9/fl2+fFnvvvuuWrVq5ew6AQDAPaQr0G02m2bPnu04Gj9x4oQGDRqkH3/8UW3atCHQAQB4zNJ1l/vZs2fTnFrPnz+/oqOj5enpKVdXV6cVBwAA0iddgZ4jRw6Fh4crJSVFycnJCg8Pl5eXl44ePSq73e7sGgEAwH2kK9CHDBmiuXPnqlSpUipdurQWLVqkwYMHa/ny5Xr//fedXSMAALiPdF1Df/755zVjxgxdvnxZLi4u8vT0lCS99957Ti0OAACkT7oC/fDhw/r222918eJFWZbl6D5hwgSnFQYAANIvXYH+6aefqly5cnrllVd4hjsAAE+gdAV6UlKSQkJCnF0LAAB4QOm6Ke6FF15QTEyMs2sBAAAPKF1H6Ha7XUFBQSpRokSat6xxDR0AgCdDugK9bt26qlu3rrNrAQAADyhdgd60adM0ny3LUlRUlFMKAgAAGZeuQJ8xY4ZCQ0MVHx/v6JYrVy5t2rTJaYUBAID0S1egT5w4UZMnT9b48ePVtWtXrV27VmfOnHF2bQAAIJ3SdZe7l5eXSpcurWLFiun8+fN6//33FRkZ6ezaAABAOqUr0N3c3HTp0iW98MIL2r17tyTp6tWrTi0MAACkX7oCvWXLlnr33XdVo0YNhYeHq1mzZipYsKCzawMAAOmUrmvoLVq0UMOGDZU1a1aFh4crMjJSVatWdXZtAAAgndIV6NevX9eqVasUGxvreDnLtGnT9Pbbbzu1OAAAkD7pCvSPP/5YZ86cUZEiRXg5CwAAT6B0BfqhQ4e0fPlyubik65I7AAB4xNKV0Llz51ZycrKzawEAAA/onkfokydPliR5e3urXbt2ql27ttzd3R39uYYOAMCT4Z6BfvDgQUmSp6enPD09dfToUSUkJKR54xoAAHj87nnKfcCAAUpJSVHt2rU1dOhQDR06VFevXpVlWRo4cOCjqhEAANzHPQM9LCxMV69eVdmyZR3dPv/8c12+fFlhYWFOLw4AAKTPPQN97dq1GjVqlHLnzu3o5uvrq9DQUK1atcrpxQEAgPS5Z6C7u7src+bMt3X39PSUh4eH04oCAAAZc89Ad3FxUVxc3G3d4+Li+BkbAABPkHsGelBQkEJCQnTt2jVHt2vXrikkJET16tVzenEAACB97hnoHTp0ULZs2VSlShW1bNlSLVq0UJUqVZQ9e3Z9+OGHj6pGAABwH/f8HbqLi4sGDhyod999V3v37pWLi4tKlSolX1/fR1UfAABIh3Q9yz1fvnzKly+fs2sBAAAPiLetAABgAAIdAAADEOgAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxAoAMAYAACHQAAAxDoAAAYgEAHAMAABDoAAAYg0AEAMACBDgCAAQh0AAAMQKADAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABnBqoC9cuFANGzZU3bp1NXXq1LsOt27dOtWqVcuZpQAAYDQ3Z004Ojpao0ePVkREhDw8PNS6dWtVrFhRL730Uprhzp07p+HDhzurDAAA/hacdoS+efNmBQQEyMvLS1mzZlX9+vW1bNmy24YLCQlR586dnVUGAAB/C047Qo+JiZG3t7fjs4+Pj3bv3p1mmO+//17FixdX6dKlH2geuXN7/qUanxTe3tkedwlORfuebrTv6WVy2yTadyunBbplWbd1s9lsjv8fPHhQK1as0P/+9z+dOXPmgeZx/nyc7Pa083kaV/DZs1fSPazJ7Xsa2ybRvlS078nDvuWGp7Ft0u3tc3Gx3fNA1mmn3H19fXXu3DnH55iYGPn4+Dg+L1u2TGfPnlXz5s31zjvvKCYmRm3atHFWOQAAGM1pgV65cmVt2bJFsbGxio+P14oVK1StWjVH/y5dumj58uWaP3++Jk6cKB8fH02bNs1Z5QAAYDSnHqF369ZN7du3V5MmTRQUFCR/f3916tRJkZGRzpotAAB/S067hi5JwcHBCg4OTtNt0qRJtw2XL18+rVmzxpmlAABgNJ4UBwCAAQh0AAAMQKADAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxAoAMAYAACHQAAAxDoAAAYgEAHAMAABDoAAAYg0AEAMACBDgCAAQh0AAAMQKADAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxAoAMAYAACHQAAAxDoAAAYgEAHAMAABDoAAAYg0AEAMACBDgCAAQh0AAAMQKADAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxAoAMAYAACHQAAAxDoAAAYgEAHAMAABDoAAAZwaqAvXLhQDRs2VN26dTV16tTb+q9atUqNGzdWo0aN9MEHH+jSpUvOLAcAAGM5LdCjo6M1evRoTZs2TfPnz1d4eLgOHz7s6B8XF6f+/ftr4sSJWrBggfz8/BQWFuascgAAMJrTAn3z5s0KCAiQl5eXsmbNqvr162vZsmWO/klJSerfv798fX0lSX5+fjp9+rSzygEAwGhuzppwTEyMvL29HZ99fHy0e/dux+ecOXOqTp06kqTr169r4sSJateuXYbmkTu358Mp9jHz9s72uEtwKtr3dKN9Ty+T2ybRvls5LdAty7qtm81mu63blStX9MEHH6ho0aJq2rRphuZx/nyc7Pa083kaV/DZs1fSPazJ7Xsa2ybRvlS078nDvuWGp7Ft0u3tc3Gx3fNA1mmn3H19fXXu3DnH55iYGPn4+KQZJiYmRm3atFHRokU1ePBgZ5UCAIDxnBbolStX1pYtWxQbG6v4+HitWLFC1apVc/RPSUnRe++9p8DAQPXu3fuOR+8AACB9nHbK3dfXV926dVP79u2VlJSkFi1ayN/fX506dVKXLl105swZ7d27VykpKVq+fLkkqWTJkhypAwDwAJwW6JIUHBys4ODgNN0mTZokSSpVqpT279/vzNkDAPC3wZPiAAAwAIEOAIABCHQAAAxAoAMAYAACHQAAAxDoAAAYgEAHAMAABDoAAAYg0AEAMACBDgCAAQh0AAAMQKADAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxAoAMAYAACHQAAAxDoAAAYgEAHAMAABDoAAAYg0AEAMACBDgCAAQh0AAAMQKADAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxAoAMAYAACHQAAAxDoAAAYgEAHAMAABDoAAAYg0AEAMACBDgCAAQh0AAAMQKADAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAEIdAAADECgAwBgAAIdAAADEOgAABiAQAcAwAAEOgAABnBqoC9cuFANGzZU3bp1NXXq1Nv679u3T82bN1f9+vXVu3dvJScnO7McAACM5bRAj46O1ujRozVt2jTNnz9f4eHhOnz4cJphunfvrj59+mj58uWyLEszZ850VjkAABjNzVkT3rx5swICAuTl5SVJql+/vpYtW6bOnTtLkk6dOqXr16+rTJkykqRmzZpp7NixatOmTbrn4eJiu2P3LO5Oa5ZT3K0dd2Ny+562tkm072a078nCvuX/PW1tk25v3/3a67QWxsTEyNvb2/HZx8dHu3fvvmt/b29vRUdHZ2geOXM+c8futYrky2C1j1fu3J4ZGt7k9j1tbZNo381o35OFfcv/e9raJmV8/TntlLtlWbd1s9ls6e4PAADSz2mB7uvrq3Pnzjk+x8TEyMfH5679z549m6Y/AABIP6cFeuXKlbVlyxbFxsYqPj5eK1asULVq1Rz98+bNq0yZMunXX3+VJM2bNy9NfwAAkH42607nvh+ShQsX6uuvv1ZSUpJatGihTp06qVOnTurSpYtKlSql/fv3KyQkRFevXlXx4sU1dOhQeXh4OKscAACM5dRABwAAjwZPigMAwAAEOgAABiDQAQAwAIEOAIABCHQAAAxgRKCfPHlSJUuWVOPGjdWkSRO99tprevvtt3XmzJmHNo+wsDCFhYXdc5ixY8dq+/btkqTevXsrMjLyoc3/Xk6ePCk/Pz/17ds3Tfd9+/bJz89PERER6ZrO1q1b1a5dO0npa+/DdPO8naFTp06Kjo7WiRMn1KtXrwyN66xlkdE23zxs48aNJUm7d+/WiBEjMjTfnj17pnubSI+TJ0+qVq1at3X38/N7aPO4n+HDhysgIECJiYkPfdoHDx6Un5+fli9f/kDjR0REqEKFCmrcuLEaN26soKAg1atXT6tWrXrIlf41f7WdknTs2DG9//77qlu3roKCgvTRRx/pxIkTD7HK9Pur7QkLC1OVKlXUuHFjNWrUSMHBwVq7dm2GphEREaGePXs+0PwfhBGBLt14Vvz8+fM1b948LV68WCVLltTAgQMfaQ2//PKLUlJSJEmDBw9WqVKlHtm8vby89NNPPznmL0lLlixRrly5HlkNT7JJkybJ19dXf/7552PbwfxV27Ztc/x//vz5kqTDhw/r/Pnzj6ukJ0JycrKWLl2qsmXLatmyZQ99+hEREapfv75mzJjxwNOoVauW5s+fr/nz52vRokX69NNPb/sC/rj91XaeO3dO7du3V2BgoFauXKlFixapTp06euONNxQbG/uQq72/h7HeWrdurfnz52vBggUKDQ3N8MHAo/b0vX4mnV5++WWtWbNGO3fu1ODBg5WQkKCcOXPq888/1wsvvKB27dqpYMGC2r17txISEtSrVy+9+uqr6tmzpypUqKBmzZpJunGUceDAgTTT/vHHHzV//nzFx8fLZrNpzJgxioyM1J49exQSEqJx48Zp0KBB6ty5sypWrKgJEyZowYIFcnV1VZUqVdS9e3edPn1anTt3VuHChbVv3z7lzp1bX375pePtdBn1zDPPqGjRovrll18UEBAgSdq0aZMqV64sSdqwYYPGjh2r5ORk5cuXTwMHDlTOnDm1ceNGDR06VJkyZVKBAgXuOO127dqpVKlS+vXXXxUbG6uQkBBVr15dp06d0meffabY2FhlzpxZgwYNUtGiRR+o/rvJ6LJbsmSJxo4dqyxZsqh48eJKSUnRsGHDVKtWLX3//fcaNGiQTp48qQEDBqhBgwYaN26cfvjhB0lKs+6/+eYbzZw5Uzlz5lT27Nnl7+9/z+X4sCQnJ6t///46dOiQzp07pwIFCmjcuHEaOXKkJOn111/XrFmz5Ofnp19++UVjx47VtWvXNH78ePn6+mrbtm0aNmyYpBvrrXPnzqpQoYKGDRumdevWycfHRykpKapQoYKkG09onDJliux2u0qUKKF+/fopU6ZMD609drtdQ4YM0ZYtW2Sz2dSoUSO988472rp16x2Xfb169fTxxx87Hgv94Ycfqnbt2oqKilL//v118eJFZc6cWX369FHx4sUlSevXr1f+/PnVpEkTff/992rUqJFj/qNGjdLy5cuVM2dOeXt7q1atWmrWrFm6252cnKwFCxZo6tSpat26tY4fP66pU6fKx8dHHTt2lCR16dJFQUFBKleunPr27aszZ87IZrPpP//5j+Pv71anTp1Sjhw5JEnx8fEKCQnRgQMHZLPZ1LFjRzVp0uSey27ChAmyLEvHjx9X/fr1lS1bNscR/8SJE5UjRw716tVLhw4dkiS1adNGLVu2vOt6ehjtnD59uipXrpxm+Tdu3Fhr1qzR9OnT9eGHH2rhwoUaP368bDabSpUqpYEDB+rq1avq3bu3jhw5Ig8PD/Xs2VOVKlVKs++NiIhwbNu1atVSrVq1HGdDhwwZ4tgWnLnerly5ojx58jg+320bmjdvnsaPHy9PT0/lzZtXWbNmlXTjS52/v7/27dunESNGqE+fPsqfP78OHjyokiVLqkKFCpo7d64uXbqk//73vypUqJCGDx+uTZs2ydXVVbVr13a8rfRujDlCv1lSUpKWLl0qf39/ffzxx+rTp48WLFig1q1b6+OPP3YMl5iYqLlz52rUqFHq2bNnuk7XxcXFadWqVfrhhx8c30CnTZumJk2aqGTJkho0aFCaU43r16/XmjVrFBERoblz5yoqKsrxjXH//v16++23tWjRImXPnl0LFy78S+0ODAx0nF7avXu3/Pz85O7urtjYWI0aNUrffvut5s2bp1dffVUjR45UYmKievbsqbFjxyoiIkKZM2e+67STkpIUHh6uzz77TF9++aUkacCAAapfv74WLVqkjz76SOPHj/9L9d8qo8suNjZWQ4YM0ZQpUzRnzhxdunTptmmGhISoZMmS6tev313nGxkZqTlz5mju3LmaPHmy49LN3Zbjw7Rjxw65u7srPDxcK1euVEJCgtavX6+QkBBJ0qxZsxzDZs+eXV26dFGtWrX0/vvv33Way5cv1969e7Vo0SJ9+eWXOn78uCTp0KFDmjlzpmbMmKH58+crd+7c+vbbbx+o7piYGMcp5dR/kjR9+nSdPn1aCxYs0KxZs7RixQqtW7furtNZuXKl8ubNq4iICI0YMcKx0+7Ro4e6d++uuXPnauDAgerWrZtjnIiICDVo0EDVq1fXvn37dPjwYUnSmjVr9Ouvv2rRokWaOHGi9u7dm+F2r1u3Ts8995wKFCigOnXqaMaMGWrcuLEWL14s6cb+4LffflONGjU0ePBgNW/eXBERERo/frz69u2ruLg4Ry2NGzdW7dq1VaVKFf3+++/66quvJN04tZszZ04tWrRIU6ZMUVhYmPbv33/PZbdr1y4NHTpUixcv1owZM5QrVy5FRETIz89Pixcv1o4dO3Tp0iXNmzdPkydP1m+//XbP9fcw2hkZGXnHs5KvvPKKIiMjFR0draFDh+q7777T4sWLlZKSovXr1+vLL7/U888/r6VLlyo0NFRjxoy5Z63SjTOS8+bNU5cuXdSjRw+nrbfU8QIDA/XWW2+pQ4cOku6+DUVHR2vkyJGaOnWqwsPDdfXq1TR1VatWTcuXL1euXLl04MABffDBB1q2bJkiIyN16tQphYeHKygoSOHh4Tp16pQ2bNigBQsWaMaMGTp27JgSEhLuuVyMOUJP3aFIN4La399fzZs31759+xxHV4GBgerbt6+uXLkiSY5vrMWKFZO3t/dtR+J34unpqVGjRmnx4sU6duyYfvrpJxUrVuyuw//888967bXXHGHZvHlzzZs3T9WrV1fu3Lkd3ywLFy58xwDKiJo1a2rMmDGy2+1aunSpAgMDtWTJEmXOnFmnT59W+/btJd04asqRI4cOHDggHx8fFSpUSJLUtGlTR1jfqmrVqo46L168KOnGJYYvvvhCklS9enVVr179L9V/q4wuu+3bt6ts2bLy9fWVJDVp0uSBrlNu27ZN1atX1zPP3Hg9b4MGDWS327Vr1647LseH6ZVXXpGXl5emTp2qI0eO6NixY7p27dpfmua2bdtUr149ubu7K1euXI53JmzdulVRUVGOv4OkpKTbjnTSK/WS1838/Py0detWNW3aVK6ursqSJYuCg4O1ZcuWO15zl6SyZcvqiy++UHR0tGrUqKEPP/xQV69e1Z49e/TZZ585hrt27ZouXLggy7K0ceNGDRw4UJkzZ1bNmjU1Y8YMhYSEaPPmzQoMDJSHh4c8PDxUp06dDLc7IiJCQUFBkqSGDRvqk08+UdeuXZWYmKioqCjt2LFDNWvWlIeHhzZv3qwjR45o7Nixkm4cJaZe3qlVq5aGDRumuLg4vfPOO46wkW5s50OGDJEk5cqVS7Vr19a2bdu0ffv2uy67IkWK6B//+IckKWfOnKpUqZIk6bnnntPly5dVuHBhHT16VB07dlS1atX0ySef3HP9PYx22my2NJf8UiUlJUm68WW1XLlyevbZZyXJce/HmDFjHF+M/fz8FB4efs9apf/fd9eqVUs9e/ZUbGxsmsuLD2u9tW7dWh999JGkG/eKtGzZUgUKFNC+ffvuuA3t2LFDZcuWdRzJBwcH6+eff3bUVbp0acf/8+TJ49junn322TTr8OTJk/L19VWmTJnUunVr1axZU127dr3v2TNjAv1OO5T9+/ffNpxlWY6NztXV1dHdbrfLzc1NNpvN8WrX1A3xZqdPn1a7du305ptvqlq1asqTJ4/27dt317rsdvtt3ZKTkyUpzcq5eb4PytPTU0WLFtWvv/6qn3/+Wf/5z3+0ZMkSpaSkqFy5cpowYYIkKSEhQVevXtWff/6Zpr6bl8etUmu9+RW3bm7/v/lYlqU//vhDL7300l9qw80yuuxcXFzuOM7d3LrMU9e3zWZLMx03NzclJibedTk+TKtXr9bYsWPVvn17NWvWzBFa6ZGR9khSSkqKAgMDHUf/V69eveMO+a+4dX2k/v3drdYXX3xRS5cu1U8//aS1a9fqu+++06xZs+Th4ZHm7/vMmTPy8vLSlClTZFmWWrRoIUm6fv26kpKS9Mknn9x1e0hvu8+fP68NGzZoz549+v7772VZli5fvqwVK1aoUaNGWrJkiXbs2KFOnTo52jplyhTHZbPo6Ojb9g+enp4aPny4goKCVLVqVZUvX/629Zu6jO627CTJ3d09Tb9b/3Zz5sypxYsXa9OmTVq/fr2aNm2qxYsXK3v27E5rp7+/v3bu3On4wptqx44dKlWqVJr9hSTHdfVbu//xxx+OLzuWZclmszn+7lPdPI7dbk/T/ofVnlsPBvLly6eyZctq586dcnNzu+M2tGXLljv+raW6eb9163tLbl2Hbm5umjVrlrZt26YNGzaodevW+uGHH+56aVQy9JR7qoIFC+rixYvavXu3pBs3iT333HOOFbdkyRJJN06xXr58WUWKFJGXl5fjlN2dju4iIyP1wgsv6K233lLp0qW1YcOGNF8Qbt0xBAQEaPHixbp+/bqSk5M1Z84cxzVuZwgMDNSoUaNUsmRJx8aUkJCgnTt36ujRo5Kkr776SqGhofLz89P58+cdX3xST0el18svv+wYZ/PmzerTp89DbEnGl125cuUUGRmpmJgYWZalJUuWpPkCIt1YR6k7h5w5c+rEiRNKSEjQxYsXHW/+q1SpktatW6crV64oISFBK1eulHTj2/WdluPDtGXLFgUGBqp58+bKkydPmhstb679bu35448/ZFmWTpw44TjjVKlSJS1btkyJiYm6dOmSfvrpJ0lSxYoVtXLlSp0/f16WZal///6aMmXKQ21PQECA5s2bp5SUFMXHx2vhwoWqWLHiXZf9jz/+qLCwMAUGBqpfv36KjY2VZVl68cUXHYG+adMmtW3bVpI0Z84cDRs2TGvWrNGaNWu0ceNG5ciRQ0uWLFGVKlW0YsUKJSYmKi4uTuvWrZPNZkt3uxcsWKCAgABt2LBBa9as0dq1a/Xee+8pPDxcwcHBWrJkiaKiovTyyy872jpt2jRJN25WbNSokeLj42+bbv78+dWuXTsNHTpUlmUpICBAs2fPlnQj5FavXq0KFSrcddmlx+rVq/XJJ5+oRo0aCgkJUdasWXX69Ok7Dvuw2tmmTRv9+uuvab54zZs3T7/99pveeOMNlSpVSrt27dLZs2cl3bj2vXr1ar388suOffEff/yhTp06yWazKWfOnDp06JAsy9KaNWvS1Jy631m5cqUKFSqU5kyZs9bb5cuXtXfvXhUvXvyu21D58uW1a9cuRUdHy263O9r1IPbu3as333xTr7zyinr06KFChQo59j13Y8wR+p14eHho9OjRGjhwoOLj45UjRw6NHj3a0f/EiRNq2rSpJGn06NFydXVVmzZt1LVrVwUHBysgIEDe3t5pplmlShVNnz5dDRs2lIeHh/z9/R03nlStWlX9+vXT8OHDHcPXrFlT+/btU/PmzZWcnKyqVavqzTfffKg/qbtZzZo11bt3b/373/92dMuTJ4+GDBmirl27ym63y9fXVyNGjJC7u7u++OILde/eXW5ubhk+3dq3b1+FhIRo2rRpypIliwYNGvSXak89ZZ4qODhYNWrUSPeyy5Url0JCQvTPf/5THh4eypcv321HJIUKFdKVK1fUvXt3jRgxQtWrV9drr72mvHnzqnz58pJuXILp0KGDWrRooezZs+u5556TJHl7e99xOT7MNvv7+2vr1q1atmyZPDw8VKZMGZ08eVKSVLt2bTVu3DjNT878/f0dN8116dJFc+bMUYMGDVSgQAFHe+rUqaPIyEgFBQUpT548jkssRYsWVefOndWhQwfZ7XYVK1ZM77zzzl9qz61atWqlY8eOqXHjxkpKSlKjRo1Ut25dSbrjsm/SpIk+/vhjBQcHy83NTZ07d1b27Nk1YsQI9e/fX998843c3d01evRo/f7777pw4YJjepLk4uKiDh06aMaMGZo5c6Z+++03NW3aVDly5JCPj48yZcqU7nZHRESkuVYv3bi57JtvvtG1a9eUM2dOlSlTxvGlMSQkRH379lVwcLAkKTQ0VJ6enndcLu+++65mz56tBQsW6MMPP1T//v0VHByslJQUvffeeypRooSKFClyx2W3devW+y731Gu1r732mjJlyqR69erd9WeED7OdU6dOVWhoqOP+gMKFC2v69OmO0+G9e/dWx44dZbfbVaZMGTVr1kxXr15VSEiIGjVqJDc3N4WGhjpuTnvvvfeUJ08elS9fXhcuXHDU99tvv2n27NnKkiWL4yZQZ7RnxowZWrVqlWw2m65evarXX3/dcWr8TttQpkyZFBISorfeektZsmT5S2csixcvrjJlyigoKEhZsmRRsWLF7vuK8b/t29ZS7wBO7zdePPkuXLigH374QZ07d5aLi4sGDRrk+EUD/n527NihY8eOqWnTpkpKSlKrVq00ZMiQh/5LDDxaqb9YyZcv3+Mu5Ylj9BE6/l68vLx0+fJlBQUFydXVVSVKlLjnT3VgttSf/E2ePFmWZalJkyaEOYz2tz1CBwDAJEbfFAcAwN8FgQ4AgAEIdAAADECgAwZr166dvv7669u6f/fdd3rvvffSNY3p06dr4sSJ9xxm69atjidz3apnz54P/EhZAOlHoAMGa9u27R1flTpz5ky9+eab6ZrGG2+88dB/nw7g4eNna4DB6tSpo8GDB2v79u2OJ2Nt27ZNlmUpMjJSY8aMUUJCguLj49WjRw/VrVtXYWFh2rlzp2JiYuTn56cXXnhBFy5cUN++fbV27Vp9/fXXSkxMVGxsrJo0aaKuXbtKuvF89S5duigqKkrZs2fX559/fttjKv/44w8NHjxYFy9eVEpKitq1a+d4bCuAv4ZABwzm5uamVq1aafbs2Y5AT30E5pYtW/Tjjz8qc+bMWrx4scaOHet46tqpU6e0aNEiubm5KSwsTNKN52p/9913GjZsmF588UVFR0erZs2ajmd3nz59WiNHjlS5cuUUHh6uTz/9NM3b4ZKTk9WlSxeFhoaqRIkSunLlilq1aqWXXnpJZcqUebQLBjAQgQ4YrmXLlnrttdcUFxen5ORkbdy4Uf3791fz5s21cOFCRUVFadeuXWleNFOmTJnbXixhs9k0YcIErVu3TosWLXI8Nz71udd+fn4qV66cpBtv7uvfv7/jzYaSdOzYMR0/fly9evVydLt+/br27t1LoAMPAYEOGM7Hx0eVK1fWkiVLdO3aNdWvX1/Hjx/XBx98oLfeektVqlTRK6+8ogEDBjjGyZo1623TuXbtmpo2bao6dero5ZdfVvPmzbVq1SrH28JcXNLekmOz2dJ8KUhJSVH27NnTvLzj3LlzypYt28NuMvC3xE1xwN9AmzZttHDhQs2bN09t27bVL7/8opIlS+rtt99WhQoVtHr16vu+OjUqKkpxcXHq2rWratWqpW3btikxMdHxusgDBw44XhUaHh6u8uXLK0uWLI7xCxQooEyZMjkC/fTp0woKCtKePXuc1Grg74UjdOBvoGLFiho0aJBy5MghPz8/5c6dWytWrFDDhg3l7u6uSpUq6dKlS4qLi7vrNPz8/FSjRg0FBgYqe/bsev755/XSSy8pKipKHh4eKliwoMaNG6cTJ04od+7ct70Fy8PDQ1999ZUGDx6sb775RsnJyfr3v//teNMagL+GZ7kDAGAATrkDAGAAAh0AAAMQ6AAAGIBABwDAAAQ6AAAGINABADAAgQ4AgAH+D2nvVEJncAvnAAAAAElFTkSuQmCC\n", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "# Create a visual of this change\n", "sns.barplot(x=\"Variable\", y=\"Change\", data=change.sort_values(by=['Variable'], ascending=False, axis=0),\n", diff --git a/workshop_code.py b/workshop.py similarity index 76% rename from workshop_code.py rename to workshop.py index 25a90b3..5a26130 100644 --- a/workshop_code.py +++ b/workshop.py @@ -1,26 +1,27 @@ -import dalex as dx -import numpy as np -import seaborn as sns - -sns.set(rc={'figure.figsize': (8, 8)}) +import itertools +import random +from collections import defaultdict +from random import sample +import dalex as dx import matplotlib.pyplot as plt +import numpy as np import pandas as pd +import seaborn as sns +from lime.lime_tabular import LimeTabularExplainer from sklearn.datasets import fetch_california_housing from sklearn.ensemble import RandomForestRegressor, RandomForestClassifier +from sklearn.inspection import plot_partial_dependence from sklearn.model_selection import train_test_split from tqdm import tqdm -from random import sample -import random -from collections import defaultdict -from sklearn.inspection import plot_partial_dependence -from lime.lime_tabular import LimeTabularExplainer -import itertools +np.random.seed(1) +sns.set(rc={'figure.figsize': (8, 8)}) # Load the dataset data = fetch_california_housing(as_frame=True) +# Plot the mean house value per block with relation to the geographical location of the block sns.scatterplot(data=data.frame, x="Longitude", y="Latitude", size="MedHouseVal", hue="MedHouseVal", palette="viridis", alpha=0.5) @@ -28,29 +29,39 @@ loc="upper left") _ = plt.title("Median house value depending on spatial location") +# Plot the average rooms values against the average bedrooms values sns.scatterplot(data=data.frame, x="AveRooms", y="AveBedrms") _ = plt.title("Relation between AvgRooms en AvgBedrms") +# Correct the average rooms and the average bedrooms values +# Plot the corrected average rooms values against the corrected average bedrooms values data.frame = data.frame[(data.frame.AveRooms < 50) & (data.frame.AveBedrms < 10)] sns.scatterplot(data=data.frame, x="AveRooms", y="AveBedrms") _ = plt.title("Relation between AvgRooms en AvgBedrms") +# Plot the population values against the average occupation values sns.scatterplot(data=data.frame, x="Population", y="AveOccup") _ = plt.title("Relation between Population en AveOccup") +# Correct the population and the average occupation values +# Plot the corrected population values against the corrected average occupation values data.frame = data.frame[(data.frame.Population < 17500) & (data.frame.AveOccup < 20)] sns.scatterplot(data=data.frame, x="Population", y="AveOccup") _ = plt.title("Relation between Population en AveOccup") +# Plot the distribution of house age sns.histplot(data=data.frame, x="HouseAge") _ = plt.title("Distribution of HouseAge") +# Plot the distribution of median income sns.histplot(data=data.frame, x="MedInc") _ = plt.title("Distribution of median income") +# Plot the distribution of median house value sns.histplot(data=data.frame, x="MedHouseVal") _ = plt.title("Distribution of median house value") +# Plot the mean house value per block with relation to the geographical location of the block after corrections sns.scatterplot(data=data.frame, x="Longitude", y="Latitude", size="MedHouseVal", hue="MedHouseVal", palette="viridis", alpha=0.5) @@ -58,26 +69,25 @@ loc="upper left") _ = plt.title("Median house value depending on spatial location") -# Split the data into train and test data: # Split the data in train and test sets np.random.seed(1) X_train, X_test, y_train, y_test = train_test_split(data.frame[data.feature_names], data.frame[data.target_names].iloc[:, 0], test_size=0.2) -np.random.seed(1) # Create regression models +np.random.seed(1) model = RandomForestRegressor(random_state=0).fit(X_train, y_train) -# model = SVR().fit(X_train, y_train) -# model = MLPRegressor(hidden_layer_sizes=(16, 32, 16)).fit(X_train, y_train) +# Take a sample from the test data X_test_sample = pd.DataFrame(X_test.iloc[1, :]).T y_test_sample = y_test.iloc[1] +print({X_test_sample}) +print({y_test_sample}) -X_test_sample -y_test_sample - +# Create the explainer object exp = dx.Explainer(model, X_train, y_train) +# Breakdown plot with latitude first, then longitude breakdown = exp.predict_parts(X_test_sample, type='break_down', order=np.array(['Latitude', 'Longitude', 'AveRooms', 'AveBedrms', @@ -85,6 +95,7 @@ random_state=1) breakdown.plot() +# Breakdown plot with longitude first, then latitude breakdown = exp.predict_parts(X_test_sample, type='break_down', order=np.array(['Longitude', 'Latitude', 'AveRooms', 'AveBedrms', @@ -92,22 +103,26 @@ random_state=1) breakdown.plot() +# Breakdown plot with interactions breakdown_interaction_10 = exp.predict_parts(X_test_sample, type='break_down_interactions', interaction_preference=10, random_state=1) breakdown_interaction_10.plot() -contributions = defaultdict(lambda: []) - +# Create n random breakdown plots (in order to show the differences) +n = 50 random.seed(1) +contributions = defaultdict(lambda: []) for ordering in tqdm(sample(list(itertools.permutations(data.feature_names)), 100)): breakdown = exp.predict_parts(X_test_sample, type='break_down', order=list(ordering)) for item in list(zip(breakdown.result.variable_name, breakdown.result.contribution))[1:-1]: contributions[item[0]].append(item[1]) sns.boxplot(data=pd.DataFrame(contributions)) +_ = plt.title(f'Contribution values for different variables, N={n}') +# Calculate the Shapley values and plot them shapley_values = exp.predict_parts(X_test_sample, type='shap', random_state=1) shapley_values.plot() @@ -119,18 +134,20 @@ random_state=1, kernel_width=1) lime = explainer.explain_instance(X_test_sample.iloc[0, :], model.predict) -lime.show_in_notebook(show_table=True) +lime.as_pyplot_figure() +# lime.show_in_notebook(show_table=True) -## CP oscillations +# Create CP profile for the sample cp_sample = exp.predict_profile(X_test_sample) -cp_sample.result +print(cp_sample.result) cp_sample.plot() +# Manually change the MedInc value of the sample; the prediction now corresponds to that indicated by the CP profile X_test_sample_high_medinc = X_test_sample.copy() X_test_sample_high_medinc['MedInc'] = 7.895 model.predict(X_test_sample_high_medinc) -## CP oscillations +# Calculate the CP oscillations profiles, for uniform sampling and sampling from the empirical distribution prediction = model.predict(X_test_sample) cp_sample_res = exp.predict_profile(X_test_sample).result @@ -148,49 +165,33 @@ cp_oscillations_unif[feature] = cp_oscillations_abs / len(feature_sublist) cp_oscillations_emp[feature] = cp_oscillations_abs * emp_corr +# Plot CP oscillation values for uniform distribution data_unif = pd.DataFrame([(k, sum(v)) for k, v in cp_oscillations_unif.items()]) data_unif.columns = ['var', 'oscillations'] -sns.barplot(x="oscillations", - y="var", - data=data_unif.sort_values(by=['oscillations'], ascending=False, axis=0), - color='lightblue') +sns.barplot(x="oscillations", y="var", data=data_unif.sort_values(by=['oscillations'], ascending=False, axis=0), color='lightblue') _ = plt.title("cp oscillations for uniform distribution") plt.show() +# Plot CP oscillation values for empirical distribution data_emp = pd.DataFrame([(k, sum(v)) for k, v in cp_oscillations_emp.items()]) data_emp.columns = ['var', 'oscillations'] -sns.barplot(x="oscillations", - y="var", - data=data_emp.sort_values(by=['oscillations'], ascending=False, axis=0), - color='lightblue') +sns.barplot(x="oscillations", y="var", data=data_emp.sort_values(by=['oscillations'], ascending=False, axis=0), color='lightblue') _ = plt.title("cp oscillations for empirical distribution") plt.show() +# Calculate and plot variable importance mp_rf = exp.model_parts() mp_rf.plot() +# Calculate and plot grouped variable importance mp_rf_grouped = exp.model_parts(variable_groups={'Location': ['Latitude', 'Longitude'], 'House': ['AveBedrms', 'AveRooms', 'HouseAge'], 'People': ['Population', 'MedInc', 'AveOccup']}) mp_rf_grouped.plot() +# Plot partial dependence profile plots partial_dependence = exp.model_profile(variables=['MedInc', 'AveOccup'], N=100) partial_dependence.plot(geom='profiles') sns.set(rc={'figure.figsize': (16, 6)}) plot_partial_dependence(model, X_train, ['Longitude', 'Latitude', ['Longitude', 'Latitude']]) - -y_train_med = y_train.median() -y_train_bool = y_train.apply(lambda x: True if x > y_train_med else False) -y_test_bool = y_test.apply(lambda x: True if x > y_train_med else False) - -X_test_sample = pd.DataFrame(X_test.iloc[1, :]).T -y_test_sample = y_test_bool.iloc[1] - -model = RandomForestClassifier(random_state=0).fit(X_train, y_train_bool) -model.score(X_test, y_test_bool) - -X_test_sample - -shape = (1,) + X_train.shape[1:] -alibi_test.explainers.counterfactual.CounterFactual(model.predict_proba, shape)